qms-angular 1.0.39 → 1.0.40

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 (71) hide show
  1. package/bundles/qms-angular.umd.js +2845 -253
  2. package/bundles/qms-angular.umd.js.map +1 -1
  3. package/esm2015/lib/model/en.js +14 -1
  4. package/esm2015/lib/model/no.js +18 -5
  5. package/esm2015/lib/qms-ckeditor-components/common/constants/ckeditorEvent.constant.js +3 -1
  6. package/esm2015/lib/qms-ckeditor-components/common/constants/iconSvg.constants.js +8 -0
  7. package/esm2015/lib/qms-ckeditor-components/common/enums/image-mode.enum.js +9 -0
  8. package/esm2015/lib/qms-ckeditor-components/common/enums/protocol-type.enum.js +11 -3
  9. package/esm2015/lib/qms-ckeditor-components/common/enums/target-type.enum.js +8 -1
  10. package/esm2015/lib/qms-ckeditor-components/common/functions/common.function.js +3 -1
  11. package/esm2015/lib/qms-ckeditor-components/common/models/qms-ckeditor-data.model.js +1 -1
  12. package/esm2015/lib/qms-ckeditor-components/common/models/qms-ckeditor-input.model.js +1 -9
  13. package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.component.js +524 -0
  14. package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.lib.js +1948 -0
  15. package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.validator.js +7 -0
  16. package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-link/qms-ckeditor-link.component.js +4 -4
  17. package/esm2015/lib/qms-ckeditor-components/models/qms-ckeditor-imagemap.model.js +22 -0
  18. package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +45 -12
  19. package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.module.js +11 -1
  20. package/esm2015/qms-angular.js +3 -1
  21. package/fesm2015/qms-angular.js +2822 -252
  22. package/fesm2015/qms-angular.js.map +1 -1
  23. package/lib/model/en.d.ts +13 -0
  24. package/lib/model/no.d.ts +13 -0
  25. package/lib/qms-ckeditor-components/common/constants/ckeditorEvent.constant.d.ts +2 -0
  26. package/lib/qms-ckeditor-components/common/constants/iconSvg.constants.d.ts +7 -0
  27. package/lib/qms-ckeditor-components/common/enums/image-mode.enum.d.ts +7 -0
  28. package/lib/qms-ckeditor-components/common/enums/protocol-type.enum.d.ts +9 -2
  29. package/lib/qms-ckeditor-components/common/enums/target-type.enum.d.ts +6 -0
  30. package/lib/qms-ckeditor-components/common/models/qms-ckeditor-data.model.d.ts +1 -0
  31. package/lib/qms-ckeditor-components/common/models/qms-ckeditor-input.model.d.ts +7 -7
  32. package/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.component.d.ts +123 -0
  33. package/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.lib.d.ts +542 -0
  34. package/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.validator.d.ts +2 -0
  35. package/lib/qms-ckeditor-components/models/qms-ckeditor-imagemap.model.d.ts +20 -0
  36. package/lib/qms-ckeditor-components/qms-ckeditor.component.d.ts +5 -4
  37. package/package.json +1 -1
  38. package/qms-angular.d.ts +2 -0
  39. package/qms-angular.metadata.json +1 -1
  40. package/src/assets/qms-ckeditor-plugin/build/ckeditor.js +2 -2
  41. package/src/assets/qms-ckeditor-plugin/build/ckeditor.js.map +1 -1
  42. package/src/assets/qms-ckeditor-plugin/package-lock.json +12177 -9
  43. package/src/assets/qms-ckeditor-plugin/src/ckeditor.js +3 -2
  44. package/src/assets/qms-ckeditor-plugin/src/plugins/common/qmsCKEditorConstant.js +4 -0
  45. package/src/assets/qms-ckeditor-plugin/src/plugins/common/qmsCKEditorService.js +10 -0
  46. package/src/assets/qms-ckeditor-plugin/src/plugins/fullscreen/dist/qmsCKEditorFullscreenPlugin.dev.js +87 -0
  47. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/converters.js +378 -0
  48. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/imagemap.js +14 -0
  49. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/imagemapediting.js +183 -0
  50. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/imagemapui.js +49 -0
  51. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/insertimagemapcommand.js +127 -0
  52. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/resizeimagemapcommand.js +82 -0
  53. package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/utils.js +234 -0
  54. package/src/assets/qms-ckeditor-plugin/src/plugins/link/linkediting.js +1 -1
  55. package/src/assets/qms-ckeditor-plugin/src/plugins/link/linkimage.js +1 -1
  56. package/src/assets/qms-ckeditor-plugin/src/plugins/link/ui/linkactionsview.js +1 -1
  57. package/src/assets/qms-ckeditor-plugin/src/plugins/link/ui/linkformview.js +1 -1
  58. package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/inserttooltipcommand.js +1 -1
  59. package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/tooltipediting.js +1 -1
  60. package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/ui/actionsview.js +1 -1
  61. package/src/assets/qms-ckeditor-plugin/src/themes/icons/imagemap.svg +56 -0
  62. package/src/assets/qms-ckeditor-plugin/src/themes/{tyles → styles}/anchor.css +0 -0
  63. package/src/assets/qms-ckeditor-plugin/src/themes/{tyles → styles}/link.css +0 -0
  64. package/src/assets/qms-ckeditor-plugin/src/themes/{tyles → styles}/linkactions.css +0 -0
  65. package/src/assets/qms-ckeditor-plugin/src/themes/{tyles → styles}/linkform.css +0 -0
  66. package/src/assets/qms-ckeditor-plugin/src/themes/{tyles → styles}/linkimage.css +0 -0
  67. package/src/assets/qms-ckeditor-plugin/src/themes/{tyles → styles}/tooltip.css +0 -0
  68. package/src/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.component.scss +27 -0
  69. package/src/themes/_color.scss +8 -0
  70. package/src/themes/core/_colors.scss +2 -0
  71. package/src/themes/core/_tab.scss +50 -49
@@ -14,7 +14,7 @@ import { icons } from '@ckeditor/ckeditor5-core';
14
14
  import { ensureSafeUrl } from '../utils';
15
15
 
16
16
  import '@ckeditor/ckeditor5-ui/theme/components/responsive-form/responsiveform.css';
17
- import '../../../themes/tyles/linkactions.css';
17
+ import '../../../themes/styles/linkactions.css';
18
18
 
19
19
  import unlinkIcon from '../../../themes/icons/unlink.svg';
20
20
 
@@ -22,7 +22,7 @@ import { FocusTracker, KeystrokeHandler } from '@ckeditor/ckeditor5-utils';
22
22
  import { icons } from '@ckeditor/ckeditor5-core';
23
23
 
24
24
  import '@ckeditor/ckeditor5-ui/theme/components/responsive-form/responsiveform.css';
25
- import '../../../themes/tyles/linkform.css';
25
+ import '../../../themes/styles/linkform.css';
26
26
 
27
27
  /**
28
28
  * The link form view controller class.
@@ -58,7 +58,7 @@ export default class InsertTooltipCommand extends Command {
58
58
  return;
59
59
  }
60
60
  window[QMSCKEditorConstant.QMSCK_TOOLTIP_IS_PROCESSING] = true;
61
- console.log(evt.detail);
61
+
62
62
  model.change(writer => {
63
63
  const position = selection.getFirstPosition();
64
64
  const attributes = toMap(selection.getAttributes());
@@ -1,5 +1,5 @@
1
1
  import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
2
- import '../../themes/tyles/tooltip.css';
2
+ import '../../themes/styles/tooltip.css';
3
3
  import { TOOLTIP_CUSTOM_PROPERTY, TOOLTIP_ATTRIBUTE, INSERT_TOOLTIP_COMMAND, REMOVE_TOOLTIP_COMMAND, isTyping, shouldCopyAttributes} from './utils';
4
4
  import InsertTooltipCommand from './inserttooltipcommand';
5
5
  import RemoveTooltipCommand from './removetooltipcommand';
@@ -2,7 +2,7 @@ import { ButtonView, View, ViewCollection, FocusCycler } from '@ckeditor/ckedito
2
2
  import { FocusTracker, KeystrokeHandler } from '@ckeditor/ckeditor5-utils';
3
3
  import { icons } from '@ckeditor/ckeditor5-core';
4
4
  import '@ckeditor/ckeditor5-ui/theme/components/responsive-form/responsiveform.css';
5
- import '../../../themes/tyles/linkactions.css';
5
+ import '../../../themes/styles/linkactions.css';
6
6
  import { TOOLTIP_ATTRIBUTE } from '../utils';
7
7
  export default class ActionsView extends View {
8
8
  constructor( locale ) {
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M511.307,478.536l-60.831-241.023c-2.558-10.131-11.671-17.229-22.118-17.229h-33.836
8
+ c6.497-20.56,10.376-42.692,10.376-66.3c0-82.11-66.794-148.912-148.894-148.912c-82.098,0-148.891,66.802-148.891,148.912
9
+ c0,23.644,3.91,45.8,10.402,66.3H83.644c-10.448,0-19.56,7.098-22.118,17.229L0.694,478.536
10
+ c-1.722,6.819-0.201,14.052,4.123,19.601c4.322,5.549,10.962,8.793,17.995,8.793h466.376c7.034,0,13.673-3.244,17.995-8.793
11
+ C511.508,492.588,513.029,485.356,511.307,478.536z M256.004,50.694c56.943,0,103.271,46.335,103.271,103.289
12
+ c0,28.306-7.157,54.31-18.129,77.565c-0.622,1.055-1.16,2.161-1.607,3.317c-16.437,33.349-40.57,60.862-62.297,81.102
13
+ c-8.092,7.539-15.444,13.649-21.204,18.17c-29.934-23.612-103.301-90.633-103.301-180.155
14
+ C152.736,97.03,199.062,50.694,256.004,50.694z M52.097,461.307l49.318-195.4h35.807
15
+ c38.993,70.887,102.46,113.131,106.301,115.644c3.791,2.477,8.136,3.717,12.481,3.717c4.345,0,8.691-1.239,12.483-3.718
16
+ c0.722-0.473,17.983-11.826,39.854-32.198c22.699-21.145,47.625-49.257,66.475-83.444h35.772l49.318,195.4H52.097z"/>
17
+ </g>
18
+ </g>
19
+ <g>
20
+ <g>
21
+ <path d="M272.135,137.835c-4.243-4.243-10.127-6.676-16.134-6.676s-11.879,2.433-16.122,6.676
22
+ c-4.258,4.243-6.69,10.113-6.69,16.12s2.433,11.893,6.69,16.136c4.245,4.243,10.115,6.691,16.122,6.691s11.877-2.448,16.134-6.691
23
+ c4.243-4.243,6.678-10.128,6.678-16.136C278.812,147.964,276.378,142.078,272.135,137.835z"/>
24
+ </g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ <g>
43
+ </g>
44
+ <g>
45
+ </g>
46
+ <g>
47
+ </g>
48
+ <g>
49
+ </g>
50
+ <g>
51
+ </g>
52
+ <g>
53
+ </g>
54
+ <g>
55
+ </g>
56
+ </svg>
@@ -0,0 +1,27 @@
1
+ @import '../../styles/style.scss';
2
+ .qmsckeditor__imagemap__container {
3
+ .mat-form-field {
4
+ width: 100%;
5
+ }
6
+
7
+ .qmsckeditor__imagemap__information{
8
+ position: relative;
9
+ }
10
+
11
+ .qmsckeditor__imagemap__map {
12
+ overflow: auto;
13
+ width: 800px;
14
+ min-height: 371px;
15
+ position: relative;
16
+ max-height: 460px;
17
+ }
18
+
19
+ .mat-button-toggle-checked {
20
+ border: 1px solid #000000 !important;
21
+ }
22
+
23
+ .hidden {
24
+ visibility: hidden;
25
+ }
26
+ }
27
+
@@ -51,3 +51,11 @@ $button-green-background: #00804C;
51
51
  $text-not-accepted: #B00020;
52
52
  $text-considered: #726729;
53
53
  $text-accepted: #005935;
54
+ $tab-hover-background: #F2F7FD;
55
+ $tab-focus-background: #E5EEFB;
56
+ $tab-border: #666666;
57
+ $tab-primary-label: rgba(255, 255, 255, 0.24);
58
+ $tab-primary-icon: rgba(255, 255, 255, 0.6);
59
+ $tab-primary-background-hover: rgba(255, 255, 255, 0.08);
60
+ $tab-primary-border: rgba(255, 255, 255, 0.38);
61
+ $tab-disable-background: rgba(25, 84, 169, 0.12);
@@ -46,6 +46,8 @@ $risk-yellow-dark: #726729;
46
46
  $risk-green-dark: #005935;
47
47
 
48
48
 
49
+ $tab-dark-background: #00324e;
50
+
49
51
  @function black($opacity) {
50
52
  @return rgba(black, $opacity)
51
53
  };
@@ -1,11 +1,12 @@
1
1
  @import "colors";
2
+ @import "./colors";
2
3
  .mat-tab-group{
3
4
  &.qms-tab-group{
4
5
  .qms-tab-label{
5
6
  display: flex;
6
7
  flex-direction: column;
7
8
  align-items: center;
8
- color: #323232;
9
+ color: $tab-dark-background;
9
10
  font-family: Open Sans, Arial, Sans-Serif;
10
11
  }
11
12
 
@@ -33,7 +34,7 @@
33
34
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
34
35
  &.cdk-program-focused:not(.mat-tab-disabled),
35
36
  .mat-ripple-element{
36
- background: rgba(25, 84, 169, 0.12); ;
37
+ background: $tab-disable-background;
37
38
  }
38
39
  }
39
40
 
@@ -46,7 +47,7 @@
46
47
 
47
48
  .mat-tab-header-pagination{
48
49
  .mat-tab-header-pagination-chevron{
49
- border-color: #666666;
50
+ border-color: $tab-border;
50
51
  }
51
52
  }
52
53
  }
@@ -56,7 +57,7 @@
56
57
  display: flex;
57
58
  flex-direction: column;
58
59
  align-items: center;
59
- color: #323232;
60
+ color: $popup-title-color;
60
61
  font-family: Open Sans, Arial, Sans-Serif;
61
62
  font-weight: 400;
62
63
  .mat-icon{
@@ -93,31 +94,31 @@
93
94
 
94
95
  .mat-ripple.mat-tab-label{
95
96
  &:hover{
96
- background: black(0.04);
97
+ background: $tab-hover-background;
97
98
  }
98
99
 
99
100
  &:focus-visible{
100
- background-color: black(0.12);
101
+ background-color: $tab-hover-background;
101
102
  }
102
103
 
103
104
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
104
105
  &.cdk-program-focused:not(.mat-tab-disabled){
105
- background: black(0.12);
106
+ background: $tab-hover-background;
106
107
  }
107
108
 
108
109
  .mat-ripple-element{
109
- background-color:rgba(0, 0, 0, 0.12)
110
+ background-color: $tab-hover-background
110
111
  }
111
112
 
112
113
  &.mat-tab-label-active{
113
114
  &:hover{
114
- background: #F2F7FD;
115
+ background: $tab-hover-background;
115
116
  }
116
117
 
117
118
  &:focus-visible, .mat-ripple-element,
118
119
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
119
120
  &.cdk-program-focused:not(.mat-tab-disabled){
120
- background: rgba(25, 84, 169, 0.12);
121
+ background: $tab-disable-background;
121
122
  }
122
123
  }
123
124
  }
@@ -130,16 +131,16 @@
130
131
 
131
132
  .mat-tab-header-pagination{
132
133
  .mat-tab-header-pagination-chevron{
133
- border-color: #666666;
134
+ border-color: $tab-border;
134
135
  }
135
136
  }
136
137
  }
137
138
 
138
139
  &.qms-tab-group-advanced.primary{
139
- background: #00324E;
140
+ background: $tab-dark-background;
140
141
 
141
142
  .mat-tab-labels{
142
- border-bottom: 1px solid rgba(255, 255, 255, 0.24);
143
+ border-bottom: 1px solid $tab-primary-label;
143
144
  }
144
145
  .qms-tab-label{
145
146
  display: flex;
@@ -148,16 +149,16 @@
148
149
  color: white;
149
150
  font-weight: 400;
150
151
  .mat-icon{
151
- color: rgba(255, 255, 255, 0.6);
152
+ color: $tab-primary-icon;
152
153
  }
153
154
  }
154
155
 
155
156
 
156
157
  .mat-tab-disabled{
157
158
  .qms-tab-label{
158
- color: rgba(255, 255, 255, 0.24);
159
+ color: $tab-primary-label;
159
160
  .mat-icon{
160
- color: rgba(255, 255, 255, 0.24);
161
+ color: $tab-primary-label;
161
162
  }
162
163
  }
163
164
  }
@@ -174,38 +175,38 @@
174
175
 
175
176
  .mat-ripple.mat-tab-label{
176
177
  &:hover{
177
- background: rgba(255, 255, 255, 0.08);
178
+ background: $tab-primary-background-hover;
178
179
  }
179
180
 
180
181
  &:focus-visible{
181
- background-color: rgba(255, 255, 255, 0.24);
182
+ background-color: $tab-primary-label;
182
183
  }
183
184
 
184
185
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
185
186
  &.cdk-program-focused:not(.mat-tab-disabled){
186
- background-color: rgba(255, 255, 255, 0.24);
187
+ background-color: $tab-primary-label;
187
188
  }
188
189
 
189
190
  .mat-ripple-element{
190
- background-color: rgba(255, 255, 255, 0.24);
191
+ background-color: $tab-primary-label;
191
192
  }
192
193
 
193
194
  &.mat-tab-label-active{
194
195
  &:hover{
195
- background: rgba(255, 255, 255, 0.08);
196
+ background: $tab-primary-background-hover;
196
197
  }
197
198
 
198
199
  &:focus-visible{
199
- background-color: rgba(255, 255, 255, 0.24);
200
+ background-color: $tab-primary-label;
200
201
  }
201
202
 
202
203
  .mat-ripple-element{
203
- background-color:rgba(255, 255, 255, 0.24);;
204
+ background-color:$tab-primary-label;;
204
205
  }
205
206
  }
206
207
 
207
208
  &.mat-tab-disabled:hover{
208
- background: #00324E;
209
+ background: $tab-dark-background;
209
210
  }
210
211
  }
211
212
 
@@ -217,7 +218,7 @@
217
218
 
218
219
  .mat-tab-header-pagination.mat-tab-header-pagination-disabled{
219
220
  .mat-tab-header-pagination-chevron{
220
- border-color: rgba(255, 255, 255, 0.38);
221
+ border-color: $tab-primary-border;
221
222
  }
222
223
 
223
224
  }
@@ -248,7 +249,7 @@
248
249
  display: flex;
249
250
  flex-direction: column;
250
251
  align-items: center;
251
- color: #323232;
252
+ color: $tab-dark-background;
252
253
  font-family: Open Sans, Arial, Sans-Serif;
253
254
  }
254
255
 
@@ -274,7 +275,7 @@
274
275
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
275
276
  &.cdk-program-focused:not(.mat-tab-disabled),
276
277
  .mat-ripple-element{
277
- background: rgba(25, 84, 169, 0.12); ;
278
+ background: $tab-disable-background;
278
279
  }
279
280
  }
280
281
 
@@ -287,7 +288,7 @@
287
288
 
288
289
  .mat-tab-header-pagination{
289
290
  .mat-tab-header-pagination-chevron{
290
- border-color: #666666;
291
+ border-color: $tab-border;
291
292
  }
292
293
  }
293
294
  }
@@ -297,7 +298,7 @@
297
298
  display: flex;
298
299
  flex-direction: column;
299
300
  align-items: center;
300
- color: #323232;
301
+ color: $tab-dark-background;
301
302
  font-family: Open Sans, Arial, Sans-Serif;
302
303
  font-weight: 600;
303
304
  .mat-icon{
@@ -333,31 +334,31 @@
333
334
 
334
335
  .mat-tab-link{
335
336
  &:hover{
336
- background: black(0.04);
337
+ background: $tab-hover-background;
337
338
  }
338
339
 
339
340
  &:focus-visible{
340
- background-color: black(0.12);
341
+ background-color: $tab-hover-background;
341
342
  }
342
343
 
343
344
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
344
345
  &.cdk-program-focused:not(.mat-tab-disabled){
345
- background: black(0.12);
346
+ background: $tab-hover-background;
346
347
  }
347
348
 
348
349
  .mat-ripple-element{
349
- background-color:rgba(0, 0, 0, 0.12)
350
+ background-color: $tab-hover-background
350
351
  }
351
352
 
352
353
  &.mat-tab-label-active{
353
354
  &:hover{
354
- background: #F2F7FD;
355
+ background: $tab-hover-background;
355
356
  }
356
357
 
357
358
  &:focus-visible, .mat-ripple-element,
358
359
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
359
360
  &.cdk-program-focused:not(.mat-tab-disabled){
360
- background: rgba(25, 84, 169, 0.12);
361
+ background: $tab-disable-background;
361
362
  }
362
363
  }
363
364
  }
@@ -370,13 +371,13 @@
370
371
 
371
372
  .mat-tab-header-pagination{
372
373
  .mat-tab-header-pagination-chevron{
373
- border-color: #666666;
374
+ border-color: $tab-border;
374
375
  }
375
376
  }
376
377
  }
377
378
 
378
379
  &.qms-tab-group-advanced.primary{
379
- background: #00324E;
380
+ background: $tab-dark-background;
380
381
 
381
382
  .qms-tab-label{
382
383
  display: flex;
@@ -385,15 +386,15 @@
385
386
  color: white;
386
387
  font-weight: 400;
387
388
  .mat-icon{
388
- color: rbga(255,255,255, 0.6);
389
+ color: $tab-primary-icon;
389
390
  }
390
391
  }
391
392
 
392
393
  .mat-tab-disabled{
393
394
  &.qms-tab-label{
394
- color: rgba(255, 255, 255, 0.24);
395
+ color: $tab-primary-label;
395
396
  .mat-icon{
396
- color: rgba(255, 255, 255, 0.24);
397
+ color: $tab-primary-label;
397
398
  }
398
399
  }
399
400
  }
@@ -409,38 +410,38 @@
409
410
 
410
411
  .mat-tab-link{
411
412
  &:hover{
412
- background: rgba(255, 255, 255, 0.08);
413
+ background: $tab-primary-background-hover;
413
414
  }
414
415
 
415
416
  &:focus-visible{
416
- background-color: rgba(255, 255, 255, 0.24);
417
+ background-color: $tab-primary-label;
417
418
  }
418
419
 
419
420
  &.cdk-keyboard-focused:not(.mat-tab-disabled),
420
421
  &.cdk-program-focused:not(.mat-tab-disabled){
421
- background-color: rgba(255, 255, 255, 0.24);
422
+ background-color: $tab-primary-label;
422
423
  }
423
424
 
424
425
  .mat-ripple-element{
425
- background-color: #00324E;
426
+ background-color: $tab-dark-background;
426
427
  }
427
428
 
428
429
  &.mat-tab-label-active{
429
430
  &:hover{
430
- background: rgba(255, 255, 255, 0.08);
431
+ background: $tab-primary-background-hover;
431
432
  }
432
433
 
433
434
  &:focus-visible{
434
- background-color: rgba(255, 255, 255, 0.24);
435
+ background-color: $tab-primary-label;
435
436
  }
436
437
 
437
438
  .mat-ripple-element{
438
- background-color:rgba(255, 255, 255, 0.24);;
439
+ background-color:$tab-primary-label;;
439
440
  }
440
441
  }
441
442
 
442
443
  &.mat-tab-disabled:hover{
443
- background: #00324E;
444
+ background: $tab-dark-background;
444
445
  }
445
446
  }
446
447
 
@@ -452,7 +453,7 @@
452
453
 
453
454
  .mat-tab-header-pagination.mat-tab-header-pagination-disabled{
454
455
  .mat-tab-header-pagination-chevron{
455
- border-color: rgba(255, 255, 255, 0.38);
456
+ border-color: $tab-primary-border;
456
457
  }
457
458
 
458
459
  }