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/ui
diff options
context:
space:
mode:
authorRoberts Lataria <roberts.lataria@zabbix.com>2022-07-06 11:12:00 +0300
committerRoberts Lataria <roberts.lataria@zabbix.com>2022-07-06 11:12:00 +0300
commit1e719b602a1a7dcaa9460342adc5fb3a7e1787b4 (patch)
tree36a8eb3ba916b3c97a7d87c8819e2e04e8a22282 /ui
parenta332c59fc9b2b6949b85ea0277e0aada73084910 (diff)
parent424210b9bbe9292a73d56bdca9f032da9549c5d3 (diff)
..F....... [ZBX-20591] fixed draggable block position in preprocessing
* commit '424210b9bbe9292a73d56bdca9f032da9549c5d3': ..F....... [ZBX-20591] fixed wrong count of preprocessing elements in tab indicator ..F....... [ZBX-20591] fixed draggable block position in preprocessing
Diffstat (limited to 'ui')
-rw-r--r--ui/assets/styles/blue-theme.css3
-rw-r--r--ui/assets/styles/dark-theme.css3
-rw-r--r--ui/assets/styles/hc-dark.css3
-rw-r--r--ui/assets/styles/hc-light.css3
-rw-r--r--ui/js/class.tab-indicators.js2
5 files changed, 9 insertions, 5 deletions
diff --git a/ui/assets/styles/blue-theme.css b/ui/assets/styles/blue-theme.css
index a013ca1d3b4..325d58710d4 100644
--- a/ui/assets/styles/blue-theme.css
+++ b/ui/assets/styles/blue-theme.css
@@ -5926,7 +5926,8 @@ svg {
.preprocessing-list {
display: block;
max-width: 930px;
- min-width: 800px; }
+ min-width: 800px;
+ position: relative; }
.preprocessing-list > li {
display: block;
position: relative; }
diff --git a/ui/assets/styles/dark-theme.css b/ui/assets/styles/dark-theme.css
index 23984b4c79e..aa7ec4fafe4 100644
--- a/ui/assets/styles/dark-theme.css
+++ b/ui/assets/styles/dark-theme.css
@@ -5937,7 +5937,8 @@ svg {
.preprocessing-list {
display: block;
max-width: 930px;
- min-width: 800px; }
+ min-width: 800px;
+ position: relative; }
.preprocessing-list > li {
display: block;
position: relative; }
diff --git a/ui/assets/styles/hc-dark.css b/ui/assets/styles/hc-dark.css
index 2bf689d47b8..66649a00e2e 100644
--- a/ui/assets/styles/hc-dark.css
+++ b/ui/assets/styles/hc-dark.css
@@ -5883,7 +5883,8 @@ svg {
.preprocessing-list {
display: block;
max-width: 930px;
- min-width: 800px; }
+ min-width: 800px;
+ position: relative; }
.preprocessing-list > li {
display: block;
position: relative; }
diff --git a/ui/assets/styles/hc-light.css b/ui/assets/styles/hc-light.css
index ef53c2a23e9..bf25058d265 100644
--- a/ui/assets/styles/hc-light.css
+++ b/ui/assets/styles/hc-light.css
@@ -5883,7 +5883,8 @@ svg {
.preprocessing-list {
display: block;
max-width: 930px;
- min-width: 800px; }
+ min-width: 800px;
+ position: relative; }
.preprocessing-list > li {
display: block;
position: relative; }
diff --git a/ui/js/class.tab-indicators.js b/ui/js/class.tab-indicators.js
index f8cf63a1d59..6ed5bdb8557 100644
--- a/ui/js/class.tab-indicators.js
+++ b/ui/js/class.tab-indicators.js
@@ -537,7 +537,7 @@ class PreprocessingTabIndicatorItem extends TabIndicatorItem {
getValue() {
return document
- .querySelectorAll('#preprocessing .preprocessing-list-item')
+ .querySelectorAll('#preprocessing .preprocessing-list-item:not(.ui-sortable-placeholder)')
.length;
}