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:
authorAleksejs Cikuns <aleksejs.cikuns@zabbix.com>2022-02-24 12:44:22 +0300
committerAleksejs Cikuns <aleksejs.cikuns@zabbix.com>2022-02-24 12:44:29 +0300
commitcd44e929b6f4352b5357e37ad38c7b3f99d7f46d (patch)
tree1554e7e1e0acbe59eee62505e7a16a20626533c7 /sass
parentfe14edf75da094a48a3856da81252ed813b86cb3 (diff)
..F....... [ZBX-20049] fixed trigger dependency icon; fixed description icon in compact view
Diffstat (limited to 'sass')
-rw-r--r--sass/stylesheets/sass/screen.scss26
1 files changed, 24 insertions, 2 deletions
diff --git a/sass/stylesheets/sass/screen.scss b/sass/stylesheets/sass/screen.scss
index dd3f02c7699..1a2bc3ef02b 100644
--- a/sass/stylesheets/sass/screen.scss
+++ b/sass/stylesheets/sass/screen.scss
@@ -325,7 +325,9 @@ form {
}
td {
- .icon-maintenance {
+ .icon-maintenance,
+ .icon-depend-up,
+ .icon-depend-down {
margin: 0 0 -3px 4px;
}
}
@@ -450,6 +452,7 @@ form {
&::after {
margin: 0;
line-height: 14px;
+ top: 0;
}
&:last-of-type {
@@ -2547,11 +2550,30 @@ $var-icons: (
// .icon-ackn
@each $var-icons, $bgimage in $var-icons {
.icon-#{$var-icons} {
- margin: 0 18px 0 0;
+ position: relative;
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ border-radius: 2px;
+ right: 5px;
&::before {
background: $bgimage;
@extend %var-icons;
+ width: 14px;
+ height: 14px;
+ left: 3px;
+ top: -1px;
+ }
+
+ &:link,
+ &:hover,
+ &:focus {
+ border-bottom: none;
+ }
+
+ &:focus {
+ box-shadow: 0 0 0 2px $btn-border-focus-color;
}
}
}