qms-angular 1.0.89 → 1.0.90
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 +109 -63
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/common/themes.const.js +3 -0
- package/esm2015/lib/components/button/button-toggle.js +1 -1
- package/esm2015/lib/components/button/button.js +3 -3
- package/esm2015/lib/components/comment/comment.js +1 -1
- package/esm2015/lib/components/list/list.js +5 -3
- package/esm2015/lib/components/related/content/related-content.component.js +1 -1
- package/esm2015/lib/components/related/list-other-related/list-related.component.js +1 -1
- package/esm2015/lib/components/related/popup/related-popup.component.js +1 -1
- package/esm2015/lib/components/related/risk/analysis/analysis.component.js +1 -1
- package/esm2015/lib/components/related/risk/list/list.component.js +1 -1
- package/esm2015/lib/components/related/risk/result/result.component.js +1 -1
- package/esm2015/lib/components/rich-text/rich-text.js +1 -1
- package/esm2015/lib/components/select-dialog/select-dialog.js +1 -1
- package/esm2015/lib/components/select-include-children/select-include-children.component.js +1 -1
- package/esm2015/lib/components/select-one/select-one.component.js +1 -1
- package/esm2015/lib/components/select-process-document/select-process-document.component.js +1 -1
- package/esm2015/lib/components/table/table-action.js +2 -2
- package/esm2015/lib/components/tree/tree.component.js +1 -1
- package/esm2015/lib/components/treeNew/tree.component.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +1 -1
- package/esm2015/lib/services/theming.service.js +36 -0
- package/esm2015/lib/shared.module.js +1 -1
- package/esm2015/public-api.js +3 -1
- package/fesm2015/qms-angular.js +69 -32
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/common/themes.const.d.ts +2 -0
- package/lib/components/list/list.d.ts +1 -1
- package/lib/services/theming.service.d.ts +7 -0
- package/lib.theme.scss +11 -9
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/qms-angular.metadata.json +1 -1
- package/src/lib/components/breadcrumb/breadcrumb.scss +2 -1
- package/src/lib/components/button/_button-base.scss +45 -52
- package/src/lib/components/button/_button-theme.scss +4 -2
- package/src/lib/components/button/button-icon.scss +17 -14
- package/src/lib/components/button/button-toggle.scss +64 -115
- package/src/lib/components/comment/comment.scss +3 -2
- package/src/lib/components/dialog/dialog.scss +2 -1
- package/src/lib/components/list/_list-base.scss +2 -2
- package/src/lib/components/list/_list-expansion.scss +33 -7
- package/src/lib/components/list/list.scss +21 -4
- package/src/lib/components/related/content/related-content.component.scss +4 -2
- package/src/lib/components/related/list-other-related/list-related.component.scss +7 -6
- package/src/lib/components/related/popup/related-popup.component.scss +10 -9
- package/src/lib/components/related/risk/analysis/analysis.component.scss +4 -3
- package/src/lib/components/related/risk/list/list.component.scss +7 -6
- package/src/lib/components/related/risk/result/result.component.scss +9 -8
- package/src/lib/components/rich-text/rich-text.scss +3 -2
- package/src/lib/components/select-dialog/select-dialog.scss +5 -5
- package/src/lib/components/select-include-children/select-include-children.component.scss +10 -9
- package/src/lib/components/select-one/select-one.component.scss +5 -4
- package/src/lib/components/select-process-document/select-process-document.component.scss +12 -12
- package/src/lib/components/substance-conflict/substance-conflict.component.scss +4 -3
- package/src/lib/components/table/table.scss +4 -3
- package/src/lib/components/tooltip/tooltip.scss +3 -1
- package/src/lib/components/tree/tree.component.scss +12 -12
- package/src/lib/components/treeNew/tree.component.scss +11 -18
- package/src/lib/qms-ckeditor-components/qms-ckeditor.component.scss +3 -2
- package/src/themes/_non-bg-scrollbar.scss +4 -3
- package/src/themes/core/_app-bar.scss +5 -4
- package/src/themes/core/_button.scss +14 -12
- package/src/themes/core/_checkbox.scss +9 -24
- package/src/themes/core/_chip-input.scss +29 -27
- package/src/themes/core/_chip.scss +12 -10
- package/src/themes/core/_date-picker.scss +9 -8
- package/src/themes/core/_dropdown-menu.scss +12 -11
- package/src/themes/core/_file-upload.scss +12 -11
- package/src/themes/core/_form-prefix.scss +6 -4
- package/src/themes/core/_form.scss +28 -27
- package/src/themes/core/_progress.scss +5 -3
- package/src/themes/core/_radio.scss +13 -15
- package/src/themes/core/_range-slider.scss +34 -33
- package/src/themes/core/_scrollbar.scss +25 -34
- package/src/themes/core/_search-field.scss +5 -3
- package/src/themes/core/_select.scss +5 -2
- package/src/themes/core/_slide-toggle.scss +10 -11
- package/src/themes/core/_styles.scss +19 -17
- package/src/themes/core/_tab.scss +88 -87
- package/src/themes/core/_table.scss +18 -17
- package/src/themes/core/_text-block.scss +3 -1
- package/src/themes/theme/_mixins.scss +18 -0
- package/src/themes/theme/_theme.scss +17 -0
- package/src/themes/theme/_variable.scss +303 -0
- package/src/themes/_color.scss +0 -61
- package/src/themes/_scrollbar.scss +0 -27
- package/src/themes/core/_colors.scss +0 -60
@@ -33,32 +33,58 @@
|
|
33
33
|
}
|
34
34
|
|
35
35
|
.mat-expansion-panel-header[aria-disabled="true"] {
|
36
|
-
color: black(0.38);
|
37
36
|
pointer-events: none;
|
38
|
-
|
37
|
+
user-select: none;
|
38
|
+
|
39
|
+
.qms-list-header {
|
40
|
+
* {
|
41
|
+
color: rgba(25, 84, 169, 0.38);
|
42
|
+
}
|
43
|
+
}
|
39
44
|
}
|
40
45
|
|
41
46
|
.mat-expansion-panel-header {
|
42
47
|
&:hover {
|
43
48
|
&:not([aria-disabled="true"]) {
|
44
|
-
background:
|
49
|
+
background: #F2F7FD;
|
50
|
+
}
|
51
|
+
|
52
|
+
.subtitle, .default-subtitle, .caption,
|
53
|
+
.mat-expansion-indicator::after,
|
54
|
+
.material-icons,
|
55
|
+
.material-icons-outlined {
|
56
|
+
color: $primary;
|
45
57
|
}
|
46
58
|
}
|
47
59
|
|
48
60
|
&:active {
|
49
61
|
&:not([aria-disabled="true"]) {
|
50
|
-
background:
|
62
|
+
background: #C8D6EA;
|
51
63
|
}
|
52
|
-
}
|
53
64
|
|
65
|
+
.subtitle, .default-subtitle, .caption,
|
66
|
+
.mat-expansion-indicator::after,
|
67
|
+
.material-icons,
|
68
|
+
.material-icons-outlined {
|
69
|
+
color: $primary;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
54
73
|
|
55
74
|
&.cdk-keyboard-focused {
|
56
|
-
|
75
|
+
background-color: theme-apply($primary-light-3-opacity);;
|
57
76
|
border-radius: $border-radius-default;
|
77
|
+
|
78
|
+
.subtitle, .default-subtitle, .caption,
|
79
|
+
.mat-expansion-indicator::after,
|
80
|
+
.material-icons,
|
81
|
+
.material-icons-outlined {
|
82
|
+
color: $primary;
|
83
|
+
}
|
58
84
|
}
|
59
85
|
|
60
86
|
&.active-item {
|
61
|
-
color: $primary;
|
87
|
+
color: theme-apply($primary);
|
62
88
|
|
63
89
|
@include color-inherit;
|
64
90
|
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import "../../../themes/
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
@import "../../../themes/core/typography";
|
3
4
|
@import "list-base";
|
4
5
|
@import "list-expansion.scss";
|
@@ -57,12 +58,28 @@
|
|
57
58
|
.subtitle,
|
58
59
|
button,
|
59
60
|
span,
|
61
|
+
.material-icons,
|
62
|
+
.material-icons-outlined
|
60
63
|
p {
|
61
64
|
color: black(0.38);
|
62
65
|
pointer-events: none;
|
63
66
|
cursor: default;
|
67
|
+
user-select: none;
|
68
|
+
background-color: none;
|
64
69
|
}
|
65
70
|
}
|
71
|
+
|
72
|
+
&:not([disabled]):hover, &:not([disabled]):focus {
|
73
|
+
cursor: pointer;
|
74
|
+
background-color: black(0.08);
|
75
|
+
outline: none;
|
76
|
+
}
|
77
|
+
|
78
|
+
&:not([disabled]):active {
|
79
|
+
cursor: pointer;
|
80
|
+
background-color: black(0.12);
|
81
|
+
}
|
82
|
+
|
66
83
|
}
|
67
84
|
|
68
85
|
.qms-list-item-content {
|
@@ -76,7 +93,7 @@
|
|
76
93
|
margin: 0 1rem;
|
77
94
|
}
|
78
95
|
|
79
|
-
|
96
|
+
.material-icons.leading-icon,
|
80
97
|
.material-icons-outlined.leading-icon {
|
81
98
|
flex-shrink: 0;
|
82
99
|
width: $leading-icon;
|
@@ -150,7 +167,7 @@ img.leading-icon {
|
|
150
167
|
display: flex;
|
151
168
|
justify-content: space-between;
|
152
169
|
|
153
|
-
.
|
170
|
+
.material-icons,
|
154
171
|
.material-icons-outlined {
|
155
172
|
font-size: 20px;
|
156
173
|
}
|
@@ -173,7 +190,7 @@ img.leading-icon {
|
|
173
190
|
color: black(0.6);
|
174
191
|
font-size: $size-caption;
|
175
192
|
|
176
|
-
|
193
|
+
.material-icons,
|
177
194
|
.material-icons-outlined {
|
178
195
|
font-size: 20px;
|
179
196
|
}
|
@@ -1,9 +1,11 @@
|
|
1
|
-
@import
|
1
|
+
@import "../../../../themes/theme/variable";
|
2
|
+
@import "../../../../themes/theme/mixins";
|
3
|
+
|
2
4
|
.related__content_container {
|
3
5
|
.card {
|
4
6
|
min-height: 60px;
|
5
7
|
box-shadow: none;
|
6
|
-
border-color: $mat-card-border-color;
|
8
|
+
border-color: theme-apply($mat-card-border-color);
|
7
9
|
border-top: none;
|
8
10
|
border-right: none;
|
9
11
|
border-left: none;
|
@@ -1,11 +1,12 @@
|
|
1
|
-
@import "../../../../themes/
|
1
|
+
@import "../../../../themes/theme/variable";
|
2
|
+
@import "../../../../themes/theme/mixins";
|
2
3
|
@import "../../../../themes/core/typography";
|
3
4
|
|
4
5
|
.list-related {
|
5
6
|
font-family: "Open Sans";
|
6
7
|
font-style: normal;
|
7
8
|
font-weight: normal;
|
8
|
-
color: $default-color;
|
9
|
+
color: theme-apply($default-color);
|
9
10
|
|
10
11
|
.list-related__title {
|
11
12
|
font-weight: 600;
|
@@ -125,7 +126,7 @@
|
|
125
126
|
background-color: #fafafa;
|
126
127
|
|
127
128
|
border-bottom: 1px solid #ddd;
|
128
|
-
color: $primary;
|
129
|
+
color: theme-apply($primary);
|
129
130
|
min-height: 48px;
|
130
131
|
border-bottom: 1px solid #ddd;
|
131
132
|
|
@@ -153,17 +154,17 @@
|
|
153
154
|
}
|
154
155
|
|
155
156
|
.label-red {
|
156
|
-
background-color: $secondary;
|
157
|
+
background-color: theme-apply($secondary);
|
157
158
|
color: white;
|
158
159
|
}
|
159
160
|
|
160
161
|
.label-yellow {
|
161
|
-
background-color: $risk-yellow;
|
162
|
+
background-color: theme-apply($risk-yellow);
|
162
163
|
color: black(0.87);
|
163
164
|
}
|
164
165
|
|
165
166
|
.label-green {
|
166
|
-
background-color: $risk-green;
|
167
|
+
background-color: theme-apply($risk-green);
|
167
168
|
color: white;
|
168
169
|
}
|
169
170
|
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import "../../../../themes/
|
1
|
+
@import "../../../../themes/theme/variable";
|
2
|
+
@import "../../../../themes/theme/mixins";
|
2
3
|
@import "../../../../themes/core/scrollbar.scss";
|
3
4
|
@import "../../../../themes/core/button.scss";
|
4
5
|
|
@@ -12,7 +13,7 @@
|
|
12
13
|
padding: 10px;
|
13
14
|
outline: none;
|
14
15
|
border: none;
|
15
|
-
background: $background-input-text;
|
16
|
+
background: theme-apply($background-input-text);
|
16
17
|
}
|
17
18
|
|
18
19
|
.mat-icon {
|
@@ -98,14 +99,14 @@
|
|
98
99
|
.related__item__content {
|
99
100
|
height: 32px;
|
100
101
|
line-height: 32px;
|
101
|
-
background-color: $related-item-background;
|
102
|
+
background-color: theme-apply($related-item-background);
|
102
103
|
max-width: 100%;
|
103
104
|
margin-bottom: 5px;
|
104
105
|
margin-left: 2.5px;
|
105
106
|
margin-right: 2.5px;
|
106
107
|
|
107
108
|
.mat-icon {
|
108
|
-
color: $related-mat-icon-color;
|
109
|
+
color: theme-apply($related-mat-icon-color);
|
109
110
|
font-size: 24px;
|
110
111
|
}
|
111
112
|
|
@@ -126,13 +127,13 @@
|
|
126
127
|
height: 450px;
|
127
128
|
overflow-y: auto;
|
128
129
|
margin-top: 12px;
|
129
|
-
|
130
|
+
|
130
131
|
&.panel__content {
|
131
132
|
height: 450px;
|
132
133
|
overflow: auto;
|
133
134
|
margin-top: 12px;
|
134
135
|
}
|
135
|
-
|
136
|
+
|
136
137
|
&.panel__content_item {
|
137
138
|
height: 350px;
|
138
139
|
overflow: auto;
|
@@ -144,7 +145,7 @@
|
|
144
145
|
font-size: 12px;
|
145
146
|
letter-spacing: 1px;
|
146
147
|
font-family: "RALEWAY";
|
147
|
-
font-weight: 600;
|
148
|
+
font-weight: 600;
|
148
149
|
display: flex;
|
149
150
|
align-items: center;
|
150
151
|
}
|
@@ -166,12 +167,12 @@
|
|
166
167
|
display: flex;
|
167
168
|
align-items: center;
|
168
169
|
min-height: 40px;
|
169
|
-
|
170
|
+
|
170
171
|
.mat-icon {
|
171
172
|
color: black(0.6);
|
172
173
|
margin-right: 17px;
|
173
174
|
min-width: fit-content;
|
174
|
-
|
175
|
+
|
175
176
|
svg {
|
176
177
|
display: block;
|
177
178
|
min-width: fit-content;
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import
|
1
|
+
@import "../../../../../themes/theme/variable";
|
2
|
+
@import "../../../../../themes/theme/mixins";
|
2
3
|
@import '../../../../../themes/core/scrollbar.scss';
|
3
4
|
@import '../../../../../themes/core/button.scss';
|
4
5
|
|
@@ -9,7 +10,7 @@
|
|
9
10
|
font-style: normal;
|
10
11
|
font-size: 16px;
|
11
12
|
line-height: 22px;
|
12
|
-
color: $popup-title-color;
|
13
|
+
color: theme-apply($popup-title-color);
|
13
14
|
}
|
14
15
|
|
15
16
|
.line__divider {
|
@@ -61,7 +62,7 @@
|
|
61
62
|
|
62
63
|
.panel__error {
|
63
64
|
height: 40px;
|
64
|
-
color: $popup-error-color;
|
65
|
+
color: theme-apply($popup-error-color);
|
65
66
|
display: flex;
|
66
67
|
flex-wrap: wrap;
|
67
68
|
align-content: center;
|
@@ -1,11 +1,12 @@
|
|
1
|
-
@import "../../../../../themes/
|
1
|
+
@import "../../../../../themes/theme/variable";
|
2
|
+
@import "../../../../../themes/theme/mixins";
|
2
3
|
@import "../../../../../themes/core/typography";
|
3
4
|
|
4
5
|
.list-risk {
|
5
6
|
font-family: "Open Sans";
|
6
7
|
font-style: normal;
|
7
8
|
font-weight: normal;
|
8
|
-
color: $default-color;
|
9
|
+
color: theme-apply($default-color);
|
9
10
|
|
10
11
|
.list-risk__title {
|
11
12
|
font-weight: 600;
|
@@ -96,7 +97,7 @@
|
|
96
97
|
background-color: #fafafa;
|
97
98
|
|
98
99
|
border-bottom: 1px solid #ddd;
|
99
|
-
color: $primary;
|
100
|
+
color: theme-apply($primary);
|
100
101
|
min-height: 48px;
|
101
102
|
border-bottom: 1px solid #ddd;
|
102
103
|
|
@@ -124,17 +125,17 @@
|
|
124
125
|
}
|
125
126
|
|
126
127
|
.label-red {
|
127
|
-
background-color: $secondary;
|
128
|
+
background-color: theme-apply($secondary);
|
128
129
|
color: white;
|
129
130
|
}
|
130
131
|
|
131
132
|
.label-yellow {
|
132
|
-
background-color: $risk-yellow;
|
133
|
+
background-color: theme-apply($risk-yellow);
|
133
134
|
color: black(0.87);
|
134
135
|
}
|
135
136
|
|
136
137
|
.label-green {
|
137
|
-
background-color: $risk-green;
|
138
|
+
background-color: theme-apply($risk-green);
|
138
139
|
color: white;
|
139
140
|
}
|
140
141
|
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import
|
1
|
+
@import "../../../../../themes/theme/variable";
|
2
|
+
@import "../../../../../themes/theme/mixins";
|
2
3
|
@import '../../../../../themes/core/typography';
|
3
4
|
|
4
5
|
.dialog-title {
|
@@ -56,7 +57,7 @@
|
|
56
57
|
font-style: normal;
|
57
58
|
text-align: left;
|
58
59
|
padding: 10px 25px;
|
59
|
-
color: $default-color;
|
60
|
+
color: theme-apply($default-color);
|
60
61
|
}
|
61
62
|
|
62
63
|
.first {
|
@@ -86,13 +87,13 @@
|
|
86
87
|
}
|
87
88
|
}
|
88
89
|
&.text-red {
|
89
|
-
color: $error;
|
90
|
+
color: theme-apply($error);
|
90
91
|
}
|
91
92
|
&.text-yellow {
|
92
|
-
color: $risk-yellow-dark;
|
93
|
+
color: theme-apply($risk-yellow-dark);
|
93
94
|
}
|
94
95
|
&.text-green {
|
95
|
-
color: $risk-green-dark;
|
96
|
+
color: theme-apply($risk-green-dark);
|
96
97
|
}
|
97
98
|
}
|
98
99
|
}
|
@@ -113,16 +114,16 @@
|
|
113
114
|
}
|
114
115
|
|
115
116
|
.label-red {
|
116
|
-
background-color: $secondary;
|
117
|
+
background-color: theme-apply($secondary);
|
117
118
|
color: white;
|
118
119
|
}
|
119
120
|
|
120
121
|
.label-yellow {
|
121
|
-
background-color: $risk-yellow;
|
122
|
+
background-color: theme-apply($risk-yellow);
|
122
123
|
color: black(0.87);
|
123
124
|
}
|
124
125
|
|
125
126
|
.label-green {
|
126
|
-
background-color: $risk-green;
|
127
|
+
background-color: theme-apply($risk-green);
|
127
128
|
color: white;
|
128
129
|
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import "../../../themes/
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
@import "../../../themes/core/typography";
|
3
4
|
|
4
5
|
.qms-rich-text {
|
@@ -40,7 +41,7 @@
|
|
40
41
|
.ck.ck-editor__editable {
|
41
42
|
&:not(.ck-editor__nested-editable).ck-focused {
|
42
43
|
border: 1px solid #c4c4c4;
|
43
|
-
border-bottom: 2px solid $primary;
|
44
|
+
border-bottom: 2px solid theme-apply($primary);
|
44
45
|
border-radius: 4px;
|
45
46
|
box-shadow: none;
|
46
47
|
background-color: black(0.08);
|
@@ -1,5 +1,5 @@
|
|
1
|
-
@import "
|
2
|
-
@import "
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
3
3
|
|
4
4
|
.mr10 {
|
5
5
|
margin-right: 10px;
|
@@ -65,7 +65,7 @@
|
|
65
65
|
font-weight: 600;
|
66
66
|
font-size: 12px;
|
67
67
|
line-height: 16px;
|
68
|
-
color: $default-color;
|
68
|
+
color: theme-apply($default-color);
|
69
69
|
}
|
70
70
|
|
71
71
|
.mat-checkbox.qms-group-options.mat-checkbox-checked {
|
@@ -105,14 +105,14 @@
|
|
105
105
|
.related__item__content {
|
106
106
|
height: 32px;
|
107
107
|
line-height: 32px;
|
108
|
-
background-color: $related-item-background;
|
108
|
+
background-color: theme-apply($related-item-background);
|
109
109
|
max-width: 100%;
|
110
110
|
margin-bottom: 5px;
|
111
111
|
margin-left: 2.5px;
|
112
112
|
margin-right: 2.5px;
|
113
113
|
|
114
114
|
.mat-icon {
|
115
|
-
color: $related-mat-icon-color;
|
115
|
+
color: theme-apply($related-mat-icon-color);
|
116
116
|
font-size: 24px;
|
117
117
|
}
|
118
118
|
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import "../../../themes/
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
@import "../../../themes/core/scrollbar.scss";
|
3
4
|
@import "../../../themes/core/button.scss";
|
4
5
|
|
@@ -12,7 +13,7 @@
|
|
12
13
|
padding: 10px;
|
13
14
|
outline: none;
|
14
15
|
border: none;
|
15
|
-
background: $background-input-text;
|
16
|
+
background: theme-apply($background-input-text);
|
16
17
|
}
|
17
18
|
|
18
19
|
.mat-icon {
|
@@ -102,14 +103,14 @@
|
|
102
103
|
.related__item__content {
|
103
104
|
height: 32px;
|
104
105
|
line-height: 32px;
|
105
|
-
background-color: $related-item-background;
|
106
|
+
background-color: theme-apply($related-item-background);
|
106
107
|
max-width: 100%;
|
107
108
|
margin-bottom: 5px;
|
108
109
|
margin-left: 2.5px;
|
109
110
|
margin-right: 2.5px;
|
110
111
|
|
111
112
|
.mat-icon {
|
112
|
-
color: $related-mat-icon-color;
|
113
|
+
color: theme-apply($related-mat-icon-color);
|
113
114
|
font-size: 24px;
|
114
115
|
}
|
115
116
|
|
@@ -135,13 +136,13 @@
|
|
135
136
|
height: 450px;
|
136
137
|
overflow-y: auto;
|
137
138
|
margin-top: 12px;
|
138
|
-
|
139
|
+
|
139
140
|
&.panel__content {
|
140
141
|
height: 450px;
|
141
142
|
overflow: auto;
|
142
143
|
margin-top: 12px;
|
143
144
|
}
|
144
|
-
|
145
|
+
|
145
146
|
&.panel__content_item {
|
146
147
|
height: 350px;
|
147
148
|
overflow: auto;
|
@@ -153,7 +154,7 @@
|
|
153
154
|
font-size: 12px;
|
154
155
|
letter-spacing: 1px;
|
155
156
|
font-family: "RALEWAY";
|
156
|
-
font-weight: 600;
|
157
|
+
font-weight: 600;
|
157
158
|
display: flex;
|
158
159
|
align-items: center;
|
159
160
|
}
|
@@ -175,12 +176,12 @@
|
|
175
176
|
display: flex;
|
176
177
|
align-items: center;
|
177
178
|
min-height: 40px;
|
178
|
-
|
179
|
+
|
179
180
|
.mat-icon {
|
180
181
|
color: black(0.6);
|
181
182
|
margin-right: 17px;
|
182
183
|
min-width: fit-content;
|
183
|
-
|
184
|
+
|
184
185
|
svg {
|
185
186
|
display: block;
|
186
187
|
min-width: fit-content;
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import "../../../themes/
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
@import "../../../themes/core/scrollbar.scss";
|
3
4
|
@import "../../../themes/core/button.scss";
|
4
5
|
|
@@ -12,7 +13,7 @@
|
|
12
13
|
padding: 10px;
|
13
14
|
outline: none;
|
14
15
|
border: none;
|
15
|
-
background: $background-input-text;
|
16
|
+
background: theme-apply($background-input-text);
|
16
17
|
}
|
17
18
|
|
18
19
|
.mat-icon {
|
@@ -98,14 +99,14 @@
|
|
98
99
|
.related__item__content {
|
99
100
|
height: 32px;
|
100
101
|
line-height: 32px;
|
101
|
-
background-color: $related-item-background;
|
102
|
+
background-color: theme-apply($related-item-background);
|
102
103
|
max-width: 100%;
|
103
104
|
margin-bottom: 5px;
|
104
105
|
margin-left: 2.5px;
|
105
106
|
margin-right: 2.5px;
|
106
107
|
|
107
108
|
.mat-icon {
|
108
|
-
color: $related-mat-icon-color;
|
109
|
+
color: theme-apply($related-mat-icon-color);
|
109
110
|
font-size: 24px;
|
110
111
|
}
|
111
112
|
|
@@ -1,7 +1,7 @@
|
|
1
|
-
@import "../../../themes/color.scss";
|
2
1
|
@import "../../../themes/core/scrollbar.scss";
|
3
2
|
@import "../../../themes/core/button.scss";
|
4
|
-
@import "../../../themes/
|
3
|
+
@import "../../../themes/theme/variable";
|
4
|
+
@import "../../../themes/theme/mixins";
|
5
5
|
|
6
6
|
.qmslib__related__popup__container {
|
7
7
|
.input__field {
|
@@ -13,7 +13,7 @@
|
|
13
13
|
padding: 10px;
|
14
14
|
outline: none;
|
15
15
|
border: none;
|
16
|
-
background: $background-input-text;
|
16
|
+
background: theme-apply($background-input-text);
|
17
17
|
}
|
18
18
|
|
19
19
|
.mat-icon {
|
@@ -99,14 +99,14 @@
|
|
99
99
|
.related__item__content {
|
100
100
|
height: 32px;
|
101
101
|
line-height: 32px;
|
102
|
-
background-color: $related-item-background;
|
102
|
+
background-color: theme-apply($related-item-background);
|
103
103
|
max-width: 100%;
|
104
104
|
margin-bottom: 5px;
|
105
105
|
margin-left: 2.5px;
|
106
106
|
margin-right: 2.5px;
|
107
107
|
|
108
108
|
.mat-icon {
|
109
|
-
color: $related-mat-icon-color;
|
109
|
+
color: theme-apply($related-mat-icon-color);
|
110
110
|
font-size: 24px;
|
111
111
|
}
|
112
112
|
|
@@ -127,13 +127,13 @@
|
|
127
127
|
height: 450px;
|
128
128
|
overflow-y: auto;
|
129
129
|
margin-top: 12px;
|
130
|
-
|
130
|
+
|
131
131
|
&.panel__content {
|
132
132
|
height: 450px;
|
133
133
|
overflow: auto;
|
134
134
|
margin-top: 12px;
|
135
135
|
}
|
136
|
-
|
136
|
+
|
137
137
|
&.panel__content_item {
|
138
138
|
height: 350px;
|
139
139
|
overflow: auto;
|
@@ -145,7 +145,7 @@
|
|
145
145
|
font-size: 12px;
|
146
146
|
letter-spacing: 1px;
|
147
147
|
font-family: "RALEWAY";
|
148
|
-
font-weight: 600;
|
148
|
+
font-weight: 600;
|
149
149
|
display: flex;
|
150
150
|
align-items: center;
|
151
151
|
}
|
@@ -167,12 +167,12 @@
|
|
167
167
|
display: flex;
|
168
168
|
align-items: center;
|
169
169
|
min-height: 40px;
|
170
|
-
|
170
|
+
|
171
171
|
.mat-icon {
|
172
172
|
color: black(0.6);
|
173
173
|
margin-right: 17px;
|
174
174
|
min-width: fit-content;
|
175
|
-
|
175
|
+
|
176
176
|
svg {
|
177
177
|
display: block;
|
178
178
|
min-width: fit-content;
|
@@ -187,7 +187,7 @@
|
|
187
187
|
width: 100%;
|
188
188
|
|
189
189
|
.select-one-checked {
|
190
|
-
color: $primary;
|
190
|
+
color: theme-apply($primary);
|
191
191
|
}
|
192
192
|
}
|
193
193
|
}
|
@@ -310,4 +310,4 @@ cdk-virtual-scroll-viewport {
|
|
310
310
|
.related-viewport {
|
311
311
|
min-height: 300px;
|
312
312
|
}
|
313
|
-
}
|
313
|
+
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
|
3
4
|
.substance-conflict-container {
|
4
5
|
.content {
|
@@ -8,12 +9,12 @@
|
|
8
9
|
}
|
9
10
|
|
10
11
|
.conflict {
|
11
|
-
background-color: $background-conflict-info;
|
12
|
+
background-color: theme-apply($background-conflict-info);
|
12
13
|
padding: 15px;
|
13
14
|
display: flex;
|
14
15
|
font-size: 14px;
|
15
16
|
max-width: 570px;
|
16
|
-
|
17
|
+
|
17
18
|
.icon {
|
18
19
|
margin-right: 15px;
|
19
20
|
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
@import "../../../themes/
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
@import "../../../themes/core/typography";
|
3
4
|
|
4
5
|
$heightAction: 46px;
|
@@ -84,7 +85,7 @@ button.btn-more {
|
|
84
85
|
display: none;
|
85
86
|
|
86
87
|
mat-icon {
|
87
|
-
color: $primary;
|
88
|
+
color: theme-apply($primary);
|
88
89
|
vertical-align: middle;
|
89
90
|
}
|
90
91
|
}
|
@@ -148,4 +149,4 @@ button.btn-more {
|
|
148
149
|
.block4 {
|
149
150
|
display: none;
|
150
151
|
}
|
151
|
-
}
|
152
|
+
}
|
@@ -1,6 +1,8 @@
|
|
1
|
-
@import "../../../themes/
|
1
|
+
@import "../../../themes/theme/variable";
|
2
|
+
@import "../../../themes/theme/mixins";
|
2
3
|
@import "../../../themes/core/typography";
|
3
4
|
@import "../list/list-base";
|
5
|
+
|
4
6
|
.qms-tooltip-container{
|
5
7
|
background: #FAFAFA;
|
6
8
|
border-radius: 0.25rem;
|