@loftyshaky/shared-app 1.0.2 → 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.
- package/_locales/en/messages.json +95 -2
- package/_locales/ru/messages.json +77 -2
- package/announcement.js +1 -1
- package/app.js +1 -1
- package/chunk-main-130f654b.js +9 -0
- package/chunk-main-35e603b6.js +1 -0
- package/{chunk-main-6b1a6024.js → chunk-main-aca0d1f6.js} +1 -1
- package/{chunk-pickr.min-ee5e2c4f.js → chunk-pickr.min-81c0b025.js} +1 -1
- package/ext.js +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/inputs.js +1 -1
- package/js/env.js +11 -3
- package/js/locales.js +23 -8
- package/js/webpack.config.js +9 -0
- package/package.json +2 -2
- package/scss/settings/section_btns.scss +52 -52
- package/scss/settings/sections.scss +22 -0
- package/scss/settings/transitions.scss +2 -12
- package/scss/shared/btns.scss +69 -16
- package/scss/shared/checkboxes.scss +38 -38
- package/scss/shared/close_btn.scss +18 -0
- package/scss/shared/color_pickers.scss +93 -93
- package/scss/shared/colors.scss +90 -84
- package/scss/shared/embed/error.scss +43 -26
- package/scss/shared/focus.scss +15 -9
- package/scss/shared/functions.scss +5 -0
- package/scss/shared/help.scss +3 -5
- package/scss/shared/index.scss +5 -0
- package/scss/shared/input_btns.scss +12 -11
- package/scss/shared/input_error.scss +3 -0
- package/scss/shared/inputs.scss +87 -70
- package/scss/shared/inset_border.scss +0 -4
- package/scss/shared/link_btns.scss +8 -0
- package/scss/shared/links.scss +12 -0
- package/scss/shared/main.scss +3 -0
- package/scss/shared/mixins.scss +50 -0
- package/scss/shared/mods.scss +11 -3
- package/scss/shared/offers.scss +37 -0
- package/scss/shared/scrollbar.scss +35 -35
- package/scss/shared/themes/colors/aqua.scss +39 -0
- package/scss/shared/themes/colors/dark.scss +47 -12
- package/scss/shared/themes/colors/lavender.scss +39 -0
- package/scss/shared/themes/colors/light.scss +47 -12
- package/scss/shared/themes/colors/very_dark.scss +47 -12
- package/scss/shared/themes/general/aqua_theme.scss +9 -0
- package/scss/shared/themes/general/dark_theme.scss +3 -1
- package/scss/shared/themes/general/lavender_theme.scss +9 -0
- package/scss/shared/themes/general/light_theme.scss +3 -1
- package/scss/shared/themes/general/template.scss +112 -70
- package/scss/shared/themes/general/template_focus.scss +20 -8
- package/scss/shared/themes/general/very_dark_theme.scss +3 -1
- package/scss/shared/transitions.scss +24 -3
- package/scss/shared/upload_box.scss +81 -67
- package/scss/shared/vars.scss +9 -2
- package/settings.d.ts +1 -1
- package/settings.js +1 -1
- package/ts/error_modules/error/components/index.d.ts +2 -0
- package/ts/error_modules/error/components/keep_visible_msg.d.ts +2 -0
- package/ts/error_modules/error/components/progress.d.ts +2 -0
- package/ts/error_modules/error/data/index.d.ts +1 -0
- package/ts/error_modules/error/data/main.d.ts +2 -1
- package/ts/error_modules/error/data/msg.d.ts +0 -2
- package/ts/error_modules/error/data/progress.d.ts +17 -0
- package/ts/error_modules/error/data/state.d.ts +3 -2
- package/ts/error_modules/error/interfaces/index.d.ts +2 -0
- package/ts/error_modules/error/interfaces/notification_type.d.ts +1 -0
- package/ts/error_modules/error/interfaces/observable_keys.d.ts +1 -1
- package/ts/error_modules/error/interfaces/show_error.d.ts +7 -2
- package/ts/error_modules/error/interfaces/show_unable_to_access_settings_error.d.ts +5 -0
- package/ts/error_modules/error/scripts/flash.d.ts +11 -0
- package/ts/error_modules/error/scripts/globals.d.ts +3 -0
- package/ts/error_modules/error/scripts/index.d.ts +2 -0
- package/ts/error_modules/error/scripts/notification.d.ts +8 -0
- package/ts/error_modules/init.d.ts +1 -0
- package/ts/error_modules/internal.d.ts +1 -0
- package/ts/inputs/components/form.d.ts +3 -0
- package/ts/inputs/components/index.d.ts +4 -0
- package/ts/inputs/components/input_error.d.ts +3 -0
- package/ts/inputs/components/label_in_input_item.d.ts +3 -0
- package/ts/inputs/components/link_icon_btn.d.ts +3 -0
- package/ts/inputs/components/prop_types/form.d.ts +5 -0
- package/ts/inputs/components/prop_types/index.d.ts +4 -0
- package/ts/inputs/components/prop_types/input_error.d.ts +4 -0
- package/ts/inputs/components/prop_types/label.d.ts +2 -2
- package/ts/inputs/components/prop_types/label_in_input_item.d.ts +4 -0
- package/ts/inputs/components/prop_types/link_icon_btn.d.ts +5 -0
- package/ts/inputs/components/prop_types/range.d.ts +2 -0
- package/ts/inputs/components/prop_types/section_btn.d.ts +1 -0
- package/ts/inputs/components/prop_types/section_content.d.ts +2 -1
- package/ts/inputs/components/prop_types/select.d.ts +2 -0
- package/ts/inputs/components/prop_types/text.d.ts +2 -0
- package/ts/inputs/components/prop_types/textarea.d.ts +2 -0
- package/ts/inputs/components/prop_types/upload_box.d.ts +1 -0
- package/ts/inputs/data/index.d.ts +2 -1
- package/ts/inputs/data/input_error.d.ts +12 -0
- package/ts/inputs/data/input_width.d.ts +5 -1
- package/ts/inputs/data/{label.d.ts → labelIn_in_putI_iem.d.ts} +2 -2
- package/ts/inputs/data/upload_box.d.ts +4 -0
- package/ts/inputs/data/val.d.ts +10 -5
- package/ts/inputs/interfaces/btn_option.d.ts +9 -0
- package/ts/inputs/interfaces/index.d.ts +1 -0
- package/ts/inputs/interfaces/input.d.ts +1 -1
- package/ts/inputs/obj/btn.d.ts +1 -0
- package/ts/inputs/obj/file.d.ts +1 -0
- package/ts/inputs/obj/form.d.ts +7 -0
- package/ts/inputs/obj/icon_btn.d.ts +2 -1
- package/ts/inputs/obj/index.d.ts +2 -0
- package/ts/inputs/obj/input_base.d.ts +11 -3
- package/ts/inputs/obj/label.d.ts +5 -0
- package/ts/inputs/obj/link.d.ts +4 -0
- package/ts/inputs/obj/link_btn.d.ts +2 -1
- package/ts/inputs/obj/section.d.ts +14 -0
- package/ts/inputs/obj/text.d.ts +2 -1
- package/ts/inputs/obj/upload_box.d.ts +4 -0
- package/ts/inputs/scripts/resolve.d.ts +3 -1
- package/ts/settings/components/prop_types/body.d.ts +1 -0
- package/ts/settings/data/back_up.d.ts +2 -1
- package/ts/settings/data/sections.d.ts +7 -1
- package/ts/settings/developer_mode/data/main.d.ts +13 -0
- package/ts/settings/internal.d.ts +1 -2
- package/ts/shared/app.d.ts +10 -3
- package/ts/shared/ext.d.ts +3 -0
- package/ts/shared/internal.d.ts +10 -0
- package/ts/shared/offers/components/body.d.ts +3 -0
- package/ts/shared/offers/components/counter.d.ts +2 -0
- package/ts/shared/offers/components/index.d.ts +6 -0
- package/ts/shared/offers/components/next_offer_btn.d.ts +2 -0
- package/ts/shared/offers/components/offer.d.ts +3 -0
- package/ts/shared/offers/components/previous_offer_btn.d.ts +2 -0
- package/ts/shared/offers/components/prop_types/body.d.ts +5 -0
- package/ts/shared/offers/components/prop_types/index.d.ts +2 -0
- package/ts/shared/offers/components/prop_types/offer.d.ts +4 -0
- package/ts/shared/offers/components/top_bar.d.ts +2 -0
- package/ts/shared/offers/data/index.d.ts +1 -0
- package/ts/shared/offers/data/main.d.ts +22 -0
- package/ts/shared/offers/interfaces/index.d.ts +1 -0
- package/ts/shared/offers/interfaces/offer_banner_type.d.ts +1 -0
- package/ts/shared/offers/obj/index.d.ts +1 -0
- package/ts/shared/offers/obj/offer.d.ts +10 -0
- package/ts/shared/offers/scripts/index.d.ts +1 -0
- package/ts/shared/offers/scripts/main.d.ts +8 -0
- package/ts/shared/schema/data/index.d.ts +1 -0
- package/ts/{settings → shared}/schema/data/main.d.ts +4 -2
- package/ts/shared/service_worker/scripts/index.d.ts +1 -0
- package/ts/shared/service_worker/scripts/main.d.ts +9 -0
- package/ts/shared/settings/data/index.d.ts +1 -0
- package/ts/shared/settings/data/main.d.ts +15 -0
- package/ts/shared/svg.d.ts +2 -0
- package/ts/shared/t.d.ts +2 -0
- package/ts/shared/vars.d.ts +1 -0
- package/ts/shared/x.d.ts +9 -0
- package/chunk-main-303525a1.js +0 -1
- package/chunk-main-3865bde3.js +0 -9
- /package/ts/settings/{schema → developer_mode}/data/index.d.ts +0 -0
- /package/ts/{settings → shared}/schema/obj/index.d.ts +0 -0
- /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
|
-
$
|
|
2
|
-
$
|
|
3
|
-
$
|
|
4
|
-
$
|
|
5
|
-
$
|
|
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:
|
|
8
|
-
$
|
|
9
|
-
$
|
|
10
|
-
$
|
|
11
|
-
$
|
|
12
|
-
$
|
|
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:
|
|
47
|
+
$nqp: $theme_color_gsl;
|
|
48
|
+
$hgb: $theme_color_gsl;
|
|
49
|
+
$beu: rgb(255 255 255 / 75%);
|
|
@@ -1,14 +1,49 @@
|
|
|
1
|
-
$
|
|
2
|
-
$
|
|
3
|
-
$
|
|
4
|
-
$
|
|
5
|
-
$
|
|
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:
|
|
8
|
-
$
|
|
9
|
-
$
|
|
10
|
-
$
|
|
11
|
-
$
|
|
12
|
-
$
|
|
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:
|
|
47
|
+
$nqp: $theme_color_gsl;
|
|
48
|
+
$hgb: $theme_color_gsl;
|
|
49
|
+
$beu: rgb(0 0 0 / 90%);
|
|
@@ -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: $
|
|
14
|
-
border-color: $
|
|
17
|
+
background-color: $hyn;
|
|
18
|
+
border-color: $hyn;
|
|
15
19
|
}
|
|
16
20
|
|
|
17
21
|
&::-webkit-scrollbar-track {
|
|
18
|
-
background-color: $
|
|
19
|
-
border-color: $gaq;
|
|
22
|
+
background-color: $npw;
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
&::-webkit-scrollbar-thumb {
|
|
23
|
-
background-color: $
|
|
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: $
|
|
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
|
|
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
|
-
|
|
56
|
-
|
|
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
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
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: $
|
|
110
|
+
background-color: $hyn;
|
|
88
111
|
}
|
|
89
112
|
|
|
90
|
-
.
|
|
91
|
-
background-color: $
|
|
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: $
|
|
141
|
+
background-color: $gvb;
|
|
96
142
|
|
|
97
143
|
.section_btn {
|
|
98
|
-
background-color: $
|
|
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: $
|
|
158
|
+
outline-color: $hyn;
|
|
113
159
|
}
|
|
114
160
|
|
|
115
161
|
.input {
|
|
116
|
-
background-color: $
|
|
162
|
+
background-color: $npw;
|
|
163
|
+
|
|
164
|
+
&::placeholder {
|
|
165
|
+
color: $mdc;
|
|
166
|
+
}
|
|
117
167
|
}
|
|
118
168
|
|
|
119
169
|
.btn.text_input {
|
|
120
|
-
background-color: $
|
|
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
|
-
|
|
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 $
|
|
217
|
+
box-shadow: inset 0 0 0 1px $hyn;
|
|
157
218
|
}
|
|
158
219
|
}
|
|
159
220
|
}
|
|
160
221
|
|
|
161
222
|
.checkbox .box {
|
|
162
|
-
outline-color: $
|
|
163
|
-
background-color: $
|
|
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: $
|
|
232
|
+
outline-color: $hyn;
|
|
172
233
|
|
|
173
234
|
.background {
|
|
174
235
|
&.upload_box_idle {
|
|
175
|
-
background-color: $
|
|
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
|
-
$
|
|
186
|
-
$
|
|
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: $
|
|
261
|
+
color: $rbp !important;
|
|
196
262
|
}
|
|
197
263
|
|
|
198
264
|
input {
|
|
199
|
-
background-color: $
|
|
265
|
+
background-color: $npw !important;
|
|
200
266
|
outline-color: $hev !important;
|
|
201
267
|
|
|
202
268
|
&:hover:not(.pcr-result, .active) {
|
|
203
|
-
background-color: $
|
|
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: $
|
|
287
|
+
background-color: $nep !important;
|
|
222
288
|
}
|
|
223
289
|
}
|
|
224
290
|
|
|
225
|
-
.
|
|
226
|
-
color: $
|
|
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
|
-
.
|
|
242
|
-
color: $
|
|
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: $
|
|
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 .
|
|
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 .
|
|
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: $
|
|
51
|
+
outline-color: $dwk !important;
|
|
40
52
|
}
|
|
41
53
|
|
|
42
54
|
.input_item .pcr-result:focus {
|
|
43
|
-
outline-color: $
|
|
55
|
+
outline-color: $yun !important;
|
|
44
56
|
}
|
|
45
57
|
|
|
46
58
|
.keyboard .input_item .pcr-result:focus {
|
|
47
|
-
outline-color: $
|
|
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:
|
|
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 {
|