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-17 16:10:10 +0300
committerAleksejs Cikuns <aleksejs.cikuns@zabbix.com>2022-02-17 16:10:10 +0300
commita2a844d9e34492a74e9f1d31cd28abb57c8f544b (patch)
tree7ccea68579c77a86c9fab320de512f128cd25d02 /sass
parent1fab0b8a34ffa87babc1af1e3f359afb33fe636e (diff)
..F....... [ZBX-20049] added focus by keyboard to maitenance, help and other icons
Diffstat (limited to 'sass')
-rw-r--r--sass/stylesheets/sass/screen.scss43
1 files changed, 37 insertions, 6 deletions
diff --git a/sass/stylesheets/sass/screen.scss b/sass/stylesheets/sass/screen.scss
index 5cb2856f688..fa5c6810bce 100644
--- a/sass/stylesheets/sass/screen.scss
+++ b/sass/stylesheets/sass/screen.scss
@@ -324,6 +324,12 @@ form {
}
}
+ td {
+ .icon-maintenance {
+ margin: 0 0 -3px 4px;
+ }
+ }
+
&.compact-view {
tr {
&[class*='flh-'] {
@@ -483,11 +489,9 @@ form {
}
.icon-maintenance {
- position: relative;
- display: inline-block;
height: 12px;
width: 12px;
- margin: 3px 1px 2px 2px !important;
+ margin: 3px 1px 2px 2px;
&::before {
height: 12px;
@@ -2553,14 +2557,31 @@ $var-icons: (
}
.icon-maintenance {
+ position: relative;
display: inline-block;
- width: 18px;
- height: 13px;
+ width: 16px;
+ height: 16px;
+ border-radius: 2px;
&::before {
- background: url($sprite-path) no-repeat -46px -802px;
@extend %var-icons;
+ background: url($sprite-path) no-repeat -47px -803px;
+ width: 14px;
+ height: 14px;
+ left: 1px;
+ top: 1px;
}
+
+ &:link,
+ &:hover,
+ &:focus {
+ border-bottom: none;
+ }
+
+ &:focus {
+ box-shadow: 0 0 0 2px $btn-border-focus-color;
+ }
+
}
$trigger-expression-tree-icons: (
@@ -5537,6 +5558,16 @@ button {
font-weight: bold;
color: $btn-font-color;
}
+
+ &:link,
+ &:hover,
+ &:focus {
+ border-bottom: none;
+ }
+
+ &:focus {
+ box-shadow: 0 0 0 2px $btn-border-focus-color;
+ }
}
#expressions_list .ui-sortable-helper {