mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 21:50:24 -06:00
- Add: ability to hide edit/remove buttons in basic view; - Add: hide advanced configurations in a collapsable menu - easier than toggle Advanced View; - Fix: Load edited Overview when toggle Views; - Fix: Variable select box doesn’t have the same textPath width; - Fix: limit the height of Categories dropdown menu to 200px. - Fix: dropdownchecklist CSS for white theme
51 lines
1.1 KiB
CSS
51 lines
1.1 KiB
CSS
.ui-dropdownchecklist .ui-state-default {
|
|
background:-webkit-radial-gradient(#F4F4F4,#FCFCFC);
|
|
background:linear-gradient(#F4F4F4,#FCFCFC);
|
|
border:none;
|
|
box-shadow:0 2px 0 #E0E0E0,inset 0 -1px #FFFFFF;
|
|
border-radius:4px;
|
|
outline:none;
|
|
cursor:pointer;
|
|
height:22px;
|
|
line-height:22px;
|
|
}
|
|
.ui-dropdownchecklist-group {
|
|
font-weight:normal;
|
|
font-style:italic;
|
|
padding:1px 9px 1px 8px;
|
|
}
|
|
.ui-dropdownchecklist-selector {
|
|
border:1px solid #E0E0E0;
|
|
display:inline-block;
|
|
cursor:pointer;
|
|
padding:1px 9px 1px 8px;
|
|
}
|
|
.ui-dropdownchecklist-selector-wrapper {
|
|
vertical-align:middle;
|
|
font-size:0;
|
|
}
|
|
.ui-state-active {
|
|
background:linear-gradient(#E8E8E8,#F8F8F8);
|
|
background:-webkit-radial-gradient(#E8E8E8,#F8F8F8);
|
|
}
|
|
.ui-dropdownchecklist-dropcontainer {
|
|
background:#FFFFFF;
|
|
border:1px solid #E0E0E0;
|
|
}
|
|
.ui-state-disabled {
|
|
background:linear-gradient(#F0F0F0,#F8F8F8);
|
|
background:-webkit-radial-gradient(#F0F0F0,#F8F8F8);
|
|
}
|
|
.ui-dropdownchecklist-indent {
|
|
padding-left:7px;
|
|
}
|
|
.ui-dropdownchecklist-text {
|
|
color:#303030;
|
|
font-size:11px;
|
|
}
|
|
.ui-dropdownchecklist .ui-widget-content .ui-state-default {
|
|
background:#FFFFFF;
|
|
border:0px;
|
|
}
|
|
|