[Monitor Dashboard]: Change filter selected style on hover.

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-monitor-portal/trunk/monitor_dashboard@59083 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
Konstantinos Triantafyllou 2020-07-13 09:53:30 +00:00
parent 49a41627b1
commit 243dfdf91e
2 changed files with 32 additions and 4 deletions

View File

@ -38,4 +38,23 @@
background-color: transparent !important;
border-color: transparent;
}
/* Input */
.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
background-color: var(--portal-main-color);
}
/* Alerts */
.uk-alert {
position: relative;
margin-bottom: 20px;
padding: 15px 29px 15px 15px;
background: #fff;
color: #666;
border: 1px solid #ededed;
}
.uk-alert.uk-grid {
display: flex;
}
}

View File

@ -558,12 +558,21 @@ body.dashboard {
color: #fff;
}
.selectedFilterLabel{
.selectedFilterLabel {
background: var(--portal-main-color) !important;
color: white !important;
color: var(--portal-main-contrast) !important;
padding: 6px 10px !important;
border-radius: 25px !important;
}
.selectedFilterLabel, .selectedFilterLabel .material-icons{
color: white;
.selectedFilterLabel:hover {
background: var(--portal-dark-color) !important;
}
.selectedFilterLabel .uk-link-text {
color: var(--portal-main-contrast) !important;
}
.selectedFilterLabel .material-icons{
color: var(--portal-main-contrast) !important;
}