13185-Change border selected/hover tab

This commit is contained in:
Pablo Aragon 2024-04-10 14:39:17 +02:00
parent 220dfb3ad3
commit cc1832a866
2 changed files with 15 additions and 5 deletions

View File

@ -29,6 +29,7 @@
:root {
--primary-color: #14524f;
--primary-color-hover: #318280;
--secondary-color: #ffffff;
--text-color: #333;
@ -4115,14 +4116,22 @@ div.div_groups_status {
min-height: 53px;
}
#menu_tab li:hover:not(.menu-dots-li) {
box-shadow: inset 0px 4px var(--primary-color);
}
#menu_tab li.nomn_high,
#menu_tab li.nomn_high span {
color: #fff;
box-shadow: inset 0px 4px var(--primary-color);
}
#menu_tab li.nomn_high::before,
#menu_tab li:hover:not(.menu-dots-li)::before {
content: "";
display: block;
position: absolute;
bottom: 0px;
width: 40px;
height: 5px;
margin-left: -5px;
background-color: var(--primary-color-hover);
border-radius: 5px;
}
#menu_tab li.nomn img,

View File

@ -22,6 +22,7 @@ Description: The default Pandora FMS theme layout
*/
:root {
--primary-color: #14524f;
--primary-color-hover: #14524f;
--secondary-color: #222;
--text-color: #fff;