microboard-ui-temp 0.8.0 → 0.9.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/dist/spa.css CHANGED
@@ -91,7 +91,7 @@
91
91
  /* src/entities/account/AuthForm.module.css */
92
92
  .wrapper_nFyDWw {
93
93
  display: flex;
94
- background-color: #fff;
94
+ background-color: var(--background-surface-default);
95
95
  flex-direction: column;
96
96
  justify-content: center;
97
97
  align-items: stretch;
@@ -110,7 +110,7 @@
110
110
 
111
111
  .link_nFyDWw {
112
112
  text-decoration: none;
113
- color: #6c7173;
113
+ color: var(--text-base-secondary);
114
114
  display: flex;
115
115
  justify-content: center;
116
116
  align-self: flex-start;
@@ -126,7 +126,7 @@
126
126
  }
127
127
 
128
128
  .link_nFyDWw:visited {
129
- color: #6c7173;
129
+ color: var(--text-base-secondary);
130
130
  }
131
131
 
132
132
  .title_nFyDWw {
@@ -141,13 +141,13 @@
141
141
  }
142
142
 
143
143
  .button_nFyDWw {
144
- color: #fff;
145
144
  cursor: pointer;
146
145
  outline-color: #0000;
147
146
  box-sizing: border-box;
148
147
  display: flex;
149
- background-color: #14151a;
150
- border: 1px solid #14151a;
148
+ border: 1px solid var(--text-base-primary);
149
+ background-color: var(--text-base-primary);
150
+ color: var(--background-surface-default);
151
151
  border-radius: 12px;
152
152
  justify-content: center;
153
153
  align-items: center;
@@ -161,16 +161,16 @@
161
161
  }
162
162
 
163
163
  .button_nFyDWw:disabled {
164
- color: #0a0f2940;
165
- background-color: #e9eaec;
166
- border-color: #e9eaec;
164
+ border-color: var(--border-action-normal);
165
+ background-color: var(--border-action-normal);
166
+ color: var(--text-base-quaternary);
167
167
  }
168
168
 
169
169
  .button_nFyDWw:disabled:hover {
170
170
  cursor: not-allowed;
171
- color: #0a0f2940;
172
- background-color: #e9eaec;
173
- border-color: #e9eaec;
171
+ border-color: var(--border-action-normal);
172
+ background-color: var(--border-action-normal);
173
+ color: var(--text-base-quaternary);
174
174
  }
175
175
 
176
176
  .button_nFyDWw:active {
@@ -178,7 +178,7 @@
178
178
  }
179
179
 
180
180
  .button_nFyDWw:hover {
181
- background-color: #1f2228;
181
+ opacity: .88;
182
182
  }
183
183
 
184
184
  .forgot_nFyDWw {
@@ -489,6 +489,103 @@
489
489
  color: #0a0f2940;
490
490
  }
491
491
 
492
+ [data-theme="dark"] .secondary_XNHIwg {
493
+ --background-color: var(--background-button-secondary);
494
+ --background-hover-color: var(--background-button-secondary-hover);
495
+ --background-active-color: var(--background-button-secondary-hover);
496
+ --background-disabled-color: var(--background-button-secondary);
497
+ --content-color: var(--text-base-primary);
498
+ --content-hover-color: var(--text-base-primary);
499
+ --content-disabled-color: #e8e9f04d;
500
+ }
501
+
502
+ [data-theme="dark"] .tertiary_XNHIwg {
503
+ --background-color: #2a2b34;
504
+ --background-hover-color: #373842;
505
+ --background-active-color: #373842;
506
+ --content-color: var(--text-base-primary);
507
+ --content-hover-color: var(--text-base-primary);
508
+ --content-disabled-color: #e8e9f040;
509
+ }
510
+
511
+ [data-theme="dark"] .primary_XNHIwg {
512
+ color: #14151a;
513
+ background-color: #e8e9f0;
514
+ border-color: #34353e;
515
+ }
516
+
517
+ [data-theme="dark"] .primary_XNHIwg:hover:not(:disabled) {
518
+ color: #14151a;
519
+ background-color: #d2d4de;
520
+ }
521
+
522
+ [data-theme="dark"] .primary_XNHIwg:disabled {
523
+ color: #e8e9f040;
524
+ background-color: #34353e;
525
+ border-color: #34353e;
526
+ }
527
+
528
+ [data-theme="dark"] .tertiary_XNHIwg {
529
+ border-color: var(--border-action-normal);
530
+ color: var(--text-base-primary);
531
+ background-color: #2a2b34;
532
+ }
533
+
534
+ [data-theme="dark"] .tertiary_XNHIwg:hover:not(:disabled) {
535
+ color: var(--text-base-primary);
536
+ background-color: #373842;
537
+ }
538
+
539
+ [data-theme="dark"] .ghost_XNHIwg {
540
+ color: var(--text-base-secondary);
541
+ }
542
+
543
+ [data-theme="dark"] .ghost_XNHIwg:hover {
544
+ color: var(--text-base-secondary);
545
+ background-color: #e8e9f00f;
546
+ }
547
+
548
+ [data-theme="dark"] .ghost_XNHIwg:disabled {
549
+ color: #e8e9f040;
550
+ }
551
+
552
+ [data-theme="dark"] .ghostFilled_XNHIwg {
553
+ color: var(--text-base-secondary);
554
+ background-color: #e8e9f00f;
555
+ }
556
+
557
+ [data-theme="dark"] .ghostFilled_XNHIwg:disabled {
558
+ color: #e8e9f040;
559
+ }
560
+
561
+ [data-theme="dark"] .quaternary_XNHIwg {
562
+ color: var(--text-base-primary);
563
+ background-color: #e8e9f00f;
564
+ }
565
+
566
+ [data-theme="dark"] .quaternary_XNHIwg:disabled {
567
+ color: var(--text-base-primary);
568
+ background-color: #e8e9f00f;
569
+ }
570
+
571
+ [data-theme="dark"] .quaternary_XNHIwg:disabled {
572
+ color: #e8e9f040;
573
+ }
574
+
575
+ [data-theme="dark"] .quaternary_XNHIwg:hover:not(:disabled) {
576
+ color: var(--text-base-primary);
577
+ background-color: #e8e9f01a;
578
+ }
579
+
580
+ [data-theme="dark"] .black_XNHIwg {
581
+ --background-color: #e8e9f0;
582
+ --background-hover-color: #d2d4de;
583
+ --background-active-color: #d2d4de;
584
+ --content-color: #14151a;
585
+ --content-hover-color: #14151a;
586
+ --content-active-color: #14151a;
587
+ }
588
+
492
589
  .loader_XNHIwg {
493
590
  display: flex;
494
591
  animation: rotate 2s linear infinite;
@@ -1685,23 +1782,24 @@ body {
1685
1782
  }
1686
1783
 
1687
1784
  .inputLabel_2Ex0qA.disabled_2Ex0qA {
1688
- color: #0a0f2940;
1785
+ color: var(--text-base-quaternary);
1689
1786
  }
1690
1787
 
1691
1788
  .input_2Ex0qA {
1692
1789
  outline: none;
1693
- color: #0f1324;
1790
+ color: var(--text-base-primary);
1791
+ background-color: #0000;
1694
1792
  width: 100%;
1695
1793
  font-family: Manrope, Arial;
1696
1794
  font-size: 14px;
1697
1795
  }
1698
1796
 
1699
1797
  .input_2Ex0qA:disabled, .input_2Ex0qA:disabled::placeholder {
1700
- color: #0a0f2940;
1798
+ color: var(--text-base-quaternary);
1701
1799
  }
1702
1800
 
1703
1801
  .input_2Ex0qA::placeholder {
1704
- color: #0f132499;
1802
+ color: var(--text-base-secondary);
1705
1803
  font-family: Manrope, Arial;
1706
1804
  }
1707
1805
 
@@ -1710,7 +1808,7 @@ body {
1710
1808
  }
1711
1809
 
1712
1810
  .inputHelperText_2Ex0qA {
1713
- color: #0f132499;
1811
+ color: var(--text-base-secondary);
1714
1812
  font-size: 14px;
1715
1813
  }
1716
1814
 
@@ -1726,7 +1824,8 @@ body {
1726
1824
 
1727
1825
  .inputContainer_2Ex0qA {
1728
1826
  display: flex;
1729
- border: 1px solid #dee0e3;
1827
+ border: 1px solid var(--border-action-normal);
1828
+ background-color: var(--background-button-secondary);
1730
1829
  border-radius: 12px;
1731
1830
  width: 100%;
1732
1831
  padding: 10px 12px;
@@ -1779,7 +1878,8 @@ body {
1779
1878
  outline: none;
1780
1879
  resize: none;
1781
1880
  overflow: hidden;
1782
- color: #0f1324;
1881
+ color: var(--text-base-primary);
1882
+ background-color: #0000;
1783
1883
  width: 100%;
1784
1884
  height: 20px;
1785
1885
  font-family: Manrope, Arial;
@@ -7903,6 +8003,12 @@ td.currentTariff_0VfwRg {
7903
8003
  padding: 0;
7904
8004
  }
7905
8005
 
8006
+ @media (hover: hover) {
8007
+ .button_rNYg_A:hover {
8008
+ z-index: 1;
8009
+ }
8010
+ }
8011
+
7906
8012
  .button_rNYg_A.active_rNYg_A:before {
7907
8013
  position: absolute;
7908
8014
  content: "";
@@ -7955,6 +8061,7 @@ td.currentTariff_0VfwRg {
7955
8061
 
7956
8062
  @media (hover: hover) {
7957
8063
  .button_ClApmw:hover {
8064
+ z-index: 1;
7958
8065
  background-color: #e9eaec;
7959
8066
  }
7960
8067
  }
@@ -13302,7 +13409,7 @@ audio::-webkit-media-controls-enclosure {
13302
13409
  .NavbarWrapper .Logo {
13303
13410
  display: flex;
13304
13411
  text-decoration: none;
13305
- color: #14151a;
13412
+ color: var(--text-base-primary);
13306
13413
  align-items: center;
13307
13414
  gap: 4px;
13308
13415
  height: 48px;
@@ -13312,7 +13419,7 @@ audio::-webkit-media-controls-enclosure {
13312
13419
  }
13313
13420
 
13314
13421
  .NavbarWrapper .Logo:visited {
13315
- color: #14151a;
13422
+ color: var(--text-base-primary);
13316
13423
  }
13317
13424
 
13318
13425
  .NavbarWrapper .Link {
@@ -13339,10 +13446,11 @@ audio::-webkit-media-controls-enclosure {
13339
13446
 
13340
13447
  .NavbarWrapper .LinkActive {
13341
13448
  box-sizing: border-box;
13342
- color: #14151a;
13449
+ background-color: var(--background-button-secondary);
13450
+ border: 1px solid #0000;
13451
+ border: 1px solid var(--border-action-normal);
13452
+ color: var(--text-base-primary);
13343
13453
  text-decoration: none;
13344
- background-color: #fff;
13345
- border: 1px solid #dee0e3;
13346
13454
  border-radius: 10px;
13347
13455
  height: 32px;
13348
13456
  padding: 6px 10px;
@@ -13351,13 +13459,13 @@ audio::-webkit-media-controls-enclosure {
13351
13459
  }
13352
13460
 
13353
13461
  .NavbarWrapper .LinkActive:hover {
13354
- color: #14151a;
13355
- background-color: #f7f7f8;
13462
+ background-color: var(--background-button-secondary-hover);
13463
+ color: var(--text-base-primary);
13356
13464
  }
13357
13465
 
13358
13466
  .NavbarWrapper .LinkActive:active {
13467
+ background-color: var(--background-button-secondary);
13359
13468
  outline: 2px solid #c8b2ff80;
13360
- background-color: #fff;
13361
13469
  border: 1px solid #b78af0;
13362
13470
  }
13363
13471
 
@@ -13380,6 +13488,28 @@ audio::-webkit-media-controls-enclosure {
13380
13488
  gap: 16px;
13381
13489
  }
13382
13490
 
13491
+ .NavbarActions {
13492
+ display: flex;
13493
+ align-items: center;
13494
+ gap: 8px;
13495
+ }
13496
+
13497
+ .ThemeToggle {
13498
+ display: flex;
13499
+ cursor: pointer;
13500
+ color: var(--icon-base-primary);
13501
+ border-radius: 8px;
13502
+ justify-content: center;
13503
+ align-items: center;
13504
+ width: 32px;
13505
+ height: 32px;
13506
+ transition: background-color .15s;
13507
+ }
13508
+
13509
+ .ThemeToggle:hover {
13510
+ background-color: var(--background-button-secondary-hover);
13511
+ }
13512
+
13383
13513
  .Link.Back {
13384
13514
  color: var(--icon-base-secondary);
13385
13515
  display: flex;
@@ -13402,7 +13532,7 @@ audio::-webkit-media-controls-enclosure {
13402
13532
 
13403
13533
  @media screen and (max-width: 640px) {
13404
13534
  .NavbarWrapper {
13405
- border-bottom: 1px solid #dee0e3;
13535
+ border-bottom: 1px solid var(--border-action-normal);
13406
13536
  }
13407
13537
 
13408
13538
  .NavbarWrapper .Links {
@@ -13456,7 +13586,7 @@ audio::-webkit-media-controls-enclosure {
13456
13586
  }
13457
13587
 
13458
13588
  .policy_hbU_PQ {
13459
- color: #0f132499;
13589
+ color: var(--text-base-secondary);
13460
13590
  text-align: center;
13461
13591
  margin-top: auto;
13462
13592
  margin-bottom: 40px;
@@ -13466,14 +13596,14 @@ audio::-webkit-media-controls-enclosure {
13466
13596
 
13467
13597
  .policyLink_hbU_PQ {
13468
13598
  position: relative;
13469
- color: #0f132499;
13599
+ color: var(--text-base-secondary);
13470
13600
  text-decoration: none;
13471
13601
  }
13472
13602
 
13473
13603
  .policyLink_hbU_PQ:after {
13474
13604
  content: "";
13475
13605
  position: absolute;
13476
- background-color: #0a0f2914;
13606
+ background-color: var(--border-action-normal);
13477
13607
  width: 100%;
13478
13608
  height: 2px;
13479
13609
  bottom: -3px;
@@ -14497,6 +14627,25 @@ audio::-webkit-media-controls-enclosure {
14497
14627
  --absolute-position-panel-padding: 12px;
14498
14628
  }
14499
14629
 
14630
+ [data-theme="dark"] {
14631
+ --background-surface-default: #1e1f26;
14632
+ --background-button-secondary: #1e1f26;
14633
+ --background-button-secondary-hover: #2a2b34;
14634
+ --background-badge-purple-disabled: #281c3c;
14635
+ --background-badge-gray: #2d2e37;
14636
+ --background-accent-purple: #924fe8;
14637
+ --border-action-normal: #34353e;
14638
+ --border-action-focus: #924fe8;
14639
+ --border-select-primary: #924fe8;
14640
+ --text-base-primary: #e8e9f0;
14641
+ --text-base-secondary: #e8e9f099;
14642
+ --text-base-quaternary: #e8e9f040;
14643
+ --text-accent-purple: #ac78f5;
14644
+ --icon-base-primary: #e8e9f0;
14645
+ --icon-base-secondary: #9496a5;
14646
+ --icon-accent-purple: #924fe8;
14647
+ }
14648
+
14500
14649
  * {
14501
14650
  box-sizing: border-box;
14502
14651
  background: none;
@@ -14516,6 +14665,7 @@ html {
14516
14665
 
14517
14666
  body {
14518
14667
  color: var(--text-base-primary);
14668
+ background-color: var(--background-surface-default);
14519
14669
  font-optical-sizing: auto;
14520
14670
  font-family: Manrope, sans-serif;
14521
14671
  font-size: 1.6rem;
@@ -14542,3 +14692,23 @@ input:-webkit-autofill:focus {
14542
14692
  input:-webkit-autofill:active {
14543
14693
  -webkit-box-shadow: inset 0 0 0 30px #fff !important;
14544
14694
  }
14695
+
14696
+ [data-theme="dark"] input:-webkit-autofill {
14697
+ -webkit-text-fill-color: #e8e9f0 !important;
14698
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14699
+ }
14700
+
14701
+ [data-theme="dark"] input:-webkit-autofill:hover {
14702
+ -webkit-text-fill-color: #e8e9f0 !important;
14703
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14704
+ }
14705
+
14706
+ [data-theme="dark"] input:-webkit-autofill:focus {
14707
+ -webkit-text-fill-color: #e8e9f0 !important;
14708
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14709
+ }
14710
+
14711
+ [data-theme="dark"] input:-webkit-autofill:active {
14712
+ -webkit-text-fill-color: #e8e9f0 !important;
14713
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14714
+ }