@policystudio/policy-studio-ui-vue 1.0.26 → 1.0.27
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/dist/css/psui_styles.css
CHANGED
|
@@ -16171,6 +16171,12 @@ html {
|
|
|
16171
16171
|
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16172
16172
|
}
|
|
16173
16173
|
|
|
16174
|
+
.psui-el-dialog.theme-informative .psui-el-dialog-message {
|
|
16175
|
+
--text-opacity: 1;
|
|
16176
|
+
color: #318FAC;
|
|
16177
|
+
color: rgba(49, 143, 172, var(--text-opacity));
|
|
16178
|
+
}
|
|
16179
|
+
|
|
16174
16180
|
.psui-el-dialog.theme-success {
|
|
16175
16181
|
--bg-opacity: 1;
|
|
16176
16182
|
background-color: #DEF8E8;
|
|
@@ -16180,6 +16186,12 @@ html {
|
|
|
16180
16186
|
color: rgba(68, 160, 106, var(--text-opacity));
|
|
16181
16187
|
}
|
|
16182
16188
|
|
|
16189
|
+
.psui-el-dialog.theme-success .psui-el-dialog-message {
|
|
16190
|
+
--text-opacity: 1;
|
|
16191
|
+
color: #44A06A;
|
|
16192
|
+
color: rgba(68, 160, 106, var(--text-opacity));
|
|
16193
|
+
}
|
|
16194
|
+
|
|
16183
16195
|
.psui-el-dialog.theme-alert {
|
|
16184
16196
|
--bg-opacity: 1;
|
|
16185
16197
|
background-color: #FDF3E3;
|
|
@@ -16189,6 +16201,12 @@ html {
|
|
|
16189
16201
|
color: rgba(184, 115, 5, var(--text-opacity));
|
|
16190
16202
|
}
|
|
16191
16203
|
|
|
16204
|
+
.psui-el-dialog.theme-alert .psui-el-dialog-message {
|
|
16205
|
+
--text-opacity: 1;
|
|
16206
|
+
color: #B87305;
|
|
16207
|
+
color: rgba(184, 115, 5, var(--text-opacity));
|
|
16208
|
+
}
|
|
16209
|
+
|
|
16192
16210
|
.psui-el-tab-header {
|
|
16193
16211
|
display: flex;
|
|
16194
16212
|
/* Layout Standard */
|
package/package.json
CHANGED
|
@@ -57,15 +57,24 @@
|
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
&.theme-informative {
|
|
60
|
-
@apply psui-bg-blue-20 psui-text-blue-60;
|
|
60
|
+
@apply psui-bg-blue-20 psui-text-blue-60;
|
|
61
|
+
.psui-el-dialog-message {
|
|
62
|
+
@apply psui-text-blue-60;
|
|
63
|
+
}
|
|
61
64
|
}
|
|
62
65
|
|
|
63
66
|
&.theme-success {
|
|
64
67
|
@apply psui-bg-green-10 psui-text-green-70;
|
|
68
|
+
.psui-el-dialog-message {
|
|
69
|
+
@apply psui-text-green-70;
|
|
70
|
+
}
|
|
65
71
|
}
|
|
66
72
|
|
|
67
73
|
&.theme-alert {
|
|
68
74
|
@apply psui-bg-yellow-10 psui-text-yellow-70;
|
|
75
|
+
.psui-el-dialog-message {
|
|
76
|
+
@apply psui-text-yellow-70;
|
|
77
|
+
}
|
|
69
78
|
}
|
|
70
79
|
}
|
|
71
80
|
}
|