mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
35 lines
492 B
CSS
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;
|
|
}
|