omnia-sass 3.5.22 → 3.5.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -85,14 +85,12 @@ $editor-sidebar-tab-header-height: 42px;
|
|
85
85
|
height: #{$editor-sidebar-panel-header-height};
|
86
86
|
width: 100%;
|
87
87
|
}
|
88
|
-
|
89
|
-
.panel-content-border {
|
90
|
-
}
|
91
88
|
}
|
92
89
|
|
93
90
|
/* width */
|
94
91
|
::-webkit-scrollbar {
|
95
92
|
width: 10px;
|
93
|
+
height: 10px;
|
96
94
|
}
|
97
95
|
|
98
96
|
/* Track */
|
@@ -1,6 +1,149 @@
|
|
1
|
+
$footerHeight: 50px;
|
2
|
+
$advancedEditor-sidebar-container-header-height: 24px;
|
3
|
+
|
1
4
|
#form-field-expression {
|
2
5
|
height: 50vh !important;
|
3
6
|
}
|
4
7
|
#form-field-content {
|
5
8
|
height: 70vh !important;
|
6
|
-
}
|
9
|
+
}
|
10
|
+
|
11
|
+
.advancedEditor-container {
|
12
|
+
overflow-y: scroll;
|
13
|
+
height: calc(100vh - #{$footerHeight} - #{$topbar-height} - 40px - 55px - 2px);
|
14
|
+
|
15
|
+
.advancedEditor-sidebar-container {
|
16
|
+
margin: 0.25rem;
|
17
|
+
border: 1px solid $gray-600;
|
18
|
+
overflow-x: hidden;
|
19
|
+
overflow-y: hidden;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.viewsTree-content {
|
24
|
+
overflow-y: auto;
|
25
|
+
overflow-x: auto;
|
26
|
+
height: 50vh;
|
27
|
+
}
|
28
|
+
|
29
|
+
.viewNode {
|
30
|
+
width: auto;
|
31
|
+
white-space: nowrap;
|
32
|
+
}
|
33
|
+
|
34
|
+
.d-grid {
|
35
|
+
display: grid;
|
36
|
+
}
|
37
|
+
|
38
|
+
.viewsTree-header {
|
39
|
+
background-color: $gray-600;
|
40
|
+
color: $gray-100;
|
41
|
+
padding: 0 0.5rem;
|
42
|
+
height: #{$advancedEditor-sidebar-container-header-height};
|
43
|
+
width: 100%;
|
44
|
+
}
|
45
|
+
|
46
|
+
.viewNode-content {
|
47
|
+
margin-left: 1rem;
|
48
|
+
}
|
49
|
+
|
50
|
+
.viewNode-container {
|
51
|
+
padding-left: 1rem;
|
52
|
+
background-color: $gray-100;
|
53
|
+
}
|
54
|
+
|
55
|
+
.viewNode-column {
|
56
|
+
padding-left: 0.5rem;
|
57
|
+
display: flex;
|
58
|
+
&:hover {
|
59
|
+
background-color: $primary;
|
60
|
+
color: $white;
|
61
|
+
small {
|
62
|
+
color: $white;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
small {
|
66
|
+
color: $gray-500;
|
67
|
+
padding-left: 0.25rem;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
.expand-icon,
|
72
|
+
.viewNode-division,
|
73
|
+
.viewNode-header {
|
74
|
+
&:hover {
|
75
|
+
cursor: pointer;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
.fit-content {
|
80
|
+
height: fit-content;
|
81
|
+
}
|
82
|
+
|
83
|
+
.viewNode-header {
|
84
|
+
width: 100%;
|
85
|
+
display: inline-flex;
|
86
|
+
&:not(:hover) {
|
87
|
+
.table-icon {
|
88
|
+
display: none;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
&:hover {
|
92
|
+
background-color: $primary;
|
93
|
+
color: $white;
|
94
|
+
.table-icon {
|
95
|
+
display: inline-block;
|
96
|
+
}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
.viewNode-division {
|
101
|
+
background-color: $gray-500;
|
102
|
+
color: $gray-100;
|
103
|
+
&:hover {
|
104
|
+
background-color: $primary;
|
105
|
+
color: $white;
|
106
|
+
}
|
107
|
+
display: flex;
|
108
|
+
height: fit-content;
|
109
|
+
}
|
110
|
+
|
111
|
+
.advancedEditor-testResult {
|
112
|
+
width: 100%;
|
113
|
+
top: 0;
|
114
|
+
}
|
115
|
+
|
116
|
+
.advancedEditor-testResultRow {
|
117
|
+
margin-right: 0;
|
118
|
+
}
|
119
|
+
|
120
|
+
.advancedEditor-testResultTable {
|
121
|
+
margin-right: 0;
|
122
|
+
margin-left: 0;
|
123
|
+
}
|
124
|
+
|
125
|
+
.advancedEditor-messages {
|
126
|
+
width: 100%;
|
127
|
+
}
|
128
|
+
|
129
|
+
.advancedEditor-footer {
|
130
|
+
position: relative;
|
131
|
+
bottom: 0;
|
132
|
+
height: $footerHeight;
|
133
|
+
width: 100%;
|
134
|
+
}
|
135
|
+
|
136
|
+
.footer-warningMessage {
|
137
|
+
align-self: center;
|
138
|
+
margin-right: 1rem;
|
139
|
+
border: solid $warning;
|
140
|
+
border-radius: 1rem;
|
141
|
+
padding: 0.1rem 0.5rem 0.1rem !important;
|
142
|
+
&:hover {
|
143
|
+
cursor: default;
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
147
|
+
#expression_help {
|
148
|
+
color: $secondary;
|
149
|
+
}
|
@@ -496,19 +496,20 @@ tfoot .element-required-indicator-footer {
|
|
496
496
|
}
|
497
497
|
thead th {
|
498
498
|
position: relative;
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
499
|
+
}
|
500
|
+
}
|
501
|
+
|
502
|
+
.column-resizer {
|
503
|
+
top: 0;
|
504
|
+
right: 0;
|
505
|
+
width: 3px;
|
506
|
+
height: 10em;
|
507
|
+
position: absolute;
|
508
|
+
cursor: col-resize;
|
509
|
+
user-select: none;
|
510
|
+
border-right: 1px dashed $table-border-color;
|
511
|
+
&:hover {
|
512
|
+
border-right: 2px dashed darken($table-border-color, 25%);
|
512
513
|
}
|
513
514
|
}
|
514
515
|
|
@@ -555,12 +556,28 @@ tfoot .element-required-indicator-footer {
|
|
555
556
|
}
|
556
557
|
}
|
557
558
|
|
559
|
+
.element-tree-node {
|
560
|
+
width: fit-content;
|
561
|
+
min-width: 100%;
|
562
|
+
}
|
563
|
+
|
558
564
|
.focused-element:hover *,
|
559
565
|
.tree-focused-node:hover,
|
560
566
|
.tree-selected-node:hover {
|
561
567
|
cursor: pointer !important;
|
562
568
|
}
|
563
569
|
|
570
|
+
.tree-node {
|
571
|
+
color: $white;
|
572
|
+
&:not(.tree-selected-node) {
|
573
|
+
background-color: $gray-500;
|
574
|
+
}
|
575
|
+
}
|
576
|
+
|
577
|
+
.sub-element-darken {
|
578
|
+
background-color: $gray-100;
|
579
|
+
}
|
580
|
+
|
564
581
|
.elements-row-wrapper {
|
565
582
|
position: relative;
|
566
583
|
}
|
@@ -96,6 +96,14 @@
|
|
96
96
|
color: $primary;
|
97
97
|
}
|
98
98
|
}
|
99
|
+
.list-header-label {
|
100
|
+
width: calc(100% - 1.5rem);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
&:not(.list-header-filterable) {
|
104
|
+
.list-header-label {
|
105
|
+
width: calc(100% - 0.25rem);
|
106
|
+
}
|
99
107
|
}
|
100
108
|
.list-header-label,
|
101
109
|
.list-header-filter-button-container {
|
@@ -108,7 +116,6 @@
|
|
108
116
|
top: -1px;
|
109
117
|
}
|
110
118
|
.list-header-label {
|
111
|
-
width: calc(100% - 1.5rem);
|
112
119
|
overflow-x: hidden;
|
113
120
|
text-overflow: ellipsis;
|
114
121
|
white-space: nowrap;
|