Update RC status styling for new ET2Select

This commit is contained in:
Hadi Nategh 2023-03-03 14:29:35 +01:00
parent 0e27bb843c
commit a91c6a9d7b
2 changed files with 35 additions and 3 deletions

View File

@ -4305,11 +4305,30 @@ span.overlayContainer img.overlay {
z-index: 1000; z-index: 1000;
top: 45px; top: 45px;
} }
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select, #egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select {
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select_chzn {
width: 50% !important; width: 50% !important;
margin-left: 10px; margin-left: 10px;
} }
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select sl-menu-item::part(checked-icon) {
border-radius: 50%;
width: 12px;
height: 12px;
margin-top: 5px;
margin-right: 5px;
visibility: visible;
}
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select sl-menu-item[value="online"]::part(checked-icon) {
background: #2de0a5;
}
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select sl-menu-item[value="away"]::part(checked-icon) {
background: #ffd21f;
}
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select sl-menu-item[value="busy"]::part(checked-icon) {
background: #f5455c;
}
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select sl-menu-item[value="offline"]::part(checked-icon) {
background: #cbced1;
}
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select_chzn a.chzn-single span { #egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items #rc_status_select_chzn a.chzn-single span {
padding-top: 0px; padding-top: 0px;
} }

View File

@ -104,9 +104,22 @@
height: auto; height: auto;
z-index: 1000; z-index: 1000;
top: 45px; top: 45px;
#rc_status_select, #rc_status_select_chzn { #rc_status_select {
width: 50% !important; width: 50% !important;
margin-left: 10px; margin-left: 10px;
sl-menu-item::part(checked-icon) {
border-radius: 50%;
width: 12px;
height: 12px;
margin-top: 5px;
margin-right: 5px;
visibility: visible;
}
sl-menu-item[value="online"]::part(checked-icon) {background: #2de0a5;}
sl-menu-item[value="away"]::part(checked-icon) {background: #ffd21f;}
sl-menu-item[value="busy"]::part(checked-icon) {background: #f5455c;}
sl-menu-item[value="offline"]::part(checked-icon) {background: #cbced1;}
} }
#rc_status_select_chzn { #rc_status_select_chzn {
a.chzn-single span {padding-top: 0px;} a.chzn-single span {padding-top: 0px;}