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 Verza <andrejs.verza@zabbix.com>2022-11-02 15:48:58 +0300
committerAndrejs Verza <andrejs.verza@zabbix.com>2022-11-02 15:48:58 +0300
commita8cf8da0ae782a7df5eb85a0916717ccab7f892a (patch)
tree7677ac810b9a775d17fec3ad34dfc87e005b722f /sass
parent700717808413b859c7f3662a15b25847cdc2012e (diff)
..F....... [ZBXNEXT-7469] implemented inaccessible widgets
Diffstat (limited to 'sass')
-rw-r--r--sass/stylesheets/sass/components/dashboard/_widget-inaccessible.scss9
-rw-r--r--sass/stylesheets/sass/screen.scss1
2 files changed, 10 insertions, 0 deletions
diff --git a/sass/stylesheets/sass/components/dashboard/_widget-inaccessible.scss b/sass/stylesheets/sass/components/dashboard/_widget-inaccessible.scss
new file mode 100644
index 00000000000..b16f1fa3c1d
--- /dev/null
+++ b/sass/stylesheets/sass/components/dashboard/_widget-inaccessible.scss
@@ -0,0 +1,9 @@
+// Widget view.
+
+div.dashboard-widget-inaccessible {
+ display: flex;
+ padding: 0 10px;
+ align-items: center;
+ justify-content: center;
+ color: $font-alt-color;
+}
diff --git a/sass/stylesheets/sass/screen.scss b/sass/stylesheets/sass/screen.scss
index 420be97c89f..2710253f8b9 100644
--- a/sass/stylesheets/sass/screen.scss
+++ b/sass/stylesheets/sass/screen.scss
@@ -33,6 +33,7 @@ $browser-sprite-path: '../img/browser-sprite.png?20220722';
@import "components/columns-wrapper";
@import "components/dashboard/dashboard";
@import "components/dashboard/widget-clock";
+@import "components/dashboard/widget-inaccessible";
@import "components/dashboard/widget-item";
@import "components/dashboard/widget-slareport";
@import "components/dashboard/widget-svggraph";