Use paused state background for info alerts

This commit is contained in:
guerler
2021-10-13 23:18:02 -04:00
parent 7e2a6b11bf
commit 11ece208ef
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -132,7 +132,7 @@
}
&.state-paused {
background: $state-paused-bg;
background: $state-info-bg;
.state-icon {
&:before {
content: fa-content($fa-var-pause);
+4
View File
@@ -162,6 +162,10 @@ table.info_data_table th:nth-child(1) {
border-color: transparent;
}
.alert-info {
background: $state-info-bg !important;
}
// increase visibility of dropdown menu section headers
.dropdown-header {
font-size: 1rem;
+1 -2
View File
@@ -72,7 +72,7 @@ $state-danger-bg: theme-color-level("danger", $alert-bg-level);
$state-danger-border: theme-color-level("danger", $alert-border-level);
$state-info-text: theme-color-level("info", $alert-color-level);
$state-info-bg: theme-color-level("info", $alert-bg-level);
$state-info-bg: lighten($brand-info, 50%);
$state-info-border: theme-color-level("info", $alert-border-level);
$state-success-text: theme-color-level("success", $alert-color-level);
@@ -145,7 +145,6 @@ $table-border-color: transparent;
// Additional state colors
$state-default-bg: $gray-200;
$state-default-border: $border-color;
$state-paused-bg: lighten($brand-info, 50%);
$state-running-bg: lighten($brand-warning, 40%);
$state-running-border: $border-color;