[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:
parent
49a41627b1
commit
243dfdf91e
|
@ -38,4 +38,23 @@
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
border-color: transparent;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -558,12 +558,21 @@ body.dashboard {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectedFilterLabel{
|
.selectedFilterLabel {
|
||||||
background: var(--portal-main-color) !important;
|
background: var(--portal-main-color) !important;
|
||||||
color: white !important;
|
color: var(--portal-main-contrast) !important;
|
||||||
padding: 6px 10px !important;
|
padding: 6px 10px !important;
|
||||||
border-radius: 25px !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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue