microboard-ui-temp 0.1.169 → 0.3.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/_redirects +1 -0
- package/dist/{chunk-g9f7dzez.js → chunk-dy5ccdyb.js} +73513 -73170
- package/dist/{chunk-d2kcyv9d.css → chunk-f0mvcsbm.css} +424 -223
- package/dist/env.js +5 -0
- package/dist/example.html +2 -2
- package/dist/index.css +424 -223
- package/dist/index.html +96 -0
- package/dist/index.js +73513 -73170
- package/dist/spa.css +424 -223
- package/dist/spa.js +73513 -73170
- package/dist/titlePanel.js +21 -8
- package/dist/types/App/Connection.d.ts +11 -15
- package/dist/types/App/Storage.d.ts +2 -0
- package/dist/types/entities/comments/Thread/message/Message.d.ts +1 -1
- package/dist/types/entities/comments/{useScrollToUnreadMessage.d.ts → hooks/useScrollToUnreadMessage.d.ts} +2 -1
- package/dist/types/entities/comments/index.d.ts +1 -1
- package/dist/types/features/BoardItemsPanel/BoardItemsPanel.d.ts +2 -0
- package/dist/types/features/BoardItemsPanel/BoardItemsPanelContext.d.ts +11 -0
- package/dist/types/features/BoardItemsPanel/index.d.ts +2 -0
- package/dist/types/features/SidePanel/BoardItemsList.d.ts +6 -0
- package/dist/types/features/SidePanel/SidePanelContext.d.ts +3 -0
- package/dist/types/features/Templates/SelectTemplateModal/TemplateItemPreview/TemplateItemPreview.d.ts +3 -8
- package/dist/types/features/Templates/SelectTemplateModal/TemplateItemsGrid/TemplateItem/TemplateItem.d.ts +1 -1
- package/dist/types/features/Templates/SelectTemplateModal/TemplateItemsGrid/TemplateItemsGrid.d.ts +1 -1
- package/dist/types/features/Templates/lib.d.ts +1 -0
- package/dist/types/features/Templates/types.d.ts +8 -0
- package/dist/types/pages/TemplateBoardPage.d.ts +2 -0
- package/dist/types/shared/Lang/index.d.ts +2 -0
- package/dist/types/shared/api/base/base.d.ts +1 -0
- package/dist/types/shared/api/billing/types.d.ts +2 -2
- package/dist/types/shared/api/users/api.d.ts +3 -1
- package/dist/types/shared/lib/useHotkey.d.ts +8 -0
- package/package.json +8 -3
- /package/dist/types/entities/comments/{useCommentsMerge.d.ts → hooks/useCommentsMerge.d.ts} +0 -0
- /package/dist/types/entities/comments/{useIntersectionObserver.d.ts → hooks/useIntersectionObserver.d.ts} +0 -0
- /package/dist/types/{entities/comments → shared/date}/lib.d.ts +0 -0
package/dist/spa.css
CHANGED
|
@@ -88,6 +88,150 @@
|
|
|
88
88
|
margin: 0 10px;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
/* src/entities/account/AuthForm.module.css */
|
|
92
|
+
.wrapper_nFyDWw {
|
|
93
|
+
display: flex;
|
|
94
|
+
background-color: #fff;
|
|
95
|
+
flex-direction: column;
|
|
96
|
+
justify-content: center;
|
|
97
|
+
align-items: stretch;
|
|
98
|
+
width: 100%;
|
|
99
|
+
height: 100%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.form_nFyDWw {
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
display: flex;
|
|
105
|
+
border-radius: 8px;
|
|
106
|
+
flex-direction: column;
|
|
107
|
+
gap: 16px;
|
|
108
|
+
width: 100%;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.link_nFyDWw {
|
|
112
|
+
text-decoration: none;
|
|
113
|
+
color: #6c7173;
|
|
114
|
+
display: flex;
|
|
115
|
+
justify-content: center;
|
|
116
|
+
align-self: flex-start;
|
|
117
|
+
width: 100%;
|
|
118
|
+
margin-top: 10px;
|
|
119
|
+
font-family: Manrope, Arial;
|
|
120
|
+
font-size: 14px;
|
|
121
|
+
font-weight: 600;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.link_nFyDWw:hover {
|
|
125
|
+
text-decoration: underline;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.link_nFyDWw:visited {
|
|
129
|
+
color: #6c7173;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.title_nFyDWw {
|
|
133
|
+
text-align: center;
|
|
134
|
+
margin-bottom: 32px;
|
|
135
|
+
font-family: Manrope, Arial;
|
|
136
|
+
font-weight: 600;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.error_nFyDWw {
|
|
140
|
+
color: red;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.button_nFyDWw {
|
|
144
|
+
color: #fff;
|
|
145
|
+
cursor: pointer;
|
|
146
|
+
outline-color: #0000;
|
|
147
|
+
box-sizing: border-box;
|
|
148
|
+
display: flex;
|
|
149
|
+
background-color: #14151a;
|
|
150
|
+
border: 1px solid #14151a;
|
|
151
|
+
border-radius: 12px;
|
|
152
|
+
justify-content: center;
|
|
153
|
+
align-items: center;
|
|
154
|
+
gap: 8px;
|
|
155
|
+
width: 100%;
|
|
156
|
+
height: 40px;
|
|
157
|
+
margin-top: 32px;
|
|
158
|
+
font-family: Manrope, Arial;
|
|
159
|
+
font-size: 14px;
|
|
160
|
+
font-weight: 500;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.button_nFyDWw:disabled {
|
|
164
|
+
color: #0a0f2940;
|
|
165
|
+
background-color: #e9eaec;
|
|
166
|
+
border-color: #e9eaec;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.button_nFyDWw:disabled:hover {
|
|
170
|
+
cursor: not-allowed;
|
|
171
|
+
color: #0a0f2940;
|
|
172
|
+
background-color: #e9eaec;
|
|
173
|
+
border-color: #e9eaec;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.button_nFyDWw:active {
|
|
177
|
+
outline: 2px solid #c8b2ff80;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.button_nFyDWw:hover {
|
|
181
|
+
background-color: #1f2228;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.forgot_nFyDWw {
|
|
185
|
+
font-weight: 600 !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.btns_nFyDWw {
|
|
189
|
+
display: flex;
|
|
190
|
+
flex-direction: column;
|
|
191
|
+
align-items: center;
|
|
192
|
+
gap: 12px;
|
|
193
|
+
width: 100%;
|
|
194
|
+
margin-top: 16px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.anotherBtns_nFyDWw {
|
|
198
|
+
display: flex;
|
|
199
|
+
flex-direction: column;
|
|
200
|
+
gap: 16px;
|
|
201
|
+
width: 100%;
|
|
202
|
+
margin: 0 0 40px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
@media screen and (max-width: 640px) {
|
|
206
|
+
.title_nFyDWw {
|
|
207
|
+
margin-bottom: 8px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.policy_nFyDWw {
|
|
211
|
+
text-align: center;
|
|
212
|
+
margin-bottom: 20px;
|
|
213
|
+
font-size: 14px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.policyLink_nFyDWw {
|
|
217
|
+
text-decoration: none;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.policyLink_nFyDWw:after {
|
|
221
|
+
content: "";
|
|
222
|
+
position: absolute;
|
|
223
|
+
background-color: #0000;
|
|
224
|
+
width: 100%;
|
|
225
|
+
height: 2px;
|
|
226
|
+
bottom: -3px;
|
|
227
|
+
left: 0;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.btns_nFyDWw {
|
|
231
|
+
margin-top: 8px;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
91
235
|
/* src/shared/ui-lib/UiButton/UiButton.module.css */
|
|
92
236
|
.default_XNHIwg {
|
|
93
237
|
--background-color: #924fe8;
|
|
@@ -695,182 +839,29 @@
|
|
|
695
839
|
opacity: 0;
|
|
696
840
|
}
|
|
697
841
|
|
|
698
|
-
100% {
|
|
699
|
-
opacity: 1;
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
@keyframes fadeOut_Bde5bA {
|
|
704
|
-
0% {
|
|
705
|
-
opacity: 1;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
100% {
|
|
709
|
-
opacity: 0;
|
|
710
|
-
}
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
/* src/shared/ui-lib/Loader/Loader.module.css */
|
|
714
|
-
.loader_U95jQg {
|
|
715
|
-
animation: loaderAnimation 1s infinite steps(12);
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
@keyframes loaderAnimation_XZFUtg {
|
|
719
|
-
100% {
|
|
720
|
-
transform: rotate(1turn);
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
/* src/features/WalletLoginButton/WalletLoginButton.module.css */
|
|
725
|
-
.btn_JyYbVQ {
|
|
726
|
-
position: relative;
|
|
727
|
-
width: 100%;
|
|
728
|
-
max-width: 252px;
|
|
729
|
-
margin: 0 auto;
|
|
730
|
-
font-weight: 500;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
/* src/entities/account/AuthForm.module.css */
|
|
734
|
-
.wrapper_nFyDWw {
|
|
735
|
-
display: flex;
|
|
736
|
-
background-color: #fff;
|
|
737
|
-
flex-direction: column;
|
|
738
|
-
justify-content: center;
|
|
739
|
-
align-items: stretch;
|
|
740
|
-
width: 100%;
|
|
741
|
-
height: 100%;
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
.form_nFyDWw {
|
|
745
|
-
box-sizing: border-box;
|
|
746
|
-
display: flex;
|
|
747
|
-
border-radius: 8px;
|
|
748
|
-
flex-direction: column;
|
|
749
|
-
gap: 16px;
|
|
750
|
-
width: 100%;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.link_nFyDWw {
|
|
754
|
-
text-decoration: none;
|
|
755
|
-
color: #6c7173;
|
|
756
|
-
display: flex;
|
|
757
|
-
justify-content: center;
|
|
758
|
-
align-self: flex-start;
|
|
759
|
-
width: 100%;
|
|
760
|
-
margin-top: 10px;
|
|
761
|
-
font-family: Manrope, Arial;
|
|
762
|
-
font-size: 14px;
|
|
763
|
-
font-weight: 600;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.link_nFyDWw:hover {
|
|
767
|
-
text-decoration: underline;
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
.link_nFyDWw:visited {
|
|
771
|
-
color: #6c7173;
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
.title_nFyDWw {
|
|
775
|
-
text-align: center;
|
|
776
|
-
margin-bottom: 32px;
|
|
777
|
-
font-family: Manrope, Arial;
|
|
778
|
-
font-weight: 600;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
.error_nFyDWw {
|
|
782
|
-
color: red;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
.button_nFyDWw {
|
|
786
|
-
color: #fff;
|
|
787
|
-
cursor: pointer;
|
|
788
|
-
outline-color: #0000;
|
|
789
|
-
box-sizing: border-box;
|
|
790
|
-
display: flex;
|
|
791
|
-
background-color: #14151a;
|
|
792
|
-
border: 1px solid #14151a;
|
|
793
|
-
border-radius: 12px;
|
|
794
|
-
justify-content: center;
|
|
795
|
-
align-items: center;
|
|
796
|
-
gap: 8px;
|
|
797
|
-
width: 100%;
|
|
798
|
-
height: 40px;
|
|
799
|
-
margin-top: 32px;
|
|
800
|
-
font-family: Manrope, Arial;
|
|
801
|
-
font-size: 14px;
|
|
802
|
-
font-weight: 500;
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
.button_nFyDWw:disabled {
|
|
806
|
-
color: #0a0f2940;
|
|
807
|
-
background-color: #e9eaec;
|
|
808
|
-
border-color: #e9eaec;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
.button_nFyDWw:disabled:hover {
|
|
812
|
-
cursor: not-allowed;
|
|
813
|
-
color: #0a0f2940;
|
|
814
|
-
background-color: #e9eaec;
|
|
815
|
-
border-color: #e9eaec;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.button_nFyDWw:active {
|
|
819
|
-
outline: 2px solid #c8b2ff80;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.button_nFyDWw:hover {
|
|
823
|
-
background-color: #1f2228;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.forgot_nFyDWw {
|
|
827
|
-
font-weight: 600 !important;
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
.btns_nFyDWw {
|
|
831
|
-
display: flex;
|
|
832
|
-
flex-direction: column;
|
|
833
|
-
align-items: center;
|
|
834
|
-
gap: 12px;
|
|
835
|
-
width: 100%;
|
|
836
|
-
margin-top: 16px;
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
.anotherBtns_nFyDWw {
|
|
840
|
-
display: flex;
|
|
841
|
-
flex-direction: column;
|
|
842
|
-
gap: 16px;
|
|
843
|
-
width: 100%;
|
|
844
|
-
margin: 0 0 40px;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
@media screen and (max-width: 640px) {
|
|
848
|
-
.title_nFyDWw {
|
|
849
|
-
margin-bottom: 8px;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.policy_nFyDWw {
|
|
853
|
-
text-align: center;
|
|
854
|
-
margin-bottom: 20px;
|
|
855
|
-
font-size: 14px;
|
|
842
|
+
100% {
|
|
843
|
+
opacity: 1;
|
|
856
844
|
}
|
|
845
|
+
}
|
|
857
846
|
|
|
858
|
-
|
|
859
|
-
|
|
847
|
+
@keyframes fadeOut_Bde5bA {
|
|
848
|
+
0% {
|
|
849
|
+
opacity: 1;
|
|
860
850
|
}
|
|
861
851
|
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
position: absolute;
|
|
865
|
-
background-color: #0000;
|
|
866
|
-
width: 100%;
|
|
867
|
-
height: 2px;
|
|
868
|
-
bottom: -3px;
|
|
869
|
-
left: 0;
|
|
852
|
+
100% {
|
|
853
|
+
opacity: 0;
|
|
870
854
|
}
|
|
855
|
+
}
|
|
871
856
|
|
|
872
|
-
|
|
873
|
-
|
|
857
|
+
/* src/shared/ui-lib/Loader/Loader.module.css */
|
|
858
|
+
.loader_U95jQg {
|
|
859
|
+
animation: loaderAnimation 1s infinite steps(12);
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
@keyframes loaderAnimation_XZFUtg {
|
|
863
|
+
100% {
|
|
864
|
+
transform: rotate(1turn);
|
|
874
865
|
}
|
|
875
866
|
}
|
|
876
867
|
|
|
@@ -7131,6 +7122,92 @@ td.currentTariff_0VfwRg {
|
|
|
7131
7122
|
font-weight: 400;
|
|
7132
7123
|
}
|
|
7133
7124
|
|
|
7125
|
+
/* src/features/SidePanel/BoardItemsList.module.css */
|
|
7126
|
+
.list_Jwe-NQ {
|
|
7127
|
+
display: flex;
|
|
7128
|
+
overflow-y: auto;
|
|
7129
|
+
flex-direction: column;
|
|
7130
|
+
flex: 1 1 0;
|
|
7131
|
+
padding: 2px 0 6px;
|
|
7132
|
+
}
|
|
7133
|
+
|
|
7134
|
+
.list_Jwe-NQ::-webkit-scrollbar {
|
|
7135
|
+
width: 4px;
|
|
7136
|
+
}
|
|
7137
|
+
|
|
7138
|
+
.list_Jwe-NQ::-webkit-scrollbar-thumb {
|
|
7139
|
+
background-color: #dee1e8;
|
|
7140
|
+
border-radius: 2px;
|
|
7141
|
+
}
|
|
7142
|
+
|
|
7143
|
+
.row_Jwe-NQ {
|
|
7144
|
+
display: flex;
|
|
7145
|
+
align-items: center;
|
|
7146
|
+
gap: 2px;
|
|
7147
|
+
padding-right: 4px;
|
|
7148
|
+
}
|
|
7149
|
+
|
|
7150
|
+
.item_Jwe-NQ {
|
|
7151
|
+
display: flex;
|
|
7152
|
+
color: var(--text-base-primary);
|
|
7153
|
+
cursor: pointer;
|
|
7154
|
+
text-align: left;
|
|
7155
|
+
overflow: hidden;
|
|
7156
|
+
background: none;
|
|
7157
|
+
border: none;
|
|
7158
|
+
border-radius: 5px;
|
|
7159
|
+
flex: 1;
|
|
7160
|
+
align-items: center;
|
|
7161
|
+
gap: 5px;
|
|
7162
|
+
min-width: 0;
|
|
7163
|
+
padding: 3px 4px;
|
|
7164
|
+
font-family: Manrope, sans-serif;
|
|
7165
|
+
font-size: 12px;
|
|
7166
|
+
}
|
|
7167
|
+
|
|
7168
|
+
.chevronBtn_Jwe-NQ {
|
|
7169
|
+
display: flex;
|
|
7170
|
+
cursor: pointer;
|
|
7171
|
+
color: var(--text-base-secondary, #888);
|
|
7172
|
+
background: none;
|
|
7173
|
+
border: none;
|
|
7174
|
+
border-radius: 3px;
|
|
7175
|
+
flex-shrink: 0;
|
|
7176
|
+
justify-content: center;
|
|
7177
|
+
align-items: center;
|
|
7178
|
+
width: 20px;
|
|
7179
|
+
height: 20px;
|
|
7180
|
+
padding: 0;
|
|
7181
|
+
}
|
|
7182
|
+
|
|
7183
|
+
.chevronBtn_Jwe-NQ:hover, .item_Jwe-NQ:hover {
|
|
7184
|
+
background-color: var(--bg-action-secondary-hover, #0000000d);
|
|
7185
|
+
}
|
|
7186
|
+
|
|
7187
|
+
.typeIcon_Jwe-NQ {
|
|
7188
|
+
opacity: .55;
|
|
7189
|
+
flex-shrink: 0;
|
|
7190
|
+
}
|
|
7191
|
+
|
|
7192
|
+
.label_Jwe-NQ {
|
|
7193
|
+
overflow: hidden;
|
|
7194
|
+
text-overflow: ellipsis;
|
|
7195
|
+
white-space: nowrap;
|
|
7196
|
+
}
|
|
7197
|
+
|
|
7198
|
+
.empty_Jwe-NQ {
|
|
7199
|
+
color: var(--text-base-secondary, #888);
|
|
7200
|
+
padding: 4px 8px 6px 28px;
|
|
7201
|
+
font-family: Manrope, sans-serif;
|
|
7202
|
+
font-size: 12px;
|
|
7203
|
+
}
|
|
7204
|
+
|
|
7205
|
+
.highlight_Jwe-NQ {
|
|
7206
|
+
color: inherit;
|
|
7207
|
+
background-color: #924fe833;
|
|
7208
|
+
border-radius: 2px;
|
|
7209
|
+
}
|
|
7210
|
+
|
|
7134
7211
|
/* src/features/SidePanel/ResizableEdge.module.css */
|
|
7135
7212
|
.resizeHandle_n80Fqw {
|
|
7136
7213
|
position: absolute;
|
|
@@ -7237,6 +7314,55 @@ td.currentTariff_0VfwRg {
|
|
|
7237
7314
|
color: var(--text-base-primary);
|
|
7238
7315
|
}
|
|
7239
7316
|
|
|
7317
|
+
.itemsSearch_5QMOig {
|
|
7318
|
+
display: flex;
|
|
7319
|
+
border: 1px solid var(--border-action-normal, #0000001f);
|
|
7320
|
+
background: var(--bg-action-secondary, #f5f5f7);
|
|
7321
|
+
border-radius: 8px;
|
|
7322
|
+
flex-shrink: 0;
|
|
7323
|
+
align-items: center;
|
|
7324
|
+
gap: 6px;
|
|
7325
|
+
margin: 4px 14px 6px;
|
|
7326
|
+
padding: 5px 8px;
|
|
7327
|
+
}
|
|
7328
|
+
|
|
7329
|
+
.itemsSearchIcon_5QMOig {
|
|
7330
|
+
opacity: .45;
|
|
7331
|
+
flex-shrink: 0;
|
|
7332
|
+
}
|
|
7333
|
+
|
|
7334
|
+
.itemsSearchInput_5QMOig {
|
|
7335
|
+
outline: none;
|
|
7336
|
+
color: var(--text-base-primary);
|
|
7337
|
+
background: none;
|
|
7338
|
+
border: none;
|
|
7339
|
+
flex: 1;
|
|
7340
|
+
min-width: 0;
|
|
7341
|
+
font-family: Manrope, sans-serif;
|
|
7342
|
+
font-size: 12px;
|
|
7343
|
+
}
|
|
7344
|
+
|
|
7345
|
+
.itemsSearchInput_5QMOig::placeholder {
|
|
7346
|
+
color: var(--text-base-secondary, #aaa);
|
|
7347
|
+
}
|
|
7348
|
+
|
|
7349
|
+
.itemsSearchClear_5QMOig {
|
|
7350
|
+
display: flex;
|
|
7351
|
+
cursor: pointer;
|
|
7352
|
+
opacity: .45;
|
|
7353
|
+
background: none;
|
|
7354
|
+
border: none;
|
|
7355
|
+
border-radius: 3px;
|
|
7356
|
+
flex-shrink: 0;
|
|
7357
|
+
justify-content: center;
|
|
7358
|
+
align-items: center;
|
|
7359
|
+
padding: 0;
|
|
7360
|
+
}
|
|
7361
|
+
|
|
7362
|
+
.itemsSearchClear_5QMOig:hover {
|
|
7363
|
+
opacity: .8;
|
|
7364
|
+
}
|
|
7365
|
+
|
|
7240
7366
|
.importMiroBtnWr_5QMOig {
|
|
7241
7367
|
padding: 0 16px 16px;
|
|
7242
7368
|
}
|
|
@@ -8564,56 +8690,6 @@ td.currentTariff_0VfwRg {
|
|
|
8564
8690
|
color: #0a0f2940;
|
|
8565
8691
|
}
|
|
8566
8692
|
|
|
8567
|
-
/* src/features/LandingMenu/LandingMenu.module.css */
|
|
8568
|
-
.menuPanel_N49qJQ {
|
|
8569
|
-
position: absolute;
|
|
8570
|
-
overflow: hidden;
|
|
8571
|
-
border-radius: 900px;
|
|
8572
|
-
top: 12px;
|
|
8573
|
-
left: 50%;
|
|
8574
|
-
transform: translateX(-50%);
|
|
8575
|
-
}
|
|
8576
|
-
|
|
8577
|
-
.link_N49qJQ {
|
|
8578
|
-
background: linear-gradient(270deg, #944fe7 0%, #a347e7 24.15%, #b240e7 66.97%, #c239e7 100%);
|
|
8579
|
-
-webkit-text-fill-color: transparent;
|
|
8580
|
-
overflow: hidden;
|
|
8581
|
-
white-space: nowrap;
|
|
8582
|
-
-webkit-background-clip: text;
|
|
8583
|
-
background-clip: text;
|
|
8584
|
-
padding-left: 18px;
|
|
8585
|
-
padding-right: 18px;
|
|
8586
|
-
font-size: 16px;
|
|
8587
|
-
font-weight: 500;
|
|
8588
|
-
}
|
|
8589
|
-
|
|
8590
|
-
.linksWrapper_N49qJQ {
|
|
8591
|
-
display: flex;
|
|
8592
|
-
align-items: center;
|
|
8593
|
-
max-width: 0;
|
|
8594
|
-
transition: max-width .3s ease-in-out;
|
|
8595
|
-
}
|
|
8596
|
-
|
|
8597
|
-
.open_N49qJQ .linksWrapper_N49qJQ {
|
|
8598
|
-
max-width: 999px;
|
|
8599
|
-
}
|
|
8600
|
-
|
|
8601
|
-
.menuPanel_N49qJQ:not(.open_N49qJQ) .openBtn_N49qJQ {
|
|
8602
|
-
--padding: 12px 24px;
|
|
8603
|
-
}
|
|
8604
|
-
|
|
8605
|
-
@media screen and (max-width: 1620px) {
|
|
8606
|
-
.menuPanel_N49qJQ {
|
|
8607
|
-
transform: translateX(-24%);
|
|
8608
|
-
}
|
|
8609
|
-
}
|
|
8610
|
-
|
|
8611
|
-
@media screen and (max-width: 1360px) {
|
|
8612
|
-
.menuPanel_N49qJQ {
|
|
8613
|
-
display: none;
|
|
8614
|
-
}
|
|
8615
|
-
}
|
|
8616
|
-
|
|
8617
8693
|
/* src/features/LandingMenu/MobileLandingMenu.module.css */
|
|
8618
8694
|
.mobileLandingMenuWrapper_e5mELA {
|
|
8619
8695
|
position: absolute;
|
|
@@ -8808,7 +8884,6 @@ td.currentTariff_0VfwRg {
|
|
|
8808
8884
|
position: absolute;
|
|
8809
8885
|
top: -60px;
|
|
8810
8886
|
left: var(--absolute-position-panel-padding);
|
|
8811
|
-
overflow: hidden;
|
|
8812
8887
|
}
|
|
8813
8888
|
|
|
8814
8889
|
.logoWrapper_i3VZwA.viewMode_i3VZwA {
|
|
@@ -9035,7 +9110,30 @@ input.rename_i3VZwA {
|
|
|
9035
9110
|
width: 50%;
|
|
9036
9111
|
}
|
|
9037
9112
|
|
|
9038
|
-
.btn_FAHvNA {
|
|
9113
|
+
.btn_FAHvNA, .previewUpload_FAHvNA {
|
|
9114
|
+
width: 100%;
|
|
9115
|
+
}
|
|
9116
|
+
|
|
9117
|
+
.fileInputHidden_FAHvNA {
|
|
9118
|
+
display: none;
|
|
9119
|
+
}
|
|
9120
|
+
|
|
9121
|
+
.previewImageWrapper_FAHvNA {
|
|
9122
|
+
display: flex;
|
|
9123
|
+
flex-direction: column;
|
|
9124
|
+
align-items: center;
|
|
9125
|
+
gap: 8px;
|
|
9126
|
+
width: 100%;
|
|
9127
|
+
}
|
|
9128
|
+
|
|
9129
|
+
.previewImage_FAHvNA {
|
|
9130
|
+
object-fit: cover;
|
|
9131
|
+
border-radius: 8px;
|
|
9132
|
+
width: 100%;
|
|
9133
|
+
max-height: 200px;
|
|
9134
|
+
}
|
|
9135
|
+
|
|
9136
|
+
.changePreviewBtn_FAHvNA {
|
|
9039
9137
|
width: 100%;
|
|
9040
9138
|
}
|
|
9041
9139
|
|
|
@@ -10640,6 +10738,109 @@ input.rename_i3VZwA {
|
|
|
10640
10738
|
border-color: #ff3b3b !important;
|
|
10641
10739
|
}
|
|
10642
10740
|
|
|
10741
|
+
/* src/features/BoardItemsPanel/BoardItemsPanel.module.css */
|
|
10742
|
+
.panel_8tFAuw {
|
|
10743
|
+
overflow: hidden;
|
|
10744
|
+
box-shadow: none;
|
|
10745
|
+
position: relative;
|
|
10746
|
+
display: flex;
|
|
10747
|
+
border: none;
|
|
10748
|
+
flex-direction: column;
|
|
10749
|
+
align-items: stretch;
|
|
10750
|
+
width: 0;
|
|
10751
|
+
margin-left: 0;
|
|
10752
|
+
transition: width .3s, max-width .3s, min-width .3s;
|
|
10753
|
+
}
|
|
10754
|
+
|
|
10755
|
+
.panel_8tFAuw.open_8tFAuw {
|
|
10756
|
+
visibility: visible;
|
|
10757
|
+
border: 1px solid var(--border-action-normal);
|
|
10758
|
+
width: 260px;
|
|
10759
|
+
min-width: 180px;
|
|
10760
|
+
max-width: 35dvw;
|
|
10761
|
+
margin-left: 12px;
|
|
10762
|
+
box-shadow: 0 4px 4px #00000040;
|
|
10763
|
+
padding: 8px 4px !important;
|
|
10764
|
+
}
|
|
10765
|
+
|
|
10766
|
+
.header_8tFAuw {
|
|
10767
|
+
display: flex;
|
|
10768
|
+
justify-content: space-between;
|
|
10769
|
+
align-items: center;
|
|
10770
|
+
padding: 0 4px;
|
|
10771
|
+
}
|
|
10772
|
+
|
|
10773
|
+
.title_8tFAuw {
|
|
10774
|
+
flex: 1 0;
|
|
10775
|
+
padding: 4px 8px;
|
|
10776
|
+
font-size: 14px;
|
|
10777
|
+
font-weight: 500;
|
|
10778
|
+
line-height: 20px;
|
|
10779
|
+
}
|
|
10780
|
+
|
|
10781
|
+
.close_8tFAuw {
|
|
10782
|
+
--padding: 4px;
|
|
10783
|
+
--min-width: 28px;
|
|
10784
|
+
--min-height: 28px;
|
|
10785
|
+
color: var(--text-base-primary);
|
|
10786
|
+
border-radius: 12px;
|
|
10787
|
+
}
|
|
10788
|
+
|
|
10789
|
+
.search_8tFAuw {
|
|
10790
|
+
display: flex;
|
|
10791
|
+
border: 1px solid var(--border-action-normal, #0000001f);
|
|
10792
|
+
background: var(--bg-action-secondary, #f5f5f7);
|
|
10793
|
+
border-radius: 8px;
|
|
10794
|
+
align-items: center;
|
|
10795
|
+
gap: 6px;
|
|
10796
|
+
margin: 4px 8px 2px;
|
|
10797
|
+
padding: 5px 8px;
|
|
10798
|
+
}
|
|
10799
|
+
|
|
10800
|
+
.searchIcon_8tFAuw {
|
|
10801
|
+
opacity: .45;
|
|
10802
|
+
flex-shrink: 0;
|
|
10803
|
+
}
|
|
10804
|
+
|
|
10805
|
+
.searchInput_8tFAuw {
|
|
10806
|
+
outline: none;
|
|
10807
|
+
color: var(--text-base-primary);
|
|
10808
|
+
background: none;
|
|
10809
|
+
border: none;
|
|
10810
|
+
flex: 1;
|
|
10811
|
+
min-width: 0;
|
|
10812
|
+
font-family: Manrope, sans-serif;
|
|
10813
|
+
font-size: 12px;
|
|
10814
|
+
}
|
|
10815
|
+
|
|
10816
|
+
.searchInput_8tFAuw::placeholder {
|
|
10817
|
+
color: var(--text-base-secondary, #aaa);
|
|
10818
|
+
}
|
|
10819
|
+
|
|
10820
|
+
.searchClear_8tFAuw {
|
|
10821
|
+
display: flex;
|
|
10822
|
+
cursor: pointer;
|
|
10823
|
+
opacity: .45;
|
|
10824
|
+
background: none;
|
|
10825
|
+
border: none;
|
|
10826
|
+
border-radius: 3px;
|
|
10827
|
+
flex-shrink: 0;
|
|
10828
|
+
justify-content: center;
|
|
10829
|
+
align-items: center;
|
|
10830
|
+
padding: 0;
|
|
10831
|
+
}
|
|
10832
|
+
|
|
10833
|
+
.searchClear_8tFAuw:hover {
|
|
10834
|
+
opacity: .8;
|
|
10835
|
+
}
|
|
10836
|
+
|
|
10837
|
+
.content_8tFAuw {
|
|
10838
|
+
overflow: hidden;
|
|
10839
|
+
display: flex;
|
|
10840
|
+
flex-direction: column;
|
|
10841
|
+
flex: 1 1 0;
|
|
10842
|
+
}
|
|
10843
|
+
|
|
10643
10844
|
/* src/features/SidePanelsContainer/SidePanelsContainer.module.css */
|
|
10644
10845
|
.sidePanels_r8Vrbw {
|
|
10645
10846
|
display: flex;
|
|
@@ -11530,7 +11731,7 @@ input.rename_i3VZwA {
|
|
|
11530
11731
|
flex-direction: column;
|
|
11531
11732
|
align-items: center;
|
|
11532
11733
|
width: 420px;
|
|
11533
|
-
max-width:
|
|
11734
|
+
max-width: 96dvw;
|
|
11534
11735
|
padding: 0 !important;
|
|
11535
11736
|
}
|
|
11536
11737
|
|