Attempting to modify and override certain classes within the complex control (dxList) of DevExtreme has been successful thus far.
.dx-loadpanel-content {
transform: translate(0px, 0px) !important;
margin: auto !important;
left: 0px !important;
top: 0px !important;
position: absolute !important;
}
.dx-scrollview-loadpanel {
transform: translate(0px, 0px) !important;
margin: auto !important;
left: 50% !important;
top: 50% !important;
position: absolute !important;
}
However, I've realized that modifying these classes in a general sense may not be the most ideal approach, as they are commonly used across various HTML pages.
I am looking to specifically target and override these classes for a particular dxList identified by its unique ID.
#activitiesList .dx-loadpanel-content {
transform: translate(0px, 0px) !important;
margin: auto !important;
left: 0px !important;
top: 0px !important;
position: absolute !important;
}
#activitiesList .dx-scrollview-loadpanel {
transform: translate(0px, 0px) !important;
margin: auto !important;
left: 50% !important;
top: 50% !important;
position: absolute !important;
}
Despite specifying the ID, the changes do not seem to take effect. Can you point out what might be going wrong?