qms-angular 1.1.12 → 1.1.13
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/bundles/qms-angular.umd.js +44 -41
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/select-one/select-one.component.js +12 -10
- package/esm2015/lib/components/tree/tree.component.js +39 -32
- package/esm2015/lib/directives/tooltip/tooltip-renderer.directive.js +1 -1
- package/fesm2015/qms-angular.js +49 -40
- package/fesm2015/qms-angular.js.map +1 -1
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/lib/components/select-one/select-one.component.scss +9 -3
- package/src/lib/components/tree/tree.component.scss +21 -11
@@ -60,7 +60,7 @@
|
|
60
60
|
height: 30px;
|
61
61
|
font-size: 12px;
|
62
62
|
letter-spacing: 1px;
|
63
|
-
font-family:
|
63
|
+
font-family: "Raleway";
|
64
64
|
font-weight: 600;
|
65
65
|
padding: 0;
|
66
66
|
|
@@ -199,22 +199,28 @@ cdk-virtual-scroll-viewport {
|
|
199
199
|
|
200
200
|
.qms-list-text {
|
201
201
|
border-bottom: none;
|
202
|
+
height: auto;
|
202
203
|
}
|
203
204
|
|
204
205
|
.breadcrumb-container {
|
205
206
|
.qms-breadcrumb-item {
|
206
207
|
.mat-icon {
|
207
|
-
font-size: 16px!important;
|
208
|
+
font-size: 16px !important;
|
208
209
|
padding-bottom: 1px;
|
209
|
-
|
210
|
+
}
|
210
211
|
}
|
211
212
|
}
|
212
213
|
}
|
214
|
+
|
215
|
+
&.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {
|
216
|
+
background: transparent !important;
|
217
|
+
}
|
213
218
|
}
|
214
219
|
|
215
220
|
svg {
|
216
221
|
display: block;
|
217
222
|
}
|
223
|
+
|
218
224
|
}
|
219
225
|
}
|
220
226
|
|
@@ -24,6 +24,17 @@
|
|
24
24
|
.mat-checkbox.qms-group-options .mat-checkbox-inner-container {
|
25
25
|
margin-right: 11px;
|
26
26
|
}
|
27
|
+
|
28
|
+
&.disabled {
|
29
|
+
.text-node-parent {
|
30
|
+
cursor: default;
|
31
|
+
color: #999999;
|
32
|
+
}
|
33
|
+
|
34
|
+
svg path {
|
35
|
+
fill: #999999;
|
36
|
+
}
|
37
|
+
}
|
27
38
|
}
|
28
39
|
|
29
40
|
.button {
|
@@ -83,7 +94,6 @@
|
|
83
94
|
}
|
84
95
|
|
85
96
|
&.bgSelected {
|
86
|
-
|
87
97
|
.select-one-checked {
|
88
98
|
color: theme-apply($primary);
|
89
99
|
}
|
@@ -101,8 +111,8 @@
|
|
101
111
|
justify-content: space-between;
|
102
112
|
margin-left: 10px;
|
103
113
|
|
104
|
-
&.active-item{
|
105
|
-
color
|
114
|
+
&.active-item {
|
115
|
+
color: #1954a9 !important;
|
106
116
|
}
|
107
117
|
|
108
118
|
cursor: pointer;
|
@@ -154,22 +164,22 @@ svg {
|
|
154
164
|
min-width: fit-content;
|
155
165
|
}
|
156
166
|
|
157
|
-
.open-icon{
|
158
|
-
svg{
|
159
|
-
path:first-child{
|
167
|
+
.open-icon {
|
168
|
+
svg {
|
169
|
+
path:first-child {
|
160
170
|
fill: rgb(25, 84, 169);
|
161
171
|
}
|
162
172
|
}
|
163
|
-
&.not-department-icon{
|
164
|
-
svg{
|
165
|
-
path{
|
173
|
+
&.not-department-icon {
|
174
|
+
svg {
|
175
|
+
path {
|
166
176
|
fill: rgb(25, 84, 169);
|
167
177
|
}
|
168
178
|
}
|
169
179
|
}
|
170
180
|
}
|
171
181
|
|
172
|
-
.mat-checkbox.mat-checkbox-disabled.qms-group-options.mat-checkbox-checked
|
182
|
+
.mat-checkbox.mat-checkbox-disabled.qms-group-options.mat-checkbox-checked
|
183
|
+
.mat-checkbox-background {
|
173
184
|
background-color: #e0e0e0 !important;
|
174
185
|
}
|
175
|
-
|