@loftyshaky/shared-app 1.0.1 → 1.1.0

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 (157) hide show
  1. package/_locales/en/messages.json +95 -2
  2. package/_locales/ru/messages.json +77 -2
  3. package/announcement.js +1 -1
  4. package/app.js +1 -1
  5. package/chunk-main-130f654b.js +9 -0
  6. package/chunk-main-35e603b6.js +1 -0
  7. package/{chunk-main-6b1a6024.js → chunk-main-aca0d1f6.js} +1 -1
  8. package/{chunk-pickr.min-ee5e2c4f.js → chunk-pickr.min-81c0b025.js} +1 -1
  9. package/ext.js +1 -1
  10. package/index.d.ts +1 -1
  11. package/index.js +1 -1
  12. package/inputs.js +1 -1
  13. package/js/env.js +11 -3
  14. package/js/locales.js +23 -8
  15. package/js/webpack.config.js +9 -0
  16. package/package.json +2 -2
  17. package/scss/settings/section_btns.scss +52 -52
  18. package/scss/settings/sections.scss +22 -0
  19. package/scss/settings/transitions.scss +2 -12
  20. package/scss/shared/btns.scss +69 -16
  21. package/scss/shared/checkboxes.scss +38 -38
  22. package/scss/shared/close_btn.scss +18 -0
  23. package/scss/shared/color_pickers.scss +93 -93
  24. package/scss/shared/colors.scss +90 -84
  25. package/scss/shared/embed/error.scss +43 -26
  26. package/scss/shared/focus.scss +15 -9
  27. package/scss/shared/functions.scss +5 -0
  28. package/scss/shared/help.scss +3 -5
  29. package/scss/shared/index.scss +5 -0
  30. package/scss/shared/input_btns.scss +12 -11
  31. package/scss/shared/input_error.scss +3 -0
  32. package/scss/shared/inputs.scss +87 -70
  33. package/scss/shared/inset_border.scss +0 -4
  34. package/scss/shared/link_btns.scss +8 -0
  35. package/scss/shared/links.scss +12 -0
  36. package/scss/shared/main.scss +3 -0
  37. package/scss/shared/mixins.scss +50 -0
  38. package/scss/shared/mods.scss +11 -3
  39. package/scss/shared/offers.scss +37 -0
  40. package/scss/shared/scrollbar.scss +35 -35
  41. package/scss/shared/themes/colors/aqua.scss +39 -0
  42. package/scss/shared/themes/colors/dark.scss +47 -12
  43. package/scss/shared/themes/colors/lavender.scss +39 -0
  44. package/scss/shared/themes/colors/light.scss +47 -12
  45. package/scss/shared/themes/colors/very_dark.scss +47 -12
  46. package/scss/shared/themes/general/aqua_theme.scss +9 -0
  47. package/scss/shared/themes/general/dark_theme.scss +3 -1
  48. package/scss/shared/themes/general/lavender_theme.scss +9 -0
  49. package/scss/shared/themes/general/light_theme.scss +3 -1
  50. package/scss/shared/themes/general/template.scss +112 -70
  51. package/scss/shared/themes/general/template_focus.scss +20 -8
  52. package/scss/shared/themes/general/very_dark_theme.scss +3 -1
  53. package/scss/shared/transitions.scss +24 -3
  54. package/scss/shared/upload_box.scss +81 -67
  55. package/scss/shared/vars.scss +9 -2
  56. package/settings.d.ts +1 -1
  57. package/settings.js +1 -1
  58. package/ts/error_modules/error/components/index.d.ts +2 -0
  59. package/ts/error_modules/error/components/keep_visible_msg.d.ts +2 -0
  60. package/ts/error_modules/error/components/progress.d.ts +2 -0
  61. package/ts/error_modules/error/data/index.d.ts +1 -0
  62. package/ts/error_modules/error/data/main.d.ts +2 -1
  63. package/ts/error_modules/error/data/msg.d.ts +0 -2
  64. package/ts/error_modules/error/data/progress.d.ts +17 -0
  65. package/ts/error_modules/error/data/state.d.ts +3 -2
  66. package/ts/error_modules/error/interfaces/index.d.ts +2 -0
  67. package/ts/error_modules/error/interfaces/notification_type.d.ts +1 -0
  68. package/ts/error_modules/error/interfaces/observable_keys.d.ts +1 -1
  69. package/ts/error_modules/error/interfaces/show_error.d.ts +7 -2
  70. package/ts/error_modules/error/interfaces/show_unable_to_access_settings_error.d.ts +5 -0
  71. package/ts/error_modules/error/scripts/flash.d.ts +11 -0
  72. package/ts/error_modules/error/scripts/globals.d.ts +3 -0
  73. package/ts/error_modules/error/scripts/index.d.ts +2 -0
  74. package/ts/error_modules/error/scripts/notification.d.ts +8 -0
  75. package/ts/error_modules/init.d.ts +1 -0
  76. package/ts/error_modules/internal.d.ts +1 -0
  77. package/ts/inputs/components/form.d.ts +3 -0
  78. package/ts/inputs/components/index.d.ts +4 -0
  79. package/ts/inputs/components/input_error.d.ts +3 -0
  80. package/ts/inputs/components/label_in_input_item.d.ts +3 -0
  81. package/ts/inputs/components/link_icon_btn.d.ts +3 -0
  82. package/ts/inputs/components/prop_types/form.d.ts +5 -0
  83. package/ts/inputs/components/prop_types/index.d.ts +4 -0
  84. package/ts/inputs/components/prop_types/input_error.d.ts +4 -0
  85. package/ts/inputs/components/prop_types/label.d.ts +2 -2
  86. package/ts/inputs/components/prop_types/label_in_input_item.d.ts +4 -0
  87. package/ts/inputs/components/prop_types/link_icon_btn.d.ts +5 -0
  88. package/ts/inputs/components/prop_types/range.d.ts +2 -0
  89. package/ts/inputs/components/prop_types/section_btn.d.ts +1 -0
  90. package/ts/inputs/components/prop_types/section_content.d.ts +2 -1
  91. package/ts/inputs/components/prop_types/select.d.ts +2 -0
  92. package/ts/inputs/components/prop_types/text.d.ts +2 -0
  93. package/ts/inputs/components/prop_types/textarea.d.ts +2 -0
  94. package/ts/inputs/components/prop_types/upload_box.d.ts +1 -0
  95. package/ts/inputs/data/index.d.ts +2 -1
  96. package/ts/inputs/data/input_error.d.ts +12 -0
  97. package/ts/inputs/data/input_width.d.ts +5 -1
  98. package/ts/inputs/data/{label.d.ts → labelIn_in_putI_iem.d.ts} +2 -2
  99. package/ts/inputs/data/upload_box.d.ts +4 -0
  100. package/ts/inputs/data/val.d.ts +10 -5
  101. package/ts/inputs/interfaces/btn_option.d.ts +9 -0
  102. package/ts/inputs/interfaces/index.d.ts +1 -0
  103. package/ts/inputs/interfaces/input.d.ts +1 -1
  104. package/ts/inputs/obj/btn.d.ts +1 -0
  105. package/ts/inputs/obj/file.d.ts +1 -0
  106. package/ts/inputs/obj/form.d.ts +7 -0
  107. package/ts/inputs/obj/icon_btn.d.ts +2 -1
  108. package/ts/inputs/obj/index.d.ts +2 -0
  109. package/ts/inputs/obj/input_base.d.ts +11 -3
  110. package/ts/inputs/obj/label.d.ts +5 -0
  111. package/ts/inputs/obj/link.d.ts +4 -0
  112. package/ts/inputs/obj/link_btn.d.ts +2 -1
  113. package/ts/inputs/obj/section.d.ts +14 -0
  114. package/ts/inputs/obj/text.d.ts +2 -1
  115. package/ts/inputs/obj/upload_box.d.ts +4 -0
  116. package/ts/inputs/scripts/resolve.d.ts +3 -1
  117. package/ts/settings/components/prop_types/body.d.ts +1 -0
  118. package/ts/settings/data/back_up.d.ts +2 -1
  119. package/ts/settings/data/sections.d.ts +7 -1
  120. package/ts/settings/developer_mode/data/main.d.ts +13 -0
  121. package/ts/settings/internal.d.ts +1 -2
  122. package/ts/shared/app.d.ts +10 -3
  123. package/ts/shared/ext.d.ts +3 -0
  124. package/ts/shared/internal.d.ts +10 -0
  125. package/ts/shared/offers/components/body.d.ts +3 -0
  126. package/ts/shared/offers/components/counter.d.ts +2 -0
  127. package/ts/shared/offers/components/index.d.ts +6 -0
  128. package/ts/shared/offers/components/next_offer_btn.d.ts +2 -0
  129. package/ts/shared/offers/components/offer.d.ts +3 -0
  130. package/ts/shared/offers/components/previous_offer_btn.d.ts +2 -0
  131. package/ts/shared/offers/components/prop_types/body.d.ts +5 -0
  132. package/ts/shared/offers/components/prop_types/index.d.ts +2 -0
  133. package/ts/shared/offers/components/prop_types/offer.d.ts +4 -0
  134. package/ts/shared/offers/components/top_bar.d.ts +2 -0
  135. package/ts/shared/offers/data/index.d.ts +1 -0
  136. package/ts/shared/offers/data/main.d.ts +22 -0
  137. package/ts/shared/offers/interfaces/index.d.ts +1 -0
  138. package/ts/shared/offers/interfaces/offer_banner_type.d.ts +1 -0
  139. package/ts/shared/offers/obj/index.d.ts +1 -0
  140. package/ts/shared/offers/obj/offer.d.ts +10 -0
  141. package/ts/shared/offers/scripts/index.d.ts +1 -0
  142. package/ts/shared/offers/scripts/main.d.ts +8 -0
  143. package/ts/shared/schema/data/index.d.ts +1 -0
  144. package/ts/{settings → shared}/schema/data/main.d.ts +4 -2
  145. package/ts/shared/service_worker/scripts/index.d.ts +1 -0
  146. package/ts/shared/service_worker/scripts/main.d.ts +9 -0
  147. package/ts/shared/settings/data/index.d.ts +1 -0
  148. package/ts/shared/settings/data/main.d.ts +15 -0
  149. package/ts/shared/svg.d.ts +2 -0
  150. package/ts/shared/t.d.ts +2 -0
  151. package/ts/shared/vars.d.ts +1 -0
  152. package/ts/shared/x.d.ts +9 -0
  153. package/chunk-main-303525a1.js +0 -1
  154. package/chunk-main-3865bde3.js +0 -9
  155. /package/ts/settings/{schema → developer_mode}/data/index.d.ts +0 -0
  156. /package/ts/{settings → shared}/schema/obj/index.d.ts +0 -0
  157. /package/ts/{settings → shared}/schema/obj/transform_item.d.ts +0 -0
@@ -0,0 +1,39 @@
1
+ $theme_color_jqv: rgb(255 255 255 / 0.1%);
2
+
3
+ $htc: white;
4
+ $tbn: $glass_color;
5
+ $gaq: #efefef;
6
+ /* stylelint-disable-next-line max-line-length */
7
+ $gqb: linear-gradient(45deg, rgb(52 15 189) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%, linear-gradient(135deg, rgb(241 22 168) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%, linear-gradient(190deg, rgb(26 211 208) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%, rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(163 34 203) 100%, rgb(9 245 5 / 0%) 70%) repeat scroll 0% 0%;
8
+ $hfb: transparent;
9
+ $gvb: rgb(255 255 255 / 36%);
10
+ $npw: rgb(255 255 255 / 20%);
11
+ $hcx: $theme_color_jqv;
12
+ $hev: #bbb;
13
+ $hyn: rgb(255 255 255 / 50%);
14
+ $fxm: rgb(255 255 255 / 37.5%);
15
+ $nur: rgb(255 255 255 / 20.8%);
16
+ $yuv: rgb(255 255 255 / 60%);
17
+ $vqo: $theme_color_jqv;
18
+ $lpe: white;
19
+ $rbp: $black;
20
+ $mdc: #d9d9d9;
21
+ $yos: #39c2db;
22
+ $nep: #90efff;
23
+ $htm: #ffa96c;
24
+ $qgp: #3ea559;
25
+ $hyv: #66ff8e;
26
+ $ycp: #19f4ff;
27
+ $iub: #2e8cff;
28
+ $cop: #4bff1f;
29
+ $yun: #14bf0a;
30
+ $ptn: #20f;
31
+ $dwk: #d046e9;
32
+ $uzf: #fbff12;
33
+ $hap: #f17442;
34
+ $rqb: #ff471a;
35
+ $suc: #d0111a;
36
+ $dfp: #842fa9;
37
+ $nqp: rgb(244 96 62 / 99%);
38
+ $hgb: rgb(255 77 85 / 99%);
39
+ $beu: rgb(255 255 255 / 75%);
@@ -1,14 +1,49 @@
1
- $htc: white;
2
- $gaq: #efefef;
3
- $hev: #bbb;
4
- $lpe: $black;
5
- $yos: #90efff;
1
+ $theme_color_ynq: white;
2
+ $theme_color_ytb: #efefef;
3
+ $theme_color_hbt: #bbb;
4
+ $theme_color_kdc: $black;
5
+ $theme_color_ecm: #66ff8e;
6
+ $theme_color_uvr: #90efff;
7
+ $theme_color_kxn: #2e8cff;
8
+ $theme_color_tjn: #14bf0a;
9
+ $theme_color_bvc: #d046e9;
10
+ $theme_color_wnc: #f17442;
11
+ $theme_color_yhn: #d0111a;
12
+ $theme_color_gsl: rgb(255 77 85 / 99%);
13
+
14
+ $htc: $theme_color_ynq;
15
+ $tbn: $theme_color_ynq;
16
+ $gaq: $theme_color_ytb;
17
+ $gqb: $theme_color_ytb;
18
+ $hfb: $theme_color_ytb;
19
+ $gvb: $theme_color_ytb;
20
+ $npw: $theme_color_ytb;
21
+ $hcx: $theme_color_ytb;
22
+ $hev: $theme_color_hbt;
23
+ $hyn: $theme_color_hbt;
24
+ $fxm: $theme_color_hbt;
25
+ $nur: $theme_color_hbt;
26
+ $yuv: $theme_color_hbt;
27
+ $vqo: $theme_color_hbt;
28
+ $lpe: $theme_color_kdc;
29
+ $rbp: $theme_color_kdc;
30
+ $mdc: #878787;
31
+ $yos: $theme_color_uvr;
32
+ $nep: $theme_color_uvr;
6
33
  $htm: #ffa96c;
7
- $qgp: #66ff8e;
8
- $ycp: #2e8cff;
9
- $cop: #14bf0a;
10
- $ptn: #ca26dd;
11
- $uzf: #e8720c;
12
- $rqb: #d0111a;
34
+ $qgp: $theme_color_ecm;
35
+ $hyv: $theme_color_ecm;
36
+ $ycp: $theme_color_kxn;
37
+ $iub: $theme_color_kxn;
38
+ $cop: $theme_color_tjn;
39
+ $yun: $theme_color_tjn;
40
+ $ptn: $theme_color_bvc;
41
+ $dwk: $theme_color_bvc;
42
+ $uzf: $theme_color_wnc;
43
+ $hap: $theme_color_wnc;
44
+ $rqb: $theme_color_yhn;
45
+ $suc: $theme_color_yhn;
13
46
  $dfp: #a2d4ff;
14
- $nqp: rgb(255 77 85 / 99%);
47
+ $nqp: $theme_color_gsl;
48
+ $hgb: $theme_color_gsl;
49
+ $beu: rgb(255 255 255 / 75%);
@@ -1,14 +1,49 @@
1
- $htc: #0a0e14;
2
- $gaq: #000308;
3
- $hev: #1f2c40;
4
- $lpe: #e5e5e5;
5
- $yos: #0e2e54;
1
+ $theme_color_ynq: #0a0e14;
2
+ $theme_color_ytb: #000308;
3
+ $theme_color_hbt: #1f2c40;
4
+ $theme_color_kdc: #e5e5e5;
5
+ $theme_color_ecm: #133e10;
6
+ $theme_color_uvr: #0e2e54;
7
+ $theme_color_kxn: #2176de;
8
+ $theme_color_tjn: #089200;
9
+ $theme_color_bvc: #af22bf;
10
+ $theme_color_wnc: #c96b00;
11
+ $theme_color_yhn: #b1131a;
12
+ $theme_color_gsl: rgb(120 30 34 / 99%);
13
+
14
+ $htc: $theme_color_ynq;
15
+ $tbn: $theme_color_ynq;
16
+ $gaq: $theme_color_ytb;
17
+ $gqb: $theme_color_ytb;
18
+ $hfb: $theme_color_ytb;
19
+ $gvb: $theme_color_ytb;
20
+ $npw: $theme_color_ytb;
21
+ $hcx: $theme_color_ytb;
22
+ $hev: $theme_color_hbt;
23
+ $hyn: $theme_color_hbt;
24
+ $fxm: $theme_color_hbt;
25
+ $nur: $theme_color_hbt;
26
+ $yuv: $theme_color_hbt;
27
+ $vqo: $theme_color_hbt;
28
+ $lpe: $theme_color_kdc;
29
+ $rbp: $theme_color_kdc;
30
+ $mdc: #8d8d8d;
31
+ $yos: $theme_color_uvr;
32
+ $nep: $theme_color_uvr;
6
33
  $htm: #583013;
7
- $qgp: #133e10;
8
- $ycp: #2176de;
9
- $cop: #089200;
10
- $ptn: #af22bf;
11
- $uzf: #c96b00;
12
- $rqb: #b1131a;
34
+ $qgp: $theme_color_ecm;
35
+ $hyv: $theme_color_ecm;
36
+ $ycp: $theme_color_kxn;
37
+ $iub: $theme_color_kxn;
38
+ $cop: $theme_color_tjn;
39
+ $yun: $theme_color_tjn;
40
+ $ptn: $theme_color_bvc;
41
+ $dwk: $theme_color_bvc;
42
+ $uzf: $theme_color_wnc;
43
+ $hap: $theme_color_wnc;
44
+ $rqb: $theme_color_yhn;
45
+ $suc: $theme_color_yhn;
13
46
  $dfp: #0f1721;
14
- $nqp: rgb(120 30 34 / 99%);
47
+ $nqp: $theme_color_gsl;
48
+ $hgb: $theme_color_gsl;
49
+ $beu: rgb(0 0 0 / 90%);
@@ -0,0 +1,9 @@
1
+ @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
4
+ @import '../colors/aqua';
5
+ @import 'template';
6
+
7
+ body .main_2.settings {
8
+ @include glass;
9
+ }
@@ -1,7 +1,9 @@
1
1
  @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
2
4
  @import '../colors/dark';
3
5
  @import 'template';
4
6
 
5
7
  .main_2 {
6
- box-shadow: rgb(0 115 255 / 100%) 0 0 33px, rgb(255 255 255 / 40%) 0 0 10px;
8
+ box-shadow: $blue_neon_dark;
7
9
  }
@@ -0,0 +1,9 @@
1
+ @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
4
+ @import '../colors/lavender';
5
+ @import 'template';
6
+
7
+ body .main_2.settings {
8
+ @include glass;
9
+ }
@@ -1,7 +1,9 @@
1
1
  @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
2
4
  @import '../colors/light';
3
5
  @import 'template';
4
6
 
5
7
  .main_2 {
6
- box-shadow: rgb(0 0 0 / 30%) 0 0 30px, rgb(0 0 0 / 30%) 0 4px 8px;
8
+ box-shadow: $black_shadow;
7
9
  }
@@ -2,6 +2,10 @@
2
2
 
3
3
  @import 'template_focus';
4
4
 
5
+ @mixin link_colors_standard {
6
+ @include link_colors($ycp, $ptn, $cop, $uzf);
7
+ }
8
+
5
9
  ::selection {
6
10
  background-color: $nqp !important;
7
11
  color: white !important;
@@ -10,17 +14,16 @@
10
14
  :not(html, body, select) {
11
15
  &::-webkit-scrollbar-corner,
12
16
  &::-webkit-resizer {
13
- background-color: $hev;
14
- border-color: $hev;
17
+ background-color: $hyn;
18
+ border-color: $hyn;
15
19
  }
16
20
 
17
21
  &::-webkit-scrollbar-track {
18
- background-color: $gaq;
19
- border-color: $gaq;
22
+ background-color: $npw;
20
23
  }
21
24
 
22
25
  &::-webkit-scrollbar-thumb {
23
- background-color: $hev;
26
+ background-color: $fxm;
24
27
  }
25
28
 
26
29
  &::-webkit-scrollbar-thumb:hover {
@@ -29,7 +32,27 @@
29
32
 
30
33
  &::-webkit-scrollbar-track:horizontal,
31
34
  &::-webkit-scrollbar-track:vertical {
32
- border-color: $hev;
35
+ border-color: $fxm;
36
+ }
37
+ }
38
+
39
+ .link {
40
+ @include link_colors_standard();
41
+ }
42
+
43
+ .link_btn {
44
+ @include link_colors_standard();
45
+ }
46
+
47
+ textarea {
48
+ &::-webkit-scrollbar-corner,
49
+ &::-webkit-resizer {
50
+ background-color: $nur;
51
+ border-color: $vqo;
52
+ }
53
+
54
+ &::-webkit-scrollbar-track {
55
+ background-color: $hcx;
33
56
  }
34
57
  }
35
58
 
@@ -48,29 +71,29 @@
48
71
  }
49
72
 
50
73
  body {
51
- background-color: $gaq;
74
+ background: $gqb;
75
+ background-repeat: no-repeat;
76
+ background-attachment: fixed;
77
+
78
+ .main_2 {
79
+ background-color: $hfb;
80
+ }
52
81
 
53
82
  .btn {
54
83
  &.text {
55
- outline-color: $hev;
56
- background-color: $gaq;
84
+ background-color: $npw;
85
+ outline-color: $hyn;
57
86
 
58
87
  &:hover {
59
88
  background-color: $qgp;
60
89
  }
61
90
  }
91
+ }
62
92
 
63
- &.icon {
64
- background-color: transparent;
65
-
66
- &:not(:first-child) {
67
- margin-left: $gap;
68
- }
69
-
70
- svg {
71
- display: block;
72
- fill: $lpe;
73
- }
93
+ .btn,
94
+ .link.svg {
95
+ svg {
96
+ fill: $lpe;
74
97
  }
75
98
  }
76
99
  }
@@ -84,18 +107,41 @@ textarea {
84
107
  }
85
108
 
86
109
  hr {
87
- background-color: $hev;
110
+ background-color: $hyn;
88
111
  }
89
112
 
90
- .sections {
91
- background-color: $htc;
113
+ .btn_options {
114
+ background-color: $npw;
115
+ border-color: $hyn;
116
+
117
+ .btn_option {
118
+ hr {
119
+ background-color: $hyn;
120
+ }
121
+
122
+ &:hover {
123
+ background-color: $qgp;
124
+ }
125
+ }
126
+ }
127
+
128
+ .sections_and_offers {
129
+ background-color: $tbn;
130
+
131
+ .offers {
132
+ border-color: $hyn;
133
+ }
134
+ }
135
+
136
+ .sections .section_name {
137
+ border-color: $hyn;
92
138
  }
93
139
 
94
140
  .section_btns {
95
- background-color: $gaq;
141
+ background-color: $gvb;
96
142
 
97
143
  .section_btn {
98
- background-color: $gaq;
144
+ background-color: $hfb;
99
145
 
100
146
  &.selected::before {
101
147
  background-color: $ycp;
@@ -109,15 +155,19 @@ hr {
109
155
 
110
156
  .input_item {
111
157
  .inset_border::before {
112
- outline-color: $hev;
158
+ outline-color: $hyn;
113
159
  }
114
160
 
115
161
  .input {
116
- background-color: $gaq;
162
+ background-color: $npw;
163
+
164
+ &::placeholder {
165
+ color: $mdc;
166
+ }
117
167
  }
118
168
 
119
169
  .btn.text_input {
120
- background-color: $gaq;
170
+ background-color: $npw;
121
171
 
122
172
  svg {
123
173
  fill: $lpe;
@@ -126,13 +176,20 @@ hr {
126
176
 
127
177
  .palette {
128
178
  background-color: $htc;
179
+ color: $rbp;
129
180
  }
130
181
 
131
182
  .input_w {
132
- .visualization,
183
+ .visualization {
184
+ background-color: $npw;
185
+ }
186
+
187
+ .palette_visualization_w.inset_border::before {
188
+ outline-color: $hev;
189
+ }
190
+
133
191
  .palette_visualization {
134
- border-color: $hev;
135
- background-color: $gaq;
192
+ background-color: $npw;
136
193
  }
137
194
  }
138
195
 
@@ -140,6 +197,10 @@ hr {
140
197
  background-image: linear-gradient(45deg, transparent 50%, $lpe 50%),
141
198
  linear-gradient(135deg, $lpe 50%, transparent 50%),
142
199
  linear-gradient(to right, $lpe, $lpe);
200
+
201
+ option {
202
+ color: $rbp;
203
+ }
143
204
  }
144
205
 
145
206
  .range {
@@ -153,14 +214,14 @@ hr {
153
214
  }
154
215
 
155
216
  &::-webkit-slider-runnable-track {
156
- box-shadow: inset 0 0 0 1px $hev, inset -1px 0 0 0 $hev;
217
+ box-shadow: inset 0 0 0 1px $hyn;
157
218
  }
158
219
  }
159
220
  }
160
221
 
161
222
  .checkbox .box {
162
- outline-color: $hev;
163
- background-color: $gaq;
223
+ outline-color: $hyn;
224
+ background-color: $npw;
164
225
 
165
226
  svg {
166
227
  fill: $lpe;
@@ -168,11 +229,11 @@ hr {
168
229
  }
169
230
 
170
231
  .upload_box {
171
- outline-color: $hev;
232
+ outline-color: $hyn;
172
233
 
173
234
  .background {
174
235
  &.upload_box_idle {
175
- background-color: $gaq;
236
+ background-color: $npw;
176
237
  }
177
238
 
178
239
  &.upload_box_hover {
@@ -180,27 +241,32 @@ hr {
180
241
  }
181
242
 
182
243
  &.loading {
244
+ background-color: transparent;
183
245
  /* stylelint-disable-next-line function-parentheses-newline-inside */
184
246
  background-image: repeating-linear-gradient(-45deg,
185
- $gaq,
186
- $gaq 14px,
247
+ $npw,
248
+ $npw 14px,
187
249
  $qgp 14px,
188
250
  $qgp 28px); /* stylelint-disable-line function-parentheses-newline-inside */
189
251
  }
190
252
  }
191
253
  }
192
254
 
255
+ &.color .link_btn {
256
+ @include link_colors($iub, $dwk, $yun, $hap);
257
+ }
258
+
193
259
  .color_picker_w {
194
260
  *:not(.pcr-last-color, .pcr-current-color) {
195
- color: $lpe !important;
261
+ color: $rbp !important;
196
262
  }
197
263
 
198
264
  input {
199
- background-color: $gaq !important;
265
+ background-color: $npw !important;
200
266
  outline-color: $hev !important;
201
267
 
202
268
  &:hover:not(.pcr-result, .active) {
203
- background-color: $qgp !important;
269
+ background-color: $hyv !important;
204
270
  }
205
271
  }
206
272
  }
@@ -218,40 +284,16 @@ hr {
218
284
  }
219
285
 
220
286
  .pcr-type.active {
221
- background-color: $yos !important;
287
+ background-color: $nep !important;
222
288
  }
223
289
  }
224
290
 
225
- .link {
226
- color: $ycp;
227
-
228
- &:visited {
229
- color: $ptn;
230
- }
231
-
232
- &:hover {
233
- color: $cop;
234
- }
235
-
236
- &:active {
237
- color: $uzf;
238
- }
291
+ .offer img {
292
+ border-color: $hyn;
239
293
  }
240
294
 
241
- .link_btn {
242
- color: $ycp;
243
-
244
- &:visited {
245
- color: $ptn;
246
- }
247
-
248
- &:hover {
249
- color: $cop;
250
- }
251
-
252
- &:active {
253
- color: $uzf;
254
- }
295
+ .input_error {
296
+ color: $rqb;
255
297
  }
256
298
 
257
299
  .ext_version {
@@ -6,45 +6,57 @@
6
6
  outline-color: $cop;
7
7
  }
8
8
 
9
- &.is_in_warn_state:not(.select)::before {
9
+ &.is_in_warn_state:not(.select)::before,
10
+ &.is_in_warn_state.upload_box {
10
11
  outline-color: $rqb;
11
12
  }
12
13
  }
13
14
 
14
- .visualization_w.opened .visualization,
15
+ .visualization_w.opened .visualization {
16
+ outline-color: $ycp;
17
+ }
18
+
15
19
  .palette_visualization_w.opened .palette_visualization,
16
20
  .palette_visualization_w.selected .palette_visualization {
17
- outline-color: $ycp;
21
+ outline-color: $iub;
18
22
  }
19
23
  }
20
24
 
21
25
  .keyboard .btn.text_input::before,
22
26
  body.keyboard .btn.text:focus,
23
27
  .keyboard .help_btn:focus,
24
- .keyboard .btn.icon:focus,
28
+ .keyboard .icon_btn:focus,
25
29
  .keyboard .input_item .checkbox .box:focus,
26
30
  .keyboard .link:focus,
27
31
  .keyboard .link_btn:focus,
28
32
  .keyboard .input_item .input_w:not(.text, .textarea).is_in_focus_state::before,
29
33
  .keyboard .input_item.range .input.is_in_focus_state,
30
34
  .keyboard .input_item .visualization_w .visualization:focus,
31
- .keyboard .input_item .palette_visualization_w .palette_visualization:focus {
35
+ .keyboard .btn_options .btn_option:focus {
32
36
  outline-color: $ptn;
33
37
  }
34
38
 
39
+ .keyboard .input_item.color .btn.text:focus {
40
+ outline-color: $dwk;
41
+ }
42
+
43
+ .keyboard .input_item .palette_visualization_w .palette_visualization:focus {
44
+ outline-color: $dwk;
45
+ }
46
+
35
47
  .keyboard .input_item .pcr-palette:focus,
36
48
  .keyboard .input_item .pcr-slider:focus,
37
49
  .keyboard .input_item .pcr-picker:focus,
38
50
  .keyboard .input_item .color_picker_w input:not(.pcr-result):focus {
39
- outline-color: $ptn !important;
51
+ outline-color: $dwk !important;
40
52
  }
41
53
 
42
54
  .input_item .pcr-result:focus {
43
- outline-color: $cop !important;
55
+ outline-color: $yun !important;
44
56
  }
45
57
 
46
58
  .keyboard .input_item .pcr-result:focus {
47
- outline-color: $ptn !important;
59
+ outline-color: $dwk !important;
48
60
  }
49
61
 
50
62
  .keyboard .section_btn:not(.selected):focus {
@@ -1,7 +1,9 @@
1
1
  @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
2
4
  @import '../colors/very_dark';
3
5
  @import 'template';
4
6
 
5
7
  .main_2 {
6
- box-shadow: rgb(0 102 255 / 85%) 0 0 36px, rgb(255 255 255 / 40%) 0 0 10px;
8
+ box-shadow: $blue_neon_very_dark;
7
9
  }
@@ -1,20 +1,25 @@
1
1
  /* stylelint-disable selector-class-pattern */
2
2
 
3
3
  .loading_screen,
4
+ .input_item,
5
+ .input_w,
4
6
  .checkbox .box svg,
5
7
  .color_picker_w,
6
8
  .palette_w,
7
- .color_help_w {
9
+ .color_help_w,
10
+ .btn_options,
11
+ .offers {
8
12
  transition: var(--transition);
9
13
  transition-property: opacity;
10
14
  }
11
15
 
12
- .upload_box .background {
16
+ .upload_box .background,
17
+ .btn_options .btn_option {
13
18
  transition: var(--transition);
14
19
  transition-property: background-color;
15
20
  }
16
21
 
17
- .btn:not(.reload_ui, .link_btn) {
22
+ .btn:not(.reload_ui, .link_btn), {
18
23
  transition: var(--transition);
19
24
  transition-property: opacity, background-color;
20
25
  }
@@ -23,6 +28,22 @@
23
28
  .link_btn {
24
29
  transition: var(--transition);
25
30
  transition-property: color;
31
+
32
+ &:active {
33
+ transition: none;
34
+ }
35
+ }
36
+
37
+ .btn.icon_btn,
38
+ .link.svg {
39
+ svg {
40
+ transition: var(--transition);
41
+ transition-property: fill;
42
+
43
+ &:active {
44
+ transition: none;
45
+ }
46
+ }
26
47
  }
27
48
 
28
49
  .color_picker_w input {