@megafon/ui-core 2.2.0 → 3.0.0-beta.3

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 (120) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/dist/es/colors/ColorItem/ColorItem.css +1 -8
  3. package/dist/es/colors/ColorItem/ColorItem.js +1 -1
  4. package/dist/es/colors/Colors.css +3 -11
  5. package/dist/es/colors/Colors.js +51 -4
  6. package/dist/es/colors/colorsData.js +78 -71
  7. package/dist/es/components/Accordion/Accordion.css +6 -12
  8. package/dist/es/components/Accordion/Accordion.d.ts +1 -1
  9. package/dist/es/components/Accordion/Accordion.js +10 -5
  10. package/dist/es/components/Banner/Banner.css +2 -9
  11. package/dist/es/components/Banner/BannerDot.css +4 -11
  12. package/dist/es/components/Button/Button.css +83 -74
  13. package/dist/es/components/Calendar/Calendar.css +0 -7
  14. package/dist/es/components/Calendar/components/Day/Day.css +10 -17
  15. package/dist/es/components/Calendar/components/Month/Month.css +3 -10
  16. package/dist/es/components/Calendar/components/Month/Month.js +21 -5
  17. package/dist/es/components/Carousel/Carousel.css +4 -11
  18. package/dist/es/components/Checkbox/Checkbox.css +18 -25
  19. package/dist/es/components/Checkbox/Checkbox.d.ts +3 -25
  20. package/dist/es/components/Checkbox/Checkbox.js +71 -89
  21. package/dist/es/components/ContentArea/ContentArea.css +61 -20
  22. package/dist/es/components/ContentArea/ContentArea.d.ts +0 -1
  23. package/dist/es/components/ContentArea/ContentArea.js +0 -1
  24. package/dist/es/components/Counter/Counter.css +61 -11
  25. package/dist/es/components/Grid/Grid.css +47 -0
  26. package/dist/es/components/Grid/GridColumn.css +0 -7
  27. package/dist/es/components/Header/Header.css +8 -12
  28. package/dist/es/components/Header/Header.d.ts +1 -1
  29. package/dist/es/components/Header/Header.js +2 -2
  30. package/dist/es/components/InputLabel/InputLabel.css +0 -7
  31. package/dist/es/components/List/List.css +9 -13
  32. package/dist/es/components/List/List.d.ts +1 -1
  33. package/dist/es/components/List/List.js +2 -2
  34. package/dist/es/components/List/ListItem.css +0 -7
  35. package/dist/es/components/Logo/Logo.css +0 -7
  36. package/dist/es/components/Logo/Logo.js +4 -8
  37. package/dist/es/components/NavArrow/NavArrow.css +5 -12
  38. package/dist/es/components/Notification/Notification.css +88 -24
  39. package/dist/es/components/Pagination/Pagination.css +0 -7
  40. package/dist/es/components/Pagination/components/PaginationButton/PaginationButton.css +56 -9
  41. package/dist/es/components/Pagination/components/PaginationNavigation/PaginationNavigation.css +47 -0
  42. package/dist/es/components/Paragraph/Paragraph.css +7 -17
  43. package/dist/es/components/Paragraph/Paragraph.d.ts +0 -1
  44. package/dist/es/components/Paragraph/Paragraph.js +1 -2
  45. package/dist/es/components/Preloader/Preloader.css +5 -12
  46. package/dist/es/components/RadioButton/RadioButton.css +7 -14
  47. package/dist/es/components/Search/Search.css +20 -25
  48. package/dist/es/components/Select/Select.css +29 -35
  49. package/dist/es/components/Select/Select.d.ts +1 -1
  50. package/dist/es/components/Switcher/Switcher.css +18 -28
  51. package/dist/es/components/Tabs/Tabs.css +30 -37
  52. package/dist/es/components/TextField/TextField.css +27 -33
  53. package/dist/es/components/TextLink/TextLink.css +10 -14
  54. package/dist/es/components/TextLink/TextLink.d.ts +1 -1
  55. package/dist/es/components/TextLink/TextLink.js +1 -1
  56. package/dist/es/components/Tile/Tile.css +2 -8
  57. package/dist/es/components/Tooltip/Tooltip.css +1 -8
  58. package/dist/es/components/Tooltip/Tooltip.d.ts +3 -2
  59. package/dist/es/components/Tooltip/Tooltip.js +2 -9
  60. package/dist/lib/colors/ColorItem/ColorItem.css +1 -8
  61. package/dist/lib/colors/ColorItem/ColorItem.js +1 -1
  62. package/dist/lib/colors/Colors.css +3 -11
  63. package/dist/lib/colors/Colors.js +53 -4
  64. package/dist/lib/colors/colorsData.js +78 -71
  65. package/dist/lib/components/Accordion/Accordion.css +6 -12
  66. package/dist/lib/components/Accordion/Accordion.d.ts +1 -1
  67. package/dist/lib/components/Accordion/Accordion.js +9 -4
  68. package/dist/lib/components/Banner/Banner.css +2 -9
  69. package/dist/lib/components/Banner/BannerDot.css +4 -11
  70. package/dist/lib/components/Button/Button.css +83 -74
  71. package/dist/lib/components/Calendar/Calendar.css +0 -7
  72. package/dist/lib/components/Calendar/components/Day/Day.css +10 -17
  73. package/dist/lib/components/Calendar/components/Month/Month.css +3 -10
  74. package/dist/lib/components/Calendar/components/Month/Month.js +20 -4
  75. package/dist/lib/components/Carousel/Carousel.css +4 -11
  76. package/dist/lib/components/Checkbox/Checkbox.css +18 -25
  77. package/dist/lib/components/Checkbox/Checkbox.d.ts +3 -25
  78. package/dist/lib/components/Checkbox/Checkbox.js +76 -124
  79. package/dist/lib/components/ContentArea/ContentArea.css +61 -20
  80. package/dist/lib/components/ContentArea/ContentArea.d.ts +0 -1
  81. package/dist/lib/components/ContentArea/ContentArea.js +0 -1
  82. package/dist/lib/components/Counter/Counter.css +61 -11
  83. package/dist/lib/components/Grid/Grid.css +47 -0
  84. package/dist/lib/components/Grid/GridColumn.css +0 -7
  85. package/dist/lib/components/Header/Header.css +8 -12
  86. package/dist/lib/components/Header/Header.d.ts +1 -1
  87. package/dist/lib/components/Header/Header.js +2 -2
  88. package/dist/lib/components/InputLabel/InputLabel.css +0 -7
  89. package/dist/lib/components/List/List.css +9 -13
  90. package/dist/lib/components/List/List.d.ts +1 -1
  91. package/dist/lib/components/List/List.js +2 -2
  92. package/dist/lib/components/List/ListItem.css +0 -7
  93. package/dist/lib/components/Logo/Logo.css +0 -7
  94. package/dist/lib/components/Logo/Logo.js +4 -8
  95. package/dist/lib/components/NavArrow/NavArrow.css +5 -12
  96. package/dist/lib/components/Notification/Notification.css +88 -24
  97. package/dist/lib/components/Pagination/Pagination.css +0 -7
  98. package/dist/lib/components/Pagination/components/PaginationButton/PaginationButton.css +56 -9
  99. package/dist/lib/components/Pagination/components/PaginationNavigation/PaginationNavigation.css +47 -0
  100. package/dist/lib/components/Paragraph/Paragraph.css +7 -17
  101. package/dist/lib/components/Paragraph/Paragraph.d.ts +0 -1
  102. package/dist/lib/components/Paragraph/Paragraph.js +1 -2
  103. package/dist/lib/components/Preloader/Preloader.css +5 -12
  104. package/dist/lib/components/RadioButton/RadioButton.css +7 -14
  105. package/dist/lib/components/Search/Search.css +20 -25
  106. package/dist/lib/components/Select/Select.css +29 -35
  107. package/dist/lib/components/Select/Select.d.ts +1 -1
  108. package/dist/lib/components/Switcher/Switcher.css +18 -28
  109. package/dist/lib/components/Tabs/Tabs.css +30 -37
  110. package/dist/lib/components/TextField/TextField.css +27 -33
  111. package/dist/lib/components/TextLink/TextLink.css +10 -14
  112. package/dist/lib/components/TextLink/TextLink.d.ts +1 -1
  113. package/dist/lib/components/TextLink/TextLink.js +1 -1
  114. package/dist/lib/components/Tile/Tile.css +2 -8
  115. package/dist/lib/components/Tooltip/Tooltip.css +1 -8
  116. package/dist/lib/components/Tooltip/Tooltip.d.ts +3 -2
  117. package/dist/lib/components/Tooltip/Tooltip.js +1 -8
  118. package/package.json +4 -4
  119. package/styles/base.css +54 -0
  120. package/styles/base.less +61 -73
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-list {
9
2
  font-family: inherit;
10
3
  font-size: 15px;
@@ -25,23 +18,26 @@ h5 {
25
18
  .mfui-list_h-align_right {
26
19
  text-align: right;
27
20
  }
21
+ .mfui-list_color_default {
22
+ color: var(--content);
23
+ }
28
24
  .mfui-list_color_black {
29
- color: #333333;
25
+ color: var(--stcBlack);
30
26
  }
31
27
  .mfui-list_color_white {
32
- color: #FFFFFF;
28
+ color: var(--stcWhite);
33
29
  }
34
30
  .mfui-list_color_gray {
35
- color: #D8D8D8;
31
+ color: var(--spbSky2);
36
32
  }
37
33
  .mfui-list_color_green {
38
- color: #00B956;
34
+ color: var(--brandGreen);
39
35
  }
40
36
  .mfui-list_color_purple {
41
- color: #731982;
37
+ color: var(--brandPurple);
42
38
  }
43
39
  .mfui-list_color_red {
44
- color: #F62434;
40
+ color: var(--fury);
45
41
  }
46
42
  .mfui-list_color_inherit {
47
43
  color: inherit;
@@ -8,7 +8,7 @@ export interface IListProps {
8
8
  /** Жирность шрифта */
9
9
  weight?: 'light' | 'regular' | 'bold';
10
10
  /** Цвет */
11
- color?: 'black' | 'white' | 'gray' | 'green' | 'purple' | 'red' | 'inherit';
11
+ color?: 'default' | 'black' | 'white' | 'gray' | 'green' | 'purple' | 'red' | 'inherit';
12
12
  /** Дополнительный класс корневого элемента */
13
13
  className?: string;
14
14
  }
@@ -23,7 +23,7 @@ var List = function List(_ref) {
23
23
  var _ref$as = _ref.as,
24
24
  as = _ref$as === void 0 ? 'ul' : _ref$as,
25
25
  _ref$color = _ref.color,
26
- color = _ref$color === void 0 ? 'black' : _ref$color,
26
+ color = _ref$color === void 0 ? 'default' : _ref$color,
27
27
  _ref$weight = _ref.weight,
28
28
  weight = _ref$weight === void 0 ? 'regular' : _ref$weight,
29
29
  hAlign = _ref.hAlign,
@@ -44,7 +44,7 @@ List.propTypes = {
44
44
  as: PropTypes.oneOf(['ul', 'ol']),
45
45
  hAlign: PropTypes.oneOf(['center', 'right']),
46
46
  weight: PropTypes.oneOf(['light', 'regular', 'bold']),
47
- color: PropTypes.oneOf(['black', 'white', 'gray', 'green', 'purple', 'red', 'inherit']),
47
+ color: PropTypes.oneOf(['default', 'black', 'white', 'gray', 'green', 'purple', 'red', 'inherit']),
48
48
  className: PropTypes.string
49
49
  };
50
50
  var _default = List;
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-list-item {
9
2
  margin-bottom: 12px;
10
3
  }
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-logo {
9
2
  display: inline-block;
10
3
  vertical-align: top;
@@ -33,10 +33,8 @@ var greenHorizontalImg = function greenHorizontalImg(props) {
33
33
  }, /*#__PURE__*/React.createElement("path", {
34
34
  d: "M30.3.7v27.8c0 1.3-1 2.2-2.2 2.2h-3.3c-.2 0-.3.2-.3.3v23.3c.8 0 1.6.2 2.5.2 14.9 0 27-12.1 27-27C54 13.8 43.7 2.3 30.3.7zm-.6 41.6c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3.2 1.8-1.4 3.3-3.3 3.3zm7.9 0c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.3 3.3-3.3 3.3zm8 0c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.4 3.3-3.3 3.3z"
35
35
  }), /*#__PURE__*/React.createElement("path", {
36
- d: "M27 .6C12.1.6 0 12.7 0 27.6c0 13.1 9.1 23.8 21.3 26.3V29.6c0-1.1 1-2 2-2.2H26.6c.2 0 .3-.2.3-.3L27 .6zm-5.2 22.2c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.5 3.3-3.3 3.3z"
37
- }), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
38
- d: "M297.3 15.3v10.2h-13.6V15.3h-6.9v27h6.9V31.4h13.6v10.9h6.7v-27zM184.9 18.4c-1.1-2.4-3.3-3.7-5.5-3.7s-4.5 1.3-5.5 3.7l-10.9 24h7.2l2.4-5.7h14l2.4 5.7h7.2l-11.3-24zm-10.4 12.9l4.1-9.9c.2-.3.3-.3.5-.3s.5 0 .5.3l4.1 9.9h-9.2zM104.5 10.5c-3.2 0-5.2 1.7-6.7 5.1l-8.7 20.3-8.8-20.4c-1.4-3.3-3.5-5.1-6.7-5.1-3 0-6 2-6 6.7v25.1h6.7V18l8.9 20.1c1.1 2.9 3.2 4.6 5.9 4.6 2.9 0 4.8-1.7 5.9-4.6l8.9-20.1v24.5h6.7V17.4c-.1-4.7-3.1-6.9-6.1-6.9zM122.4 36.6c-.3 0-.7-.3-.7-.7v-4.8h16.8v-5.5h-16.8v-4.1c0-.3.3-.7.7-.7h16.7v-5.7h-20c-2.4 0-4 1.9-4 4V38c0 2 1.7 4 4 4h20v-5.7h-16.7v.3zM150.4 42.3V21.7c0-.3.3-.7.7-.7h16.7v-5.7h-20c-2.4 0-4 1.9-4 4v22.9l6.6.1zM272.4 28.9c0-9.4-4.1-13.8-14.3-13.8h-2.4c-10.2 0-14.3 4.5-14.3 13.8 0 9.2 4.1 13.8 14.3 13.8h2.2c10.4-.2 14.5-4.6 14.5-13.8zM257.9 37h-2.2c-5.5 0-7.8-2.5-7.8-8.1 0-5.4 1.9-8.1 7.8-8.1h2.2c5.7 0 7.8 2.7 7.8 8.1 0 5.5-2.1 8.1-7.8 8.1zM222.7 11.1h-13.4c-10 0-14 5.1-14 13.8 0 1.4.2 2.7.3 3.8 1.1 6.2 4.8 10 14.1 10h3v3.5h6.7v-3.5h2.9c9.4 0 13.1-3.8 14.1-10 .2-1.1.3-2.4.3-3.8-.1-8.7-4.2-13.8-14-13.8zm-10.2 22h-3c-4.6 0-6.2-1.7-7.2-4.5-.3-1-.3-2.4-.3-3.8 0-5.7 2.7-8.1 6.5-8.1h4.1v16.4h-.1zm17.2-4.2c-1 2.7-2.7 4.5-7.2 4.5h-3V16.9h4.1c3.8 0 6.5 2.4 6.5 8.1-.1 1.5-.1 2.7-.4 3.9z"
39
- }))));
36
+ d: "M27 .6C12.1.6 0 12.7 0 27.6c0 13.1 9.1 23.8 21.3 26.3V29.6c0-1.1 1-2 2-2.2h3.3c.2 0 .3-.2.3-.3L27 .6zm-5.2 22.2c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.5 3.3-3.3 3.3zm275.5-7.5v10.2h-13.6V15.3h-6.9v27h6.9V31.4h13.6v10.9h6.7v-27zm-112.4 3.1c-1.1-2.4-3.3-3.7-5.5-3.7s-4.5 1.3-5.5 3.7l-10.9 24h7.2l2.4-5.7h14l2.4 5.7h7.2l-11.3-24zm-10.4 12.9l4.1-9.9c.2-.3.3-.3.5-.3s.5 0 .5.3l4.1 9.9h-9.2zm-70-20.8c-3.2 0-5.2 1.7-6.7 5.1l-8.7 20.3-8.8-20.4c-1.4-3.3-3.5-5.1-6.7-5.1-3 0-6 2-6 6.7v25.1h6.7V18l8.9 20.1c1.1 2.9 3.2 4.6 5.9 4.6 2.9 0 4.8-1.7 5.9-4.6l8.9-20.1v24.5h6.7V17.4c-.1-4.7-3.1-6.9-6.1-6.9zm17.9 26.1c-.3 0-.7-.3-.7-.7v-4.8h16.8v-5.5h-16.8v-4.1c0-.3.3-.7.7-.7h16.7v-5.7h-20c-2.4 0-4 1.9-4 4V38c0 2 1.7 4 4 4h20v-5.7h-16.7v.3zm28 5.7V21.7c0-.3.3-.7.7-.7h16.7v-5.7h-20c-2.4 0-4 1.9-4 4v22.9l6.6.1zm122-13.4c0-9.4-4.1-13.8-14.3-13.8h-2.4c-10.2 0-14.3 4.5-14.3 13.8 0 9.2 4.1 13.8 14.3 13.8h2.2c10.4-.2 14.5-4.6 14.5-13.8zM257.9 37h-2.2c-5.5 0-7.8-2.5-7.8-8.1 0-5.4 1.9-8.1 7.8-8.1h2.2c5.7 0 7.8 2.7 7.8 8.1 0 5.5-2.1 8.1-7.8 8.1zm-35.2-25.9h-13.4c-10 0-14 5.1-14 13.8 0 1.4.2 2.7.3 3.8 1.1 6.2 4.8 10 14.1 10h3v3.5h6.7v-3.5h2.9c9.4 0 13.1-3.8 14.1-10 .2-1.1.3-2.4.3-3.8-.1-8.7-4.2-13.8-14-13.8zm-10.2 22h-3c-4.6 0-6.2-1.7-7.2-4.5-.3-1-.3-2.4-.3-3.8 0-5.7 2.7-8.1 6.5-8.1h4.1v16.4h-.1zm17.2-4.2c-1 2.7-2.7 4.5-7.2 4.5h-3V16.9h4.1c3.8 0 6.5 2.4 6.5 8.1-.1 1.5-.1 2.7-.4 3.9z"
37
+ })));
40
38
  };
41
39
 
42
40
  var greenVerticalImg = function greenVerticalImg(props) {
@@ -50,10 +48,8 @@ var greenVerticalImg = function greenVerticalImg(props) {
50
48
  }, /*#__PURE__*/React.createElement("path", {
51
49
  d: "M-124.9 372.3v32.4c0 1.4-1.2 2.5-2.6 2.5h-3.9c-.2 0-.3.2-.3.3v27.2c1 .1 1.9.1 2.9.1 17.4 0 31.5-14.1 31.5-31.5 0-15.8-12-29.1-27.6-31zm-.6 48.4c-2.2 0-3.9-1.8-3.9-3.9 0-2.2 1.8-3.9 3.9-3.9 2.2 0 3.9 1.8 3.9 3.9 0 2.2-1.8 3.9-3.9 3.9zm9.2 0c-2.2 0-3.9-1.8-3.9-3.9 0-2.2 1.8-3.9 3.9-3.9 2.2 0 3.9 1.8 3.9 3.9 0 2.2-1.7 3.9-3.9 3.9zm9.2 0c-2.2 0-3.9-1.8-3.9-3.9 0-2.2 1.8-3.9 3.9-3.9s3.9 1.8 3.9 3.9c0 2.2-1.7 3.9-3.9 3.9z"
52
50
  }), /*#__PURE__*/React.createElement("path", {
53
- d: "M-128.8 372.1c-17.4 0-31.5 14.1-31.5 31.5 0 15.1 10.6 27.7 24.8 30.8v-28.2c0-1.4 1.1-2.5 2.5-2.5h4c.2 0 .3-.1.3-.3v-31.1l-.1-.2zm-6 25.9c-2.2 0-3.9-1.8-3.9-3.9 0-2.2 1.8-3.9 3.9-3.9s3.9 1.8 3.9 3.9c0 2.2-1.7 3.9-3.9 3.9z"
54
- }), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
55
- d: "M-63.6 453.5v6h-8v-6h-3.9v15.7h3.9v-6.3h8v6.3h3.9v-15.7zM-129.1 455.3c-.7-1.4-2-2.1-3.2-2.1-1.3 0-2.6.7-3.2 2.1l-6.4 13.9h4.2l1.4-3.3h8.1l1.4 3.3h4.2l-6.5-13.9zm-5.9 7.5l2.4-5.7c.1-.2.2-.2.3-.2.1 0 .2 0 .3.2l2.4 5.7h-5.4zM-175.8 450.7c-1.8 0-3 1-3.9 3l-5.1 11.8-5.1-11.8c-.9-2-2-3-3.9-3-1.7 0-3.5 1.2-3.5 3.9v14.6h3.9V455l5.2 11.7c.7 1.6 1.8 2.7 3.4 2.7 1.6 0 2.7-1 3.4-2.7l5.2-11.7v14.2h3.9v-14.6c0-2.7-1.8-3.9-3.5-3.9zM-165.4 465.9c-.2 0-.3-.2-.3-.3v-2.8h9.8v-3.2h-9.8v-2.4c0-.2.1-.3.3-.3h9.7v-3.3h-11.6c-1.4 0-2.3 1.1-2.3 2.3v11c0 1.2 1 2.3 2.3 2.3h11.6v-3.3h-9.7zM-149.1 469.2v-12c0-.2.1-.3.3-.3h9.7v-3.3h-11.6c-1.4 0-2.3 1.1-2.3 2.3v13.3h3.9zM-78.1 461.4c0-5.5-2.4-8-8.3-8h-1.4c-5.9 0-8.3 2.6-8.3 8s2.4 8 8.3 8h1.3c5.9 0 8.4-2.6 8.4-8zm-8.4 4.7h-1.3c-3.3 0-4.5-1.5-4.5-4.8 0-3.2 1.1-4.7 4.5-4.7h1.3c3.3 0 4.5 1.6 4.5 4.7 0 3.3-1.3 4.8-4.5 4.8zM-107.1 451.1h-7.8c-5.8 0-8.1 2.9-8.1 8.1 0 .8 0 1.5.2 2.2.6 3.6 2.7 5.9 8.2 5.9h1.7v2h3.9v-2h1.7c5.4 0 7.6-2.2 8.2-5.9.1-.7.2-1.4.2-2.2-.1-5.2-2.4-8.1-8.2-8.1zm-5.8 12.8h-1.8c-2.7 0-3.6-1-4.2-2.5-.2-.6-.2-1.4-.2-2.2 0-3.3 1.5-4.8 3.8-4.8h2.4v9.5zm9.9-2.5c-.6 1.6-1.5 2.5-4.2 2.5h-1.8v-9.5h2.4c2.3 0 3.8 1.4 3.8 4.8 0 .8 0 1.6-.2 2.2z"
56
- }))));
51
+ d: "M-128.8 372.1c-17.4 0-31.5 14.1-31.5 31.5 0 15.1 10.6 27.7 24.8 30.8v-28.2c0-1.4 1.1-2.5 2.5-2.5h4c.2 0 .3-.1.3-.3v-31.1l-.1-.2zm-6 25.9c-2.2 0-3.9-1.8-3.9-3.9 0-2.2 1.8-3.9 3.9-3.9s3.9 1.8 3.9 3.9c0 2.2-1.7 3.9-3.9 3.9zm71.2 55.5v6h-8v-6h-3.9v15.7h3.9v-6.3h8v6.3h3.9v-15.7zm-65.5 1.8c-.7-1.4-2-2.1-3.2-2.1-1.3 0-2.6.7-3.2 2.1l-6.4 13.9h4.2l1.4-3.3h8.1l1.4 3.3h4.2l-6.5-13.9zm-5.9 7.5l2.4-5.7c.1-.2.2-.2.3-.2.1 0 .2 0 .3.2l2.4 5.7h-5.4zm-40.8-12.1c-1.8 0-3 1-3.9 3l-5.1 11.8-5.1-11.8c-.9-2-2-3-3.9-3-1.7 0-3.5 1.2-3.5 3.9v14.6h3.9V455l5.2 11.7c.7 1.6 1.8 2.7 3.4 2.7 1.6 0 2.7-1 3.4-2.7l5.2-11.7v14.2h3.9v-14.6c0-2.7-1.8-3.9-3.5-3.9zm10.4 15.2c-.2 0-.3-.2-.3-.3v-2.8h9.8v-3.2h-9.8v-2.4c0-.2.1-.3.3-.3h9.7v-3.3h-11.6c-1.4 0-2.3 1.1-2.3 2.3v11c0 1.2 1 2.3 2.3 2.3h11.6v-3.3h-9.7zm16.3 3.3v-12c0-.2.1-.3.3-.3h9.7v-3.3h-11.6c-1.4 0-2.3 1.1-2.3 2.3v13.3h3.9zm71-7.8c0-5.5-2.4-8-8.3-8h-1.4c-5.9 0-8.3 2.6-8.3 8s2.4 8 8.3 8h1.3c5.9 0 8.4-2.6 8.4-8zm-8.4 4.7h-1.3c-3.3 0-4.5-1.5-4.5-4.8 0-3.2 1.1-4.7 4.5-4.7h1.3c3.3 0 4.5 1.6 4.5 4.7 0 3.3-1.3 4.8-4.5 4.8zm-20.6-15h-7.8c-5.8 0-8.1 2.9-8.1 8.1 0 .8 0 1.5.2 2.2.6 3.6 2.7 5.9 8.2 5.9h1.7v2h3.9v-2h1.7c5.4 0 7.6-2.2 8.2-5.9.1-.7.2-1.4.2-2.2-.1-5.2-2.4-8.1-8.2-8.1zm-5.8 12.8h-1.8c-2.7 0-3.6-1-4.2-2.5-.2-.6-.2-1.4-.2-2.2 0-3.3 1.5-4.8 3.8-4.8h2.4v9.5zm9.9-2.5c-.6 1.6-1.5 2.5-4.2 2.5h-1.8v-9.5h2.4c2.3 0 3.8 1.4 3.8 4.8 0 .8 0 1.6-.2 2.2z"
52
+ })));
57
53
  };
58
54
 
59
55
  var cn = (0, _uiHelpers.cnCreate)('mfui-logo');
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-nav-arrow {
9
2
  -webkit-box-sizing: border-box;
10
3
  box-sizing: border-box;
@@ -29,17 +22,17 @@ h5 {
29
22
  display: block;
30
23
  width: 100%;
31
24
  height: 100%;
32
- fill: #FFFFFF;
25
+ fill: var(--stcWhite);
33
26
  }
34
27
  .mfui-nav-arrow_theme_purple {
35
- background-color: #731982;
28
+ background-color: var(--brandPurple);
36
29
  }
37
30
  .mfui-nav-arrow_theme_purple:hover:not(:disabled) {
38
- background-color: #534455;
31
+ background-color: var(--buttonhoverPurple);
39
32
  }
40
33
  .mfui-nav-arrow_theme_dark {
41
- background-color: rgba(0, 0, 0, 0.25);
34
+ background-color: var(--stcBlack20);
42
35
  }
43
36
  .mfui-nav-arrow_theme_dark:hover:not(:disabled) {
44
- background-color: rgba(0, 0, 0, 0.5);
37
+ background-color: var(--stcBlack50);
45
38
  }
@@ -1,3 +1,50 @@
1
+ :root {
2
+ --green: #00B956;
3
+ --purple: #731982;
4
+ --base: #FFFFFF;
5
+ --content: #333333;
6
+ --spbSky0: #F6F6F6;
7
+ --spbSky1: #EDEDED;
8
+ --spbSky2: #D8D8D8;
9
+ --spbSky3: #999999;
10
+ --warmRedC: #EB5A40;
11
+ --137C: #FFA717;
12
+ --311C: #5BD9E5;
13
+ --reflexBlue: #444189;
14
+ --fury: #F62434;
15
+ --systemBlue: #34AAF2;
16
+ --background: #FFFFFF;
17
+ --buttonHoverGreen: #10E272;
18
+ --buttonhoverPurple: #534455;
19
+ --buttonDown: #404D46;
20
+ --gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
21
+ --gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
22
+ --gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
23
+ --STCWhite: #FFFFFF;
24
+ --STCBlack: #333333;
25
+ --STCWhite5: #FFFFFF0D;
26
+ --STCWhite10: #FFFFFF1A;
27
+ --STCWhite20: #FFFFFF33;
28
+ --STCWhite50: #FFFFFF80;
29
+ --STCBlack5: #3333330D;
30
+ --STCBlack10: #3333331A;
31
+ --STCBlack20: #33333333;
32
+ --STCBlack50: #33333380;
33
+ --green80: #0CDC78;
34
+ --green20: #DDFFEC;
35
+ --purple80: #AA67C1;
36
+ --purple20: #FFEEFF;
37
+ --warmRedC80: #FF765D;
38
+ --warmRedC20: #FFCFC7;
39
+ --137C80: #FFB945;
40
+ --137C20: #FFEDD1;
41
+ --311C80: #62E3FF;
42
+ --311C20: #E1FAFF;
43
+ --reflexBlue80: #554FC9;
44
+ --reflexBlue20: #EBEAFF;
45
+ --fury80: #F8505D;
46
+ --fury20: #FFC5C9;
47
+ }
1
48
  h1,
2
49
  h2,
3
50
  h3,
@@ -8,6 +55,7 @@ h5 {
8
55
  .mfui-notification {
9
56
  position: relative;
10
57
  padding: 16px 12px;
58
+ background-color: var(--background);
11
59
  }
12
60
  @media screen and (min-width: 768px) {
13
61
  .mfui-notification {
@@ -26,6 +74,7 @@ h5 {
26
74
  }
27
75
  .mfui-notification__title {
28
76
  margin-bottom: 8px;
77
+ color: var(--content);
29
78
  }
30
79
  @media screen and (min-width: 1280px) {
31
80
  .mfui-notification__title {
@@ -40,6 +89,7 @@ h5 {
40
89
  line-height: 24px;
41
90
  max-width: 100%;
42
91
  margin: 0;
92
+ color: var(--content);
43
93
  }
44
94
  .mfui-notification__text_close-padding {
45
95
  padding-right: 20px;
@@ -119,7 +169,7 @@ h5 {
119
169
  min-width: 20px;
120
170
  height: 20px;
121
171
  margin-top: 4px;
122
- fill: #34AAF2;
172
+ fill: var(--systemBlue);
123
173
  }
124
174
  .mfui-notification__close {
125
175
  position: absolute;
@@ -135,12 +185,12 @@ h5 {
135
185
  cursor: pointer;
136
186
  }
137
187
  .mfui-notification__close:hover {
138
- background-color: rgba(237, 237, 237, 0.6);
188
+ background-color: var(--stcBlack5);
139
189
  }
140
190
  .mfui-notification__close-icon {
141
191
  width: 20px;
142
192
  height: 20px;
143
- fill: #333333;
193
+ fill: var(--content);
144
194
  }
145
195
  @media screen and (min-width: 768px) {
146
196
  .mfui-notification__close-icon {
@@ -149,63 +199,77 @@ h5 {
149
199
  }
150
200
  }
151
201
  .mfui-notification_type_error .mfui-notification__icon-container {
152
- background-color: #FFC4C9;
202
+ background-color: var(--fury20);
153
203
  }
154
204
  .mfui-notification_type_error .mfui-notification__icon-container svg {
155
205
  /* stylelint-disable-line max-nesting-depth */
156
- fill: #F62434;
206
+ fill: var(--fury);
157
207
  }
158
208
  .mfui-notification_type_success .mfui-notification__icon-container {
159
- background-color: #DDFFEC;
209
+ background-color: var(--brandGreen20);
160
210
  }
161
211
  .mfui-notification_type_success .mfui-notification__icon-container svg {
162
212
  /* stylelint-disable-line max-nesting-depth */
163
- fill: #00B956;
213
+ fill: var(--brandGreen);
164
214
  }
165
215
  .mfui-notification_type_warning .mfui-notification__icon-container {
166
- background-color: #FFEDD1;
216
+ background-color: var(--137C20);
167
217
  }
168
218
  .mfui-notification_type_warning .mfui-notification__icon-container svg {
169
219
  /* stylelint-disable-line max-nesting-depth */
170
- fill: #FFA717;
220
+ fill: var(--137C);
171
221
  }
172
222
  .mfui-notification_type_info .mfui-notification__icon-container {
173
- background-color: #E1FAFF;
223
+ background-color: var(--311C20);
174
224
  }
175
225
  .mfui-notification_type_info .mfui-notification__icon-container svg {
176
226
  /* stylelint-disable-line max-nesting-depth */
177
- fill: #5BD9E5;
227
+ fill: var(--311C);
178
228
  }
179
229
  .mfui-notification_colored .mfui-notification__icon-container {
180
- background-color: #FFFFFF;
230
+ background-color: var(--stcWhite);
181
231
  }
182
232
  .mfui-notification_colored .mfui-notification__close:hover {
183
- background-color: rgba(255, 255, 255, 0.3);
184
- }
185
- .mfui-notification_colored.mfui-notification_type_error {
186
- background-color: #F8505D;
233
+ background-color: var(--stcWhite);
187
234
  }
235
+ .mfui-notification_colored.mfui-notification_type_success .mfui-notification__title,
188
236
  .mfui-notification_colored.mfui-notification_type_error .mfui-notification__title,
237
+ .mfui-notification_colored.mfui-notification_type_success .mfui-notification__text,
189
238
  .mfui-notification_colored.mfui-notification_type_error .mfui-notification__text,
239
+ .mfui-notification_colored.mfui-notification_type_success .mfui-notification__link,
190
240
  .mfui-notification_colored.mfui-notification_type_error .mfui-notification__link {
191
- color: #FFFFFF;
241
+ color: var(--stcWhite);
192
242
  }
243
+ .mfui-notification_colored.mfui-notification_type_success .mfui-notification__right-arrow,
193
244
  .mfui-notification_colored.mfui-notification_type_error .mfui-notification__right-arrow {
194
- fill: #FFFFFF;
245
+ fill: var(--stcWhite);
195
246
  }
247
+ .mfui-notification_colored.mfui-notification_type_success .mfui-notification__icon-container,
196
248
  .mfui-notification_colored.mfui-notification_type_error .mfui-notification__icon-container {
197
- background-color: #FFFFFF33;
249
+ background-color: var(--stcWhite20);
198
250
  }
251
+ .mfui-notification_colored.mfui-notification_type_success .mfui-notification__icon-container svg,
199
252
  .mfui-notification_colored.mfui-notification_type_error .mfui-notification__icon-container svg {
200
253
  /* stylelint-disable-line max-nesting-depth */
201
- fill: #FFFFFF;
254
+ fill: var(--stcWhite);
202
255
  }
203
256
  .mfui-notification_colored.mfui-notification_type_success {
204
- background-color: #DDFFEC;
257
+ background-color: var(--brandGreen);
205
258
  }
206
- .mfui-notification_colored.mfui-notification_type_warning {
207
- background-color: #FFEDD1;
259
+ .mfui-notification_colored.mfui-notification_type_error {
260
+ background-color: var(--fury80);
261
+ }
262
+ .mfui-notification_colored.mfui-notification_type_info .mfui-notification__title,
263
+ .mfui-notification_colored.mfui-notification_type_warning .mfui-notification__title,
264
+ .mfui-notification_colored.mfui-notification_type_info .mfui-notification__text,
265
+ .mfui-notification_colored.mfui-notification_type_warning .mfui-notification__text,
266
+ .mfui-notification_colored.mfui-notification_type_info .mfui-notification__link,
267
+ .mfui-notification_colored.mfui-notification_type_warning .mfui-notification__link {
268
+ color: var(--stcBlack);
208
269
  }
209
270
  .mfui-notification_colored.mfui-notification_type_info {
210
- background-color: #E1FAFF;
271
+ background-color: var(--311C20);
272
+ }
273
+ .mfui-notification_colored.mfui-notification_type_warning {
274
+ background-color: var(--137C20);
211
275
  }
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-pagination {
9
2
  display: -webkit-box;
10
3
  display: -ms-flexbox;
@@ -1,3 +1,50 @@
1
+ :root {
2
+ --green: #00B956;
3
+ --purple: #731982;
4
+ --base: #FFFFFF;
5
+ --content: #333333;
6
+ --spbSky0: #F6F6F6;
7
+ --spbSky1: #EDEDED;
8
+ --spbSky2: #D8D8D8;
9
+ --spbSky3: #999999;
10
+ --warmRedC: #EB5A40;
11
+ --137C: #FFA717;
12
+ --311C: #5BD9E5;
13
+ --reflexBlue: #444189;
14
+ --fury: #F62434;
15
+ --systemBlue: #34AAF2;
16
+ --background: #FFFFFF;
17
+ --buttonHoverGreen: #10E272;
18
+ --buttonhoverPurple: #534455;
19
+ --buttonDown: #404D46;
20
+ --gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
21
+ --gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
22
+ --gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
23
+ --STCWhite: #FFFFFF;
24
+ --STCBlack: #333333;
25
+ --STCWhite5: #FFFFFF0D;
26
+ --STCWhite10: #FFFFFF1A;
27
+ --STCWhite20: #FFFFFF33;
28
+ --STCWhite50: #FFFFFF80;
29
+ --STCBlack5: #3333330D;
30
+ --STCBlack10: #3333331A;
31
+ --STCBlack20: #33333333;
32
+ --STCBlack50: #33333380;
33
+ --green80: #0CDC78;
34
+ --green20: #DDFFEC;
35
+ --purple80: #AA67C1;
36
+ --purple20: #FFEEFF;
37
+ --warmRedC80: #FF765D;
38
+ --warmRedC20: #FFCFC7;
39
+ --137C80: #FFB945;
40
+ --137C20: #FFEDD1;
41
+ --311C80: #62E3FF;
42
+ --311C20: #E1FAFF;
43
+ --reflexBlue80: #554FC9;
44
+ --reflexBlue20: #EBEAFF;
45
+ --fury80: #F8505D;
46
+ --fury20: #FFC5C9;
47
+ }
1
48
  h1,
2
49
  h2,
3
50
  h3,
@@ -33,30 +80,30 @@ h5 {
33
80
  pointer-events: none;
34
81
  }
35
82
  .mfui-pagination-button_active {
36
- border-color: #00B956;
83
+ border-color: var(--brandGreen);
37
84
  pointer-events: none;
38
85
  }
39
86
  .mfui-pagination-button_theme_default {
40
- color: #333333;
87
+ color: var(--content);
41
88
  }
42
89
  .mfui-pagination-button_theme_default svg {
43
- fill: #333333;
90
+ fill: var(--content);
44
91
  }
45
92
  .mfui-pagination-button_theme_default:hover {
46
- background-color: #F6F6F6;
93
+ background-color: var(--spbSky0);
47
94
  }
48
95
  .mfui-pagination-button_theme_default.mfui-pagination-button_active {
49
- border-color: #00B956;
96
+ border-color: var(--brandGreen);
50
97
  }
51
98
  .mfui-pagination-button_theme_light {
52
- color: #FFFFFF;
99
+ color: var(--stcWhite);
53
100
  }
54
101
  .mfui-pagination-button_theme_light svg {
55
- fill: #FFFFFF;
102
+ fill: var(--stcWhite);
56
103
  }
57
104
  .mfui-pagination-button_theme_light:hover {
58
- background-color: rgba(255, 255, 255, 0.25);
105
+ background-color: var(--stcWhite20);
59
106
  }
60
107
  .mfui-pagination-button_theme_light.mfui-pagination-button_active {
61
- border-color: #FFFFFF;
108
+ border-color: var(--stcWhite);
62
109
  }
@@ -1,3 +1,50 @@
1
+ :root {
2
+ --green: #00B956;
3
+ --purple: #731982;
4
+ --base: #FFFFFF;
5
+ --content: #333333;
6
+ --spbSky0: #F6F6F6;
7
+ --spbSky1: #EDEDED;
8
+ --spbSky2: #D8D8D8;
9
+ --spbSky3: #999999;
10
+ --warmRedC: #EB5A40;
11
+ --137C: #FFA717;
12
+ --311C: #5BD9E5;
13
+ --reflexBlue: #444189;
14
+ --fury: #F62434;
15
+ --systemBlue: #34AAF2;
16
+ --background: #FFFFFF;
17
+ --buttonHoverGreen: #10E272;
18
+ --buttonhoverPurple: #534455;
19
+ --buttonDown: #404D46;
20
+ --gradientBasic: linear-gradient(90deg, #01873F 0%, #00B956 74%, #14CD6A 100%);
21
+ --gradientVIP: linear-gradient(90deg, #5B1168 0%, #731982 74%, #821E93 100%);
22
+ --gradientExclusive: linear-gradient(90deg, #2A2674 0%, #444189 74%, #504D93 100%);
23
+ --STCWhite: #FFFFFF;
24
+ --STCBlack: #333333;
25
+ --STCWhite5: #FFFFFF0D;
26
+ --STCWhite10: #FFFFFF1A;
27
+ --STCWhite20: #FFFFFF33;
28
+ --STCWhite50: #FFFFFF80;
29
+ --STCBlack5: #3333330D;
30
+ --STCBlack10: #3333331A;
31
+ --STCBlack20: #33333333;
32
+ --STCBlack50: #33333380;
33
+ --green80: #0CDC78;
34
+ --green20: #DDFFEC;
35
+ --purple80: #AA67C1;
36
+ --purple20: #FFEEFF;
37
+ --warmRedC80: #FF765D;
38
+ --warmRedC20: #FFCFC7;
39
+ --137C80: #FFB945;
40
+ --137C20: #FFEDD1;
41
+ --311C80: #62E3FF;
42
+ --311C20: #E1FAFF;
43
+ --reflexBlue80: #554FC9;
44
+ --reflexBlue20: #EBEAFF;
45
+ --fury80: #F8505D;
46
+ --fury20: #FFC5C9;
47
+ }
1
48
  h1,
2
49
  h2,
3
50
  h3,
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-paragraph {
9
2
  font-family: inherit;
10
3
  margin: 0;
@@ -31,30 +24,27 @@ h5 {
31
24
  margin: 0 0 16px;
32
25
  }
33
26
  .mfui-paragraph_color_green {
34
- color: #00B956;
27
+ color: var(--brandGreen);
35
28
  }
36
29
  .mfui-paragraph_color_purple {
37
- color: #731982;
30
+ color: var(--brandPurple);
38
31
  }
39
32
  .mfui-paragraph_color_base,
40
33
  .mfui-paragraph_color_clearWhite {
41
- color: #FFFFFF;
34
+ color: var(--stcWhite);
42
35
  }
43
36
  .mfui-paragraph_color_spbSky0 {
44
- color: #F6F6F6;
37
+ color: var(--spbSky0);
45
38
  }
46
39
  .mfui-paragraph_color_spbSky1 {
47
- color: #EDEDED;
40
+ color: var(--spbSky1);
48
41
  }
49
42
  .mfui-paragraph_color_spbSky2 {
50
- color: #D8D8D8;
43
+ color: var(--spbSky2);
51
44
  }
52
45
  .mfui-paragraph_color_content,
53
46
  .mfui-paragraph_color_freshAsphalt {
54
- color: #333333;
55
- }
56
- .mfui-paragraph_color_fullBlack {
57
- color: #000000;
47
+ color: var(--content);
58
48
  }
59
49
  .mfui-paragraph_color_inherit {
60
50
  color: inherit;
@@ -8,7 +8,6 @@ declare const COLORS: {
8
8
  SPB_SKY_1: string;
9
9
  SPB_SKY_2: string;
10
10
  CONTENT: string;
11
- FULL_BLACK: string;
12
11
  INHERIT: string;
13
12
  /** @deprecated */
14
13
  CLEAR_WHITE: string;
@@ -33,7 +33,6 @@ var COLORS = {
33
33
  SPB_SKY_1: 'spbSky1',
34
34
  SPB_SKY_2: 'spbSky2',
35
35
  CONTENT: 'content',
36
- FULL_BLACK: 'fullBlack',
37
36
  INHERIT: 'inherit',
38
37
 
39
38
  /** @deprecated */
@@ -74,7 +73,7 @@ Paragraph.propTypes = {
74
73
  var propValue = props[propName];
75
74
 
76
75
  if (propValue && !Object.values(COLORS).includes(propValue)) {
77
- return new Error("Failed prop type: Invalid prop '".concat(propName, "' of value '").concat(propValue, "' supplied to '").concat(componentName, "', \n expected one of [").concat(Object.values(COLORS), "]"));
76
+ return new Error("Failed prop type: Invalid prop '".concat(propName, "' of value '").concat(propValue, "' supplied to '").concat(componentName, "',\n expected one of [").concat(Object.values(COLORS), "]"));
78
77
  }
79
78
 
80
79
  if (propValue && props[propName] === deprecatedBlackValue) {
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-preloader {
9
2
  display: -webkit-box;
10
3
  display: -ms-flexbox;
@@ -106,20 +99,20 @@ h5 {
106
99
  animation: scaling 1s linear infinite;
107
100
  }
108
101
  .mfui-preloader_color_default .mfui-preloader__item_first:before {
109
- background-color: #00B956;
102
+ background-color: var(--brandGreen);
110
103
  }
111
104
  .mfui-preloader_color_default .mfui-preloader__item_second:before {
112
- background-color: #00B956;
105
+ background-color: var(--brandGreen);
113
106
  -webkit-animation-delay: 0.166s;
114
107
  animation-delay: 0.166s;
115
108
  }
116
109
  .mfui-preloader_color_default .mfui-preloader__item_third:before {
117
- background-color: #731982;
110
+ background-color: var(--brandPurple);
118
111
  -webkit-animation-delay: 0.33s;
119
112
  animation-delay: 0.33s;
120
113
  }
121
114
  .mfui-preloader_color_black .mfui-preloader__item:before {
122
- background-color: #000000;
115
+ background-color: var(--stcBlack);
123
116
  opacity: 0.35;
124
117
  -webkit-animation: opacityScaling 1s linear infinite;
125
118
  animation: opacityScaling 1s linear infinite;
@@ -133,7 +126,7 @@ h5 {
133
126
  animation-delay: 0.33s;
134
127
  }
135
128
  .mfui-preloader_color_white .mfui-preloader__item:before {
136
- background-color: #FFFFFF;
129
+ background-color: var(--stcWhite);
137
130
  -webkit-animation: scaling 1s linear infinite;
138
131
  animation: scaling 1s linear infinite;
139
132
  }
@@ -1,10 +1,3 @@
1
- h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5 {
6
- margin: 0;
7
- }
8
1
  .mfui-radio-button__input {
9
2
  position: absolute;
10
3
  top: 0;
@@ -48,22 +41,22 @@ h5 {
48
41
  box-sizing: border-box;
49
42
  width: 20px;
50
43
  height: 20px;
51
- border: 2px solid #D8D8D8;
44
+ border: 2px solid var(--spbSky2);
52
45
  border-radius: 50%;
53
- background-color: #FFFFFF;
46
+ background-color: var(--base);
54
47
  }
55
48
  .mfui-radio-button__input:checked + .mfui-radio-button__custom-input:before {
56
- border: 6px solid #00B956;
49
+ border: 6px solid var(--brandGreen);
57
50
  }
58
51
  .mfui-radio-button__label:hover .mfui-radio-button__custom-input:before {
59
- border-color: #10E272;
52
+ border-color: var(--buttonHoverGreen);
60
53
  }
61
54
  .mfui-radio-button__label:active .mfui-radio-button__custom-input:before {
62
- border-color: #404D46;
55
+ border-color: var(--buttonDown);
63
56
  }
64
57
  .mfui-radio-button__label_disabled .mfui-radio-button__custom-input:before {
65
- border-color: #D8D8D8 !important;
66
- background-color: #EDEDED !important;
58
+ border-color: var(--spbSky2) !important;
59
+ background-color: var(--spbSky1) !important;
67
60
  }
68
61
  .mfui-radio-button__text_size_small {
69
62
  font-size: 12px;