ros.grant.common 2.0.1532 → 2.0.1534
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/Shared/Styles/Themes/VTB/VTBThemeTokenVariables.less +1 -1
- package/Shared/Styles/Themes/_Fonts/VTBGroup.less +1 -1
- package/Shared/Styles/Tokens/colorThemeAbsolute.less +1 -1
- package/Shared/Styles/Tokens/colorThemeBlackGreen.less +1 -1
- package/Shared/Styles/Tokens/colorThemeBlue.less +1 -1
- package/Shared/Styles/Tokens/colorThemeBrown.less +1 -1
- package/Shared/Styles/Tokens/colorThemeDarkGray.less +1 -1
- package/Shared/Styles/Tokens/colorThemeDefault.less +1 -1
- package/Shared/Styles/Tokens/colorThemeMinfin.less +1 -1
- package/Shared/Styles/Tokens/colorThemePink.less +1 -1
- package/Shared/Styles/Tokens/colorThemeRed.less +1 -1
- package/Shared/Styles/Tokens/colorThemeTurquoise.less +1 -1
- package/Shared/Styles/Tokens/{colorThemeVtb.less → colorThemeVTB.less} +1 -1
- package/Shared/Styles/Tokens/colorThemeYellow.less +1 -1
- package/Shared/Styles/Tokens/generalThemes.less +1 -1
- package/Shared/Styles/Tokens/typeThemeOpenMontserrat.less +1 -1
- package/Shared/Styles/Tokens/typeThemeProximaNova.less +1 -1
- package/Shared/Styles/Tokens/typeThemePtSans.less +1 -1
- package/Shared/Styles/Tokens/typeThemeTenor.less +1 -1
- package/Shared/Styles/Tokens/{typeThemeVtb.less → typeThemeVTB.less} +1 -1
- package/Shared/Styles/myrtex-lib/components/modal/modal-body.less +7 -0
- package/Shared/Styles/myrtex-lib/components/modal/modal-colors.less +21 -4
- package/Shared/Styles/myrtex-lib/components/modal/modal-header.less +11 -0
- package/package.json +1 -1
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
padding: 16px 24px;
|
|
3
3
|
flex-grow: 1;
|
|
4
4
|
|
|
5
|
+
.mrx-modal__back {
|
|
6
|
+
font-family: var(--body-md-font-family);
|
|
7
|
+
font-weight: var(--body-md-font-weight);
|
|
8
|
+
line-height: var(--body-md-line-height);
|
|
9
|
+
font-size: var(--body-md-font-size);
|
|
10
|
+
}
|
|
11
|
+
|
|
5
12
|
&__message {
|
|
6
13
|
color: var(--neutral-text-primary);
|
|
7
14
|
font-family: var(--body-md-font-family);
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
background: var(--brand-bg-primary-default);
|
|
5
5
|
color: var(--neutral-icon-inverse);
|
|
6
6
|
|
|
7
|
-
.icon-close, .icon-arrow-expand, .icon-arrow-collapse {
|
|
7
|
+
.icon-close, .icon-arrow-expand, .icon-arrow-collapse, .icon-arrow-left {
|
|
8
8
|
color: var(--neutral-icon-inverse);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
background: var(--neutral-bg-island-default);
|
|
16
16
|
color: var(--neutral-text-primary);
|
|
17
17
|
|
|
18
|
-
.icon-close, .icon-arrow-expand, .icon-arrow-collapse {
|
|
18
|
+
.icon-close, .icon-arrow-expand, .icon-arrow-collapse, .icon-arrow-left {
|
|
19
19
|
color: var(--neutral-icon-default);
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
background: var(--system-bg-controls-attention-default);
|
|
27
27
|
color: var(--neutral-icon-inverse);
|
|
28
28
|
|
|
29
|
-
.icon-close, .icon-arrow-expand, .icon-arrow-collapse {
|
|
29
|
+
.icon-close, .icon-arrow-expand, .icon-arrow-collapse, .icon-arrow-left {
|
|
30
30
|
color: var(--neutral-icon-inverse);
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -37,9 +37,26 @@
|
|
|
37
37
|
background: var(--system-bg-controls-negative-default);
|
|
38
38
|
color: var(--neutral-icon-inverse);
|
|
39
39
|
|
|
40
|
-
.icon-close, .icon-arrow-expand, .icon-arrow-collapse {
|
|
40
|
+
.icon-close, .icon-arrow-expand, .icon-arrow-collapse, .icon-arrow-left {
|
|
41
41
|
color: var(--neutral-icon-inverse);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
|
+
|
|
46
|
+
.mrx-modal__back {
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
color: var(--brand-text-controls-default);
|
|
49
|
+
|
|
50
|
+
.mrx-icon {
|
|
51
|
+
color: var(--brand-text-controls-default);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&:hover {
|
|
55
|
+
color: var(--brand-text-controls-hover);
|
|
56
|
+
|
|
57
|
+
.mrx-icon {
|
|
58
|
+
color: var(--brand-text-controls-hover);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
45
62
|
}
|
package/package.json
CHANGED