Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorAndrejs Griščenko <andrejs.griscenko@zabbix.com>2021-03-23 17:29:40 +0300
committerAndrejs Griščenko <andrejs.griscenko@zabbix.com>2021-03-23 17:29:40 +0300
commit6d92051715352996f69e4f103c75ee0e54b19207 (patch)
treeb0bbace6599f17d1df8f9a72263fd46071f2a080 /sass
parentacbd756abccd9dafba859176de3513a2fb6e074e (diff)
..F....... [ZBXNEXT-6479] added user and user group icons styles for all themes; fixed subscription table heading color
Diffstat (limited to 'sass')
-rw-r--r--sass/stylesheets/sass/hc-dark.scss12
-rw-r--r--sass/stylesheets/sass/hc-light.scss12
-rw-r--r--sass/stylesheets/sass/screen.scss35
3 files changed, 58 insertions, 1 deletions
diff --git a/sass/stylesheets/sass/hc-dark.scss b/sass/stylesheets/sass/hc-dark.scss
index 6c32d7148c2..4f9152c5d22 100644
--- a/sass/stylesheets/sass/hc-dark.scss
+++ b/sass/stylesheets/sass/hc-dark.scss
@@ -1349,6 +1349,18 @@ td.inactive-bg {
}
}
+.icon-user {
+ &::before {
+ background-position: -379px -46px;
+ }
+}
+
+.icon-user-group {
+ &::before {
+ background-position: -379px -8px;
+ }
+}
+
.icon-actions-number-red {
&::before {
background-position: -524px -325px;
diff --git a/sass/stylesheets/sass/hc-light.scss b/sass/stylesheets/sass/hc-light.scss
index 9c30e497ddc..0570f072f97 100644
--- a/sass/stylesheets/sass/hc-light.scss
+++ b/sass/stylesheets/sass/hc-light.scss
@@ -1197,6 +1197,18 @@ td.inactive-bg {
}
}
+.icon-user {
+ &::before {
+ background-position: -419px -46px;
+ }
+}
+
+.icon-user-group {
+ &::before {
+ background-position: -419px -8px;
+ }
+}
+
.problem-icon-list {
.problem-icon-list-item {
background: transparent;
diff --git a/sass/stylesheets/sass/screen.scss b/sass/stylesheets/sass/screen.scss
index 5e22d0f105b..d561c354e91 100644
--- a/sass/stylesheets/sass/screen.scss
+++ b/sass/stylesheets/sass/screen.scss
@@ -6509,7 +6509,9 @@ svg {
.icon-actions-number-gray,
.icon-actions-number-yellow,
.icon-actions-number-red,
-.icon-description {
+.icon-description,
+.icon-user,
+.icon-user-group {
display: inline-block;
position: relative;
height: 18px;
@@ -6644,6 +6646,30 @@ svg {
}
}
+.icon-user,
+.icon-user-group {
+ height: 16px;
+ width: 16px;
+ vertical-align: top;
+
+ &::before {
+ height: inherit;
+ width: inherit;
+ }
+}
+
+.icon-user {
+ &::before {
+ background-position: -339px -46px;
+ }
+}
+
+.icon-user-group {
+ &::before {
+ background-position: -339px -8px;
+ }
+}
+
#expressions_list .ui-sortable-helper {
display: table;
}
@@ -7492,3 +7518,10 @@ z-select,
}
}
}
+
+.subscriptions-table {
+
+ th {
+ color: $font-alt-color;
+ }
+}