1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/management/ui-common/ui.css
2021-04-07 08:27:22 -04:00

35 lines
492 B
CSS

:hover {
--hover-bg-color: #ccc;
}
/* fix visibility of calendar icon in bootstrap vue component */
.b-form-datepicker g {
fill: var(--dark);
}
/* make table header sticky at 0 */
.sticky-table-header-0 thead {
position: sticky;
background-color: #fff;
top: 0;
}
.cursor-pointer {
cursor:pointer;
}
.cursor-default {
cursor:default;
}
.clickme {
cursor:pointer;
}
.clickme:hover {
background-color: var(--hover-bg-color);
}
.h-1 {
height: 1em;
}