qms-angular 1.0.64 → 1.0.69

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.
Files changed (105) hide show
  1. package/README.md +21 -2
  2. package/bundles/qms-angular.umd.js +2215 -146
  3. package/bundles/qms-angular.umd.js.map +1 -1
  4. package/esm2015/lib/common/enum/data-type.enum.js +14 -0
  5. package/esm2015/lib/common/enum/document-node-type.enum.js +12 -0
  6. package/esm2015/lib/common/enum/module-type.enum.js +8 -0
  7. package/esm2015/lib/common/related.const.js +6 -0
  8. package/esm2015/lib/components/badges/qms-badges.component.js +9 -5
  9. package/esm2015/lib/components/banner/index.js +2 -0
  10. package/esm2015/lib/components/banner/public_api.js +8 -0
  11. package/esm2015/lib/components/banner/qms-banner/qms-banner.component.js +2 -2
  12. package/esm2015/lib/components/breadcrumb/breadcrumb.js +1 -1
  13. package/esm2015/lib/components/button/button.js +5 -5
  14. package/esm2015/lib/components/comment/comment-log.model.js +2 -0
  15. package/esm2015/lib/components/comment/comment.js +6 -2
  16. package/esm2015/lib/components/qms-app-bar/qms-app-bar.component.js +3 -3
  17. package/esm2015/lib/components/qms-status-dropdown/index.js +4 -0
  18. package/esm2015/lib/components/qms-status-dropdown/qms-status-dropdown.component.js +33 -0
  19. package/esm2015/lib/components/qms-status-dropdown/qms-status-dropdown.model.js +10 -0
  20. package/esm2015/lib/components/qms-status-dropdown/qms-status-dropdown.module.js +28 -0
  21. package/esm2015/lib/components/qms-stepper/qms-stepper.component.js +3 -2
  22. package/esm2015/lib/components/related/model/related-data.model.js +3 -1
  23. package/esm2015/lib/components/related/popup/related-popup.component.js +29 -9
  24. package/esm2015/lib/components/related/risk/analysis/analysis.component.js +1 -3
  25. package/esm2015/lib/components/select-include-children/select-include-children.component.js +7 -8
  26. package/esm2015/lib/components/select-one/select-one.component.js +10 -2
  27. package/esm2015/lib/components/select-process-document/index.js +2 -0
  28. package/esm2015/lib/components/select-process-document/models/pop-up-data.model.js +13 -0
  29. package/esm2015/lib/components/select-process-document/models/qms-process-document-item.model.js +3 -0
  30. package/esm2015/lib/components/select-process-document/models/selected-process-document-item.model.js +3 -0
  31. package/esm2015/lib/components/select-process-document/public-api.js +7 -0
  32. package/esm2015/lib/components/select-process-document/select-process-document.component.js +832 -0
  33. package/esm2015/lib/components/select-process-document/select-process-document.module.js +59 -0
  34. package/esm2015/lib/components/select-process-document/services/select-process-document-global.service.js +29 -0
  35. package/esm2015/lib/components/tree/model/tree-config.model.js +1 -1
  36. package/esm2015/lib/components/tree/tree.component.js +33 -28
  37. package/esm2015/lib/components/treeNew/index.js +2 -0
  38. package/esm2015/lib/components/treeNew/model/tree-node.model.js +3 -0
  39. package/esm2015/lib/components/treeNew/model/tree.model.js +3 -0
  40. package/esm2015/lib/components/treeNew/public-api.js +5 -0
  41. package/esm2015/lib/components/treeNew/tree.component.js +785 -0
  42. package/esm2015/lib/components/treeNew/tree.function.js +97 -0
  43. package/esm2015/lib/components/treeNew/tree.module.js +51 -0
  44. package/esm2015/lib/directives/app-bar/app-bar.directive.js +24 -0
  45. package/esm2015/lib/model/en.js +3 -3
  46. package/esm2015/lib/model/no.js +3 -3
  47. package/esm2015/lib/qms-angular.module.js +6 -6
  48. package/esm2015/public-api.js +11 -9
  49. package/fesm2015/qms-angular.js +2183 -234
  50. package/fesm2015/qms-angular.js.map +1 -1
  51. package/lib/common/enum/data-type.enum.d.ts +12 -0
  52. package/lib/common/enum/document-node-type.enum.d.ts +10 -0
  53. package/lib/common/enum/module-type.enum.d.ts +6 -0
  54. package/lib/common/related.const.d.ts +5 -0
  55. package/lib/components/badges/qms-badges.component.d.ts +4 -1
  56. package/lib/components/banner/index.d.ts +1 -0
  57. package/lib/components/banner/public_api.d.ts +7 -0
  58. package/lib/components/banner/qms-banner/qms-banner.component.d.ts +2 -2
  59. package/lib/components/button/button.d.ts +1 -1
  60. package/lib/components/comment/comment-log.model.d.ts +10 -0
  61. package/lib/components/comment/comment.d.ts +5 -11
  62. package/lib/components/qms-status-dropdown/index.d.ts +3 -0
  63. package/lib/components/qms-status-dropdown/qms-status-dropdown.component.d.ts +10 -0
  64. package/lib/components/qms-status-dropdown/qms-status-dropdown.model.d.ts +10 -0
  65. package/lib/components/qms-status-dropdown/qms-status-dropdown.module.d.ts +2 -0
  66. package/lib/components/related/model/related-data.model.d.ts +3 -0
  67. package/lib/components/related/popup/related-popup.component.d.ts +7 -3
  68. package/lib/components/select-include-children/select-include-children.component.d.ts +8 -9
  69. package/lib/components/select-one/select-one.component.d.ts +1 -0
  70. package/lib/components/select-process-document/index.d.ts +1 -0
  71. package/lib/components/select-process-document/models/pop-up-data.model.d.ts +17 -0
  72. package/lib/components/select-process-document/models/qms-process-document-item.model.d.ts +13 -0
  73. package/lib/components/select-process-document/models/selected-process-document-item.model.d.ts +16 -0
  74. package/lib/components/select-process-document/public-api.d.ts +6 -0
  75. package/lib/components/select-process-document/select-process-document.component.d.ts +116 -0
  76. package/lib/components/select-process-document/select-process-document.module.d.ts +2 -0
  77. package/lib/components/select-process-document/services/select-process-document-global.service.d.ts +14 -0
  78. package/lib/components/tree/model/tree-config.model.d.ts +2 -2
  79. package/lib/components/tree/tree.component.d.ts +1 -2
  80. package/lib/components/treeNew/index.d.ts +1 -0
  81. package/lib/components/treeNew/model/tree-node.model.d.ts +8 -0
  82. package/lib/components/treeNew/model/tree.model.d.ts +11 -0
  83. package/lib/components/treeNew/public-api.d.ts +4 -0
  84. package/lib/components/treeNew/tree.component.d.ts +135 -0
  85. package/lib/components/treeNew/tree.function.d.ts +13 -0
  86. package/lib/components/treeNew/tree.module.d.ts +2 -0
  87. package/lib/directives/app-bar/app-bar.directive.d.ts +8 -0
  88. package/lib.theme.scss +2 -0
  89. package/package.json +1 -1
  90. package/public-api.d.ts +10 -8
  91. package/qms-angular.metadata.json +1 -1
  92. package/src/assets/jointjs/scss/bpmn.scss +1 -9
  93. package/src/lib/components/badges/_qms-badges-base.scss +7 -2
  94. package/src/lib/components/breadcrumb/breadcrumb.scss +1 -1
  95. package/src/lib/components/qms-app-bar/qms-app-bar.component.scss +16 -2
  96. package/src/lib/components/qms-status-dropdown/qms-status-dropdown.component.scss +148 -0
  97. package/src/lib/components/related/popup/related-popup.component.scss +22 -1
  98. package/src/lib/components/select-process-document/select-process-document.component.scss +300 -0
  99. package/src/lib/components/tree/tree.component.scss +4 -6
  100. package/src/lib/components/treeNew/tree.component.scss +175 -0
  101. package/src/themes/core/_app-bar.scss +14 -0
  102. package/src/themes/core/_qms-label.scss +32 -0
  103. package/esm2015/lib/components/test-only/test-only.component.js +0 -17
  104. package/lib/components/test-only/test-only.component.d.ts +0 -3
  105. package/src/lib/components/test-only/test-only.component.scss +0 -10
@@ -1,11 +1,3 @@
1
- body {
2
- -webkit-user-select: none;
3
- -moz-user-select: -moz-none;
4
- -khtml-user-select: none;
5
- -ms-user-select: none;
6
- user-select: none;
7
- }
8
-
9
1
  /* LAYOUT */
10
2
 
11
3
  #paper-container {
@@ -748,7 +740,7 @@ _:-moz-tree-row(hover),
748
740
  }
749
741
 
750
742
  /* SCROLLBARS */
751
- // QMS-5230: Comment to apply new scroll bar
743
+ // QMS-5230: Comment to apply new scroll bar
752
744
  // ::-webkit-scrollbar {
753
745
  // width: 8px;
754
746
  // height: 10px;
@@ -7,6 +7,7 @@ $qms-badges-primary-circle-background: #00324E;
7
7
 
8
8
 
9
9
  $qms-badges-yellow-background: rgba(228, 207, 83, 0.3);
10
+ $qms-badges-yellow-icon-background: rgba(228, 207, 83, 0.3);
10
11
  $qms-badges-yellow-text-color: #726729;
11
12
 
12
13
  $qms-badges-green-background: rgba(0, 128, 76, 0.1);
@@ -61,8 +62,7 @@ $qms-badges-write-text-color: #fff;
61
62
  background-color: $qms-badges-brown-background;
62
63
  }
63
64
 
64
-
65
- .badges-container-primary-icon {
65
+ .badges-container-icon-primary {
66
66
  background-color: $qms-badges-primary-icon-background;
67
67
  }
68
68
 
@@ -81,6 +81,11 @@ $qms-badges-write-text-color: #fff;
81
81
  .badges-container-icon-brown {
82
82
  background-color: $qms-badges-brown-icon-background;
83
83
  }
84
+
85
+ .badges-container-icon-yellow {
86
+ background-color: $qms-badges-yellow-icon-background;
87
+ }
88
+
84
89
  .badges-container-circle-primary {
85
90
  background-color: $qms-badges-primary-circle-background;
86
91
  }
@@ -26,7 +26,7 @@
26
26
  margin-right: 2px;
27
27
  }
28
28
  .qms-breadcrumb-item{
29
- cursor: pointer;
29
+ cursor: inherit;
30
30
  .qms-btn-icon{
31
31
  width: 1.5rem;
32
32
  height: 1.5rem;
@@ -20,8 +20,11 @@
20
20
  }
21
21
 
22
22
  .right-content {
23
- .mr-22 {
24
- margin-right: 22px;
23
+ button{
24
+ line-height: 16px !important;
25
+ }
26
+ .mr-10 {
27
+ margin-right: 10px;
25
28
  }
26
29
  }
27
30
 
@@ -38,6 +41,7 @@
38
41
  flex-shrink: 0;
39
42
  line-height: 40px;
40
43
  border-radius: 50%;
44
+ margin-right: 11px;
41
45
  }
42
46
 
43
47
  .content-title {
@@ -68,5 +72,15 @@
68
72
  height: 40px;
69
73
  padding: 2px;
70
74
  }
75
+ .right-icon button:last-child{
76
+ min-width: unset !important;
77
+ }
78
+ ::ng-deep .mat-badge-warn .mat-badge-content{
79
+ background-color: #9E360F !important;
80
+ }
81
+ }
82
+
83
+ .pr-8{
84
+ padding-right: 8px;
71
85
  }
72
86
  }
@@ -0,0 +1,148 @@
1
+ .qms-status-dropdown-container {
2
+ ::ng-deep .material-custom-multiselect {
3
+ height: 40px;
4
+
5
+ .mat-form-field-flex {
6
+ border-radius: 2px;
7
+ padding: 0 17.5px 0 16px;
8
+ width: 100%;
9
+ height: 40px;
10
+
11
+ .mat-select-min-line {
12
+ font-family: "Open Sans";
13
+ font-size: 14px;
14
+ font-weight: 600;
15
+ line-height: 16px;
16
+ }
17
+ }
18
+
19
+ .mat-form-field-infix {
20
+ padding-top: 0;
21
+ border-top: 10px solid transparent;
22
+
23
+ .mat-select-value-text {
24
+ line-height: 16px;
25
+ }
26
+ }
27
+
28
+ .mat-form-field-wrapper {
29
+ .mat-form-field-underline {
30
+ display: none;
31
+ }
32
+ }
33
+ }
34
+
35
+ &.warning {
36
+ ::ng-deep .material-custom-multiselect {
37
+ .mat-form-field-flex {
38
+ background-color: #E4CF53;
39
+
40
+ .mat-select-arrow-wrapper {
41
+ .mat-select-arrow {
42
+ color: rgba(0, 0, 0, 0.6);
43
+ }
44
+ }
45
+ }
46
+
47
+ .mat-select-value {
48
+ color: #323232;
49
+ font-weight: 600;
50
+ }
51
+ .mat-select-arrow {
52
+ color: #323232;
53
+ }
54
+ }
55
+ }
56
+
57
+ &.light {
58
+ ::ng-deep .material-custom-multiselect {
59
+ .mat-form-field-flex {
60
+ background-color: rgba(0, 0, 0, 0.1);
61
+
62
+ .mat-select-arrow-wrapper {
63
+ .mat-select-arrow {
64
+ color: rgba(0, 0, 0, 0.6);
65
+ }
66
+ }
67
+ }
68
+
69
+ .mat-select-value {
70
+ color: #323232;
71
+ font-weight: 600;
72
+ }
73
+ .mat-select-arrow {
74
+ color: #323232;
75
+ }
76
+ }
77
+ }
78
+
79
+ &.danger {
80
+ ::ng-deep .material-custom-multiselect {
81
+ .mat-form-field-flex {
82
+ background-color: #9E360F;
83
+
84
+ .mat-select-arrow-wrapper {
85
+ .mat-select-arrow {
86
+ color: rgba(255, 255, 255, 0.6);
87
+ }
88
+ }
89
+ }
90
+
91
+ .mat-select-value {
92
+ color: #fff;
93
+ }
94
+
95
+ .mat-select-arrow {
96
+ color: #fff;
97
+ }
98
+ }
99
+ }
100
+
101
+ &.success {
102
+ ::ng-deep .material-custom-multiselect {
103
+ .mat-form-field-flex {
104
+ background-color: #005832;
105
+ }
106
+
107
+ .mat-select-value {
108
+ color: #fff;
109
+ }
110
+
111
+ .mat-select-arrow {
112
+ color: #fff;
113
+ }
114
+
115
+ .mat-select-arrow-wrapper {
116
+ .mat-select-arrow {
117
+ color: rgba(255, 255, 255, 0.6);
118
+ }
119
+ }
120
+ }
121
+ }
122
+
123
+ ::ng-deep {
124
+ mat-select {
125
+ .mat-select-value {
126
+ font-size: 14px;
127
+ line-height: 16px;
128
+ color: #323232;
129
+ font-weight: 500;
130
+ }
131
+
132
+ .mat-select-arrow-wrapper {
133
+ padding-top: 17.5px;
134
+
135
+ .mat-select-arrow {
136
+ border-top: 4px solid;
137
+ }
138
+ }
139
+ }
140
+
141
+ mat-option .mat-option-custom .mat-pseudo-checkbox-checked::after {
142
+ top: 3px;
143
+ width: 11px;
144
+ height: 5px;
145
+ border-left: 3px solid currentColor;
146
+ }
147
+ }
148
+ }
@@ -271,6 +271,27 @@ cdk-virtual-scroll-viewport {
271
271
  }
272
272
  }
273
273
 
274
+
275
+ .mat-option[aria-disabled=true] {
276
+ $disabled-color: rgba($color: #000000, $alpha: 0.38);
277
+
278
+ .subtitle {
279
+ color: $disabled-color;
280
+ }
281
+
282
+ .breadcrumb-containe {
283
+ .qms-breadcrumb-item {
284
+ .mat-icon {
285
+ color: $disabled-color;
286
+ }
287
+ }
288
+
289
+ .qms-breadcrumb-item-text {
290
+ color: $disabled-color;
291
+ }
292
+ }
293
+ }
294
+
274
295
  svg {
275
296
  display: block;
276
297
  }
@@ -295,6 +316,6 @@ cdk-virtual-scroll-viewport {
295
316
  width: 100%;
296
317
  }
297
318
  .related-viewport {
298
- min-height: 10.25rem;
319
+ min-height: 300px;
299
320
  }
300
321
  }
@@ -0,0 +1,300 @@
1
+ @import "../../../themes/color.scss";
2
+ @import "../../../themes/core/scrollbar.scss";
3
+ @import "../../../themes/core/button.scss";
4
+
5
+ .qmslib__related__popup__container {
6
+ .input__field {
7
+ display: flex;
8
+ align-items: center;
9
+
10
+ input {
11
+ width: 100%;
12
+ padding: 10px;
13
+ outline: none;
14
+ border: none;
15
+ background: $background-input-text;
16
+ }
17
+
18
+ .mat-icon {
19
+ margin-left: -30px;
20
+ cursor: pointer;
21
+ vertical-align: middle;
22
+ }
23
+ }
24
+
25
+ .line__divider {
26
+ border-bottom: 1px solid #ccc;
27
+ height: 1px;
28
+ margin-top: 10px;
29
+ min-width: 300px;
30
+ max-width: 100%;
31
+ }
32
+
33
+ .button__close {
34
+ float: right;
35
+ top: -24px;
36
+ right: -24px;
37
+ cursor: pointer;
38
+ }
39
+
40
+ .panel__content {
41
+ height: 450px;
42
+ overflow: auto;
43
+ margin-top: 12px;
44
+ }
45
+
46
+ .panel__content_item {
47
+ height: 350px;
48
+ overflow: auto;
49
+ margin-top: 12px;
50
+ }
51
+
52
+ .panel-tree {
53
+ .mat-expansion-panel-body {
54
+ padding: 0 12px 12px;
55
+ }
56
+ }
57
+
58
+ .mat-expansion-panel-header {
59
+ height: 30px;
60
+ font-size: 12px;
61
+ letter-spacing: 1px;
62
+ font-family: 'Raleway';
63
+ font-weight: 600;
64
+ padding: 0;
65
+
66
+ .mat-expansion-panel-header-title {
67
+ align-items: center;
68
+ margin-left: 12px;
69
+ }
70
+
71
+ .related_popup_toggle-btn {
72
+ width: 1.5rem;
73
+ height: 1.5rem;
74
+ line-height: 1.5rem;
75
+ }
76
+ }
77
+
78
+ .mat-expansion-panel:not([class*="mat-elevation-z"]) {
79
+ box-shadow: none;
80
+ }
81
+
82
+ .panel__item {
83
+ height: 100px;
84
+ margin-top: 12px;
85
+ overflow-x: hidden;
86
+ overflow-y: auto;
87
+ padding-right: 5px;
88
+ width: 100%;
89
+ max-width: 100%;
90
+ display: flex;
91
+ flex-wrap: wrap;
92
+ align-content: flex-start;
93
+
94
+ .related__item__inline {
95
+ max-width: 100%;
96
+ }
97
+
98
+ .related__item__content {
99
+ height: 32px;
100
+ line-height: 32px;
101
+ background-color: $related-item-background;
102
+ max-width: 100%;
103
+ margin-bottom: 5px;
104
+ margin-left: 2.5px;
105
+ margin-right: 2.5px;
106
+
107
+ .mat-icon {
108
+ color: $related-mat-icon-color;
109
+ font-size: 24px;
110
+ }
111
+
112
+ span.related__item__content_name {
113
+ display: inline-block;
114
+ min-width: calc(100% - 13px);
115
+ white-space: nowrap;
116
+ overflow: hidden;
117
+ text-overflow: ellipsis;
118
+ max-width: 278px;
119
+ }
120
+ }
121
+ }
122
+
123
+ .qmslib-related-popup-splitview{
124
+ background-color: white;
125
+ border-left: 1px solid #ccc;
126
+ height: 450px;
127
+ overflow-y: auto;
128
+ margin-top: 12px;
129
+
130
+ &.panel__content {
131
+ height: 450px;
132
+ overflow: auto;
133
+ margin-top: 12px;
134
+ }
135
+
136
+ &.panel__content_item {
137
+ height: 350px;
138
+ overflow: auto;
139
+ margin-top: 12px;
140
+ }
141
+
142
+ .splitview-header{
143
+ height: 30px;
144
+ font-size: 12px;
145
+ letter-spacing: 1px;
146
+ font-family: "RALEWAY";
147
+ font-weight: 600;
148
+ display: flex;
149
+ align-items: center;
150
+ }
151
+
152
+ .mat-checkbox.qms-group-options {
153
+ padding: 0px;
154
+ }
155
+
156
+ .mat-checkbox.qms-group-options .mat-checkbox-inner-container {
157
+ margin-right: 11px;
158
+ }
159
+
160
+ .mat-checkbox.qms-group-options.mat-checkbox-checked {
161
+ background: transparent !important;
162
+ }
163
+
164
+ .expand-node {
165
+ margin-left: 8px;
166
+ display: flex;
167
+ align-items: center;
168
+ min-height: 40px;
169
+
170
+ .mat-icon {
171
+ color: black(0.6);
172
+ margin-right: 17px;
173
+ min-width: fit-content;
174
+
175
+ svg {
176
+ display: block;
177
+ min-width: fit-content;
178
+ }
179
+ }
180
+ }
181
+ }
182
+ }
183
+
184
+ cdk-virtual-scroll-viewport {
185
+ overflow-x: hidden;
186
+ .search__module-result {
187
+ margin: 1.5rem;
188
+ padding: 0 0 0.5rem 0px;
189
+ .search__module-title {
190
+ font-size: 14px;
191
+ font-weight: 600;
192
+ }
193
+
194
+ .search__option {
195
+ height: auto;
196
+ line-height: normal;
197
+ padding: 8px 0;
198
+ border-bottom: 1px solid #e0e0e0;
199
+
200
+ .qms-list-item.mat-2-line.image-item {
201
+ height: auto;
202
+ }
203
+ .qms-list-item-content {
204
+ margin: 0;
205
+ border-bottom: none;
206
+ .wrap-image.image-square {
207
+ width: 2.5rem;
208
+ height: 100%;
209
+ background: transparent;
210
+ align-self: center;
211
+ margin-right: 0;
212
+ img {
213
+ width: 24px;
214
+ height: 24px;
215
+ }
216
+ }
217
+
218
+ .material-icons-outlined.leading-icon,
219
+ mat-icon.leading-icon {
220
+ padding: 4px 0 4px 4px;
221
+ }
222
+
223
+ .subtitle {
224
+ font-weight: 400;
225
+ }
226
+
227
+ .caption {
228
+ overflow: hidden;
229
+ line-height: normal;
230
+ white-space: normal;
231
+ text-overflow: ellipsis;
232
+ display: -webkit-box;
233
+ -webkit-line-clamp: 2;
234
+ -webkit-box-orient: vertical;
235
+ padding: 0;
236
+ margin: 0;
237
+
238
+ span.search__result__parent-name {
239
+ display: inline-block;
240
+ width: auto;
241
+ width: calc(100% - 13px);
242
+ white-space: nowrap;
243
+ overflow: hidden;
244
+ text-overflow: ellipsis;
245
+ }
246
+ }
247
+
248
+ .default-subtitle {
249
+ color: rgba($color: #000000, $alpha: 0.38);
250
+ }
251
+
252
+ .search__description-icon {
253
+ margin-right: 0px;
254
+ width: 12px;
255
+ height: 12px;
256
+ font-size: 12px;
257
+ }
258
+
259
+ .qms-list-text {
260
+ border-bottom: none;
261
+ }
262
+
263
+ .breadcrumb-containe {
264
+ .qms-breadcrumb-item {
265
+ .mat-icon {
266
+ font-size: 16px!important;
267
+ padding-bottom: 1px;
268
+ }
269
+ }
270
+ }
271
+ }
272
+ }
273
+
274
+ svg {
275
+ display: block;
276
+ }
277
+ }
278
+ }
279
+
280
+ #qmslib_related_popup_header_001 {
281
+ margin-bottom: 20px;
282
+ padding: 0;
283
+ font-weight: 600;
284
+ font-family: "Raleway";
285
+ }
286
+
287
+ .padding-5 {
288
+ padding: 5px;
289
+ }
290
+
291
+ .mat-autocomplete_related-viewport {
292
+ height: 100%;
293
+ max-height: 100% !important;
294
+ .cdk-virtual-scroll-content-wrapper {
295
+ width: 100%;
296
+ }
297
+ .related-viewport {
298
+ min-height: 10.25rem;
299
+ }
300
+ }
@@ -84,7 +84,7 @@
84
84
 
85
85
  &.bgSelected {
86
86
 
87
- .icon-check {
87
+ .select-one-checked {
88
88
  color: $primary;
89
89
  }
90
90
  }
@@ -107,11 +107,8 @@
107
107
 
108
108
  cursor: pointer;
109
109
 
110
- &.bgSelected {
111
-
112
- .icon-check {
113
- color: $primary;
114
- }
110
+ .select-one-checked {
111
+ color: $primary;
115
112
  }
116
113
  }
117
114
 
@@ -173,3 +170,4 @@ svg {
173
170
  }
174
171
 
175
172
 
173
+