Browse Source

work work

pull/235/head
gilbN 4 years ago
parent
commit
79e9d0a512
  1. 38
      CSS/themes/organizr/organizr-base.css

38
CSS/themes/organizr/organizr-base.css

@ -1158,11 +1158,26 @@ a:hover {
} }
/* Homepage health checks */ /* Homepage health checks */
.bg-inverse .healthPosition { @supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
background: rgba(255, 255, 255, 0.2) !important; .bg-inverse .healthPosition {
-webkit-backdrop-filter: saturate(180%) blur(30px); background: rgba(255, 255, 255, 0.2) !important;
backdrop-filter: saturate(180%) blur(30px); -webkit-backdrop-filter: saturate(180%) blur(30px);
border-radius: 3px; backdrop-filter: saturate(180%) blur(30px);
border-radius: 3px;
}
}
/* slightly transparent fallback for Firefox (not supporting backdrop-filter) */
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
.bg-inverse .healthPosition {
background: var(--main-bg-color) !important;
border-radius: 3px;
}
}
.bg-inverse .healthPosition h3,
.bg-inverse .healthPosition h5 {
color: #fff !important;
} }
#homepageOrderhealthchecks .card-body { #homepageOrderhealthchecks .card-body {
@ -1205,7 +1220,7 @@ a:hover {
/* Homepage Unifi cards */ /* Homepage Unifi cards */
.unifiCards .panel-heading { .unifiCards .panel-heading {
background: rgb(var(--accent-color)); background: rgb(var(--accent-color));
color: var( --label-text-color) !important; color: var(--label-text-color) !important;
border-color: transparent !important; border-color: transparent !important;
text-align: inherit !important; text-align: inherit !important;
border-radius: 3px 3px 0 0 border-radius: 3px 3px 0 0
@ -1283,17 +1298,17 @@ a:hover {
} }
[id*="homepage"] .panel-heading.bg-info, [id*="homepage"] .panel-heading.bg-info,
.fc-toolbar:not(.fc-alternate){ .fc-toolbar:not(.fc-alternate) {
background: rgb(var(--accent-color background: rgb(var(--accent-color)) !important;
)) !important;
color: var(--label-text-color) !important; color: var(--label-text-color) !important;
} }
.fc-toolbar:not(.fc-alternate) h2, .fc-toolbar:not(.fc-alternate) h2,
.fc .fc-button-group > button:not(.fc-alternate [class*="fc"]){ .fc .fc-button-group>button:not(.fc-alternate [class*="fc"]) {
color: var(--label-text-color) !important; color: var(--label-text-color) !important;
} }
.bg-info:not(.fc-alternate) { .bg-info:not(.fc-alternate):not(.feeds .bg-info) {
background-color: rgb(var(--accent-color)) !important; background-color: rgb(var(--accent-color)) !important;
color: var(--lbel-text-color) !important; color: var(--lbel-text-color) !important;
} }
@ -1605,6 +1620,7 @@ input,
.tab-content .panel .panel-body .bg-org { .tab-content .panel .panel-body .bg-org {
background: transparent !important; background: transparent !important;
} }
/* /*
.jq-toast-single { .jq-toast-single {
border-radius: 10px 10px 0 0; border-radius: 10px 10px 0 0;

Loading…
Cancel
Save