mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2025-05-17 14:42:05 +00:00
74 lines
1.3 KiB
SCSS
74 lines
1.3 KiB
SCSS
/* Polls -------------------------------------------------------------------- */
|
|
|
|
.app-polls #app-content {
|
|
|
|
.table-row.table-header {
|
|
opacity: 1;
|
|
}
|
|
|
|
.table-row a {
|
|
color: $foreground-normal;
|
|
}
|
|
|
|
.toggle-cell {
|
|
|
|
&.yes, &.maybe, &.no {
|
|
background-color: $background-normal;
|
|
}
|
|
}
|
|
|
|
.poll-cell {
|
|
|
|
&.yes {
|
|
color: $foreground-positive;
|
|
}
|
|
|
|
&.maybe {
|
|
color: $foreground-neutral;
|
|
}
|
|
|
|
&.no {
|
|
color: $foreground-negative;
|
|
}
|
|
}
|
|
}
|
|
|
|
.app-polls #app-sidebar {
|
|
|
|
&.detailsView .pollInformation .cloud .open {
|
|
background-color: $foreground-positive;
|
|
}
|
|
|
|
&.detailsView .pollInformation .cloud .information {
|
|
background-color: $foreground-neutral;
|
|
}
|
|
|
|
.pollActions li a {
|
|
opacity: 0.7;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.app-polls .tabHeaders .tabHeader {
|
|
|
|
&.selected,
|
|
&:hover,
|
|
&:focus {
|
|
border-bottom-color: $decoration-normal;
|
|
}
|
|
}
|
|
|
|
/* Datepicker */
|
|
.app-polls .mx-datepicker .mx-datepicker-popup {
|
|
border-color: $decoration-normal !important;
|
|
background-color: $background-normal !important;
|
|
}
|
|
|
|
// Shift dates
|
|
.app-polls .modal-dialog {
|
|
box-shadow: none !important;
|
|
border: 1px solid $decoration-normal !important;
|
|
}
|