@robotical/martyblocksjr 3.5.34 → 4.0.1
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/editions/free/src/app.bundle.js +1 -1
- package/editions/free/src/css/base.css +78 -1
- package/editions/free/src/css/connection-modal.css +6 -1
- package/editions/free/src/css/editor.css +86 -34
- package/editions/free/src/css/editorleftpanel.css +8 -0
- package/editions/free/src/css/editorstage.css +5 -1
- package/editions/free/src/css/lobby.css +28 -9
- package/editions/free/src/css/thumbs.css +18 -0
- package/editions/free/src/css/tutorial.css +6 -1
- package/editions/free/src/home.html +46 -26
- package/editions/free/src/inapp/blocks.html +43 -43
- package/editions/free/src/inapp/interface.html +49 -49
- package/editions/free/src/inapp/paint.html +40 -40
- package/editions/free/src/inapp/style/interface.css +2 -0
- package/editions/free/src/inapp/style/paint.css +2 -0
- package/editions/free/src/inapp/style/style.css +44 -0
- package/editions/free/src/localizations/bg.json +36 -2
- package/editions/free/src/localizations/ca.json +36 -2
- package/editions/free/src/localizations/cs.json +36 -2
- package/editions/free/src/localizations/cy.json +36 -2
- package/editions/free/src/localizations/da.json +36 -2
- package/editions/free/src/localizations/de.json +36 -2
- package/editions/free/src/localizations/el.json +36 -2
- package/editions/free/src/localizations/en.json +35 -1
- package/editions/free/src/localizations/es.json +36 -2
- package/editions/free/src/localizations/fi.json +36 -2
- package/editions/free/src/localizations/fr.json +36 -2
- package/editions/free/src/localizations/it.json +36 -2
- package/editions/free/src/localizations/ja.json +36 -2
- package/editions/free/src/localizations/ko.json +36 -2
- package/editions/free/src/localizations/nl.json +36 -2
- package/editions/free/src/localizations/no.json +36 -2
- package/editions/free/src/localizations/pl.json +36 -2
- package/editions/free/src/localizations/pt-br.json +36 -2
- package/editions/free/src/localizations/pt.json +36 -2
- package/editions/free/src/localizations/sv.json +36 -2
- package/editions/free/src/localizations/th.json +36 -2
- package/editions/free/src/localizations/tr.json +36 -2
- package/editions/free/src/localizations/uk.json +36 -2
- package/editions/free/src/localizations/zh-cn.json +36 -2
- package/editions/free/src/localizations/zh-tw.json +36 -2
- package/package.json +6 -2
- package/scripts/a11y-structure.mjs +177 -0
- package/tests/e2e/accessibility.e2e.test.js +596 -0
- package/vitest.config.js +2 -1
|
@@ -61,6 +61,83 @@ body {
|
|
|
61
61
|
touch-action: none;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
button,
|
|
65
|
+
a,
|
|
66
|
+
input,
|
|
67
|
+
select,
|
|
68
|
+
textarea {
|
|
69
|
+
font: inherit;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
button {
|
|
73
|
+
background: none;
|
|
74
|
+
border: 0;
|
|
75
|
+
color: inherit;
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
padding: 0;
|
|
78
|
+
appearance: none;
|
|
79
|
+
-webkit-appearance: none;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.skip-link {
|
|
83
|
+
position: absolute;
|
|
84
|
+
top: -48px;
|
|
85
|
+
left: 12px;
|
|
86
|
+
z-index: 200000;
|
|
87
|
+
padding: 8px 12px;
|
|
88
|
+
background: #133C46;
|
|
89
|
+
color: #ffffff;
|
|
90
|
+
text-decoration: none;
|
|
91
|
+
border-radius: 6px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.skip-link:focus,
|
|
95
|
+
.skip-link:active {
|
|
96
|
+
top: 12px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.sr-only {
|
|
100
|
+
position: absolute;
|
|
101
|
+
width: 1px;
|
|
102
|
+
height: 1px;
|
|
103
|
+
padding: 0;
|
|
104
|
+
margin: -1px;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
clip: rect(0, 0, 0, 0);
|
|
107
|
+
white-space: nowrap;
|
|
108
|
+
border: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.sr-only-focusable {
|
|
112
|
+
position: absolute;
|
|
113
|
+
top: 8px;
|
|
114
|
+
left: 8px;
|
|
115
|
+
opacity: 0;
|
|
116
|
+
pointer-events: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.sr-only-focusable:focus,
|
|
120
|
+
.sr-only-focusable:focus-visible {
|
|
121
|
+
opacity: 1;
|
|
122
|
+
pointer-events: auto;
|
|
123
|
+
z-index: 5;
|
|
124
|
+
padding: 6px 10px;
|
|
125
|
+
background: rgba(19, 60, 70, 0.95);
|
|
126
|
+
color: #ffffff;
|
|
127
|
+
border-radius: 6px;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
button:focus-visible,
|
|
131
|
+
a:focus-visible,
|
|
132
|
+
input:focus-visible,
|
|
133
|
+
textarea:focus-visible,
|
|
134
|
+
select:focus-visible,
|
|
135
|
+
iframe:focus-visible,
|
|
136
|
+
[tabindex]:focus-visible {
|
|
137
|
+
outline: 3px solid #133C46;
|
|
138
|
+
outline-offset: 3px;
|
|
139
|
+
}
|
|
140
|
+
|
|
64
141
|
/* Set default, padding, margin and font-size on block elements */
|
|
65
142
|
h1 {
|
|
66
143
|
font-size: 1.23em;
|
|
@@ -101,7 +178,7 @@ h4 {
|
|
|
101
178
|
}
|
|
102
179
|
|
|
103
180
|
@media screen and (orientation: portrait) {
|
|
104
|
-
html {
|
|
181
|
+
html:not(.embedded-in-parent-app) {
|
|
105
182
|
transform: rotate(-90deg);
|
|
106
183
|
transform-origin: left top;
|
|
107
184
|
width: 100vh;
|
|
@@ -63,10 +63,15 @@
|
|
|
63
63
|
.cancel-button {
|
|
64
64
|
background-color: var(--colour-MAIN_BLUE);
|
|
65
65
|
border: none;
|
|
66
|
-
outline: none;
|
|
67
66
|
color: white;
|
|
68
67
|
padding: 10px 20px;
|
|
69
68
|
border-radius: 5px;
|
|
70
69
|
cursor: pointer;
|
|
71
70
|
|
|
72
71
|
}
|
|
72
|
+
|
|
73
|
+
.connect-button:focus-visible,
|
|
74
|
+
.cancel-button:focus-visible {
|
|
75
|
+
outline: 3px solid #133C46;
|
|
76
|
+
outline-offset: 3px;
|
|
77
|
+
}
|
|
@@ -113,6 +113,7 @@ div.frame {
|
|
|
113
113
|
|
|
114
114
|
.pagethumb {
|
|
115
115
|
background: none;
|
|
116
|
+
position: relative;
|
|
116
117
|
display: inline-block;
|
|
117
118
|
margin: ${css_vh(0)} ${css_vh(0)} ${css_vh(0.13)};
|
|
118
119
|
padding: ${css_vh(0)};
|
|
@@ -120,6 +121,14 @@ div.frame {
|
|
|
120
121
|
height: ${109 * scaleMultiplier}px;
|
|
121
122
|
}
|
|
122
123
|
|
|
124
|
+
.pagethumb[role="button"] {
|
|
125
|
+
cursor: pointer;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.pagethumb[role="button"]:focus-visible {
|
|
129
|
+
outline-offset: 4px;
|
|
130
|
+
}
|
|
131
|
+
|
|
123
132
|
.pagethumb.on {
|
|
124
133
|
background: url('../assets/ui/pageOn.png');
|
|
125
134
|
background-size: 100% 100%;
|
|
@@ -271,6 +280,25 @@ div.frame {
|
|
|
271
280
|
overflow: hidden;
|
|
272
281
|
}
|
|
273
282
|
|
|
283
|
+
#blockspalette .categoryselector button,
|
|
284
|
+
#blockspalette .categoryselectorright button{
|
|
285
|
+
display: block;
|
|
286
|
+
background: transparent;
|
|
287
|
+
border: 0;
|
|
288
|
+
padding: 0;
|
|
289
|
+
line-height: 0;
|
|
290
|
+
cursor: pointer;
|
|
291
|
+
overflow: hidden;
|
|
292
|
+
box-sizing: border-box;
|
|
293
|
+
appearance: none;
|
|
294
|
+
-webkit-appearance: none;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
#blockspalette .categoryselector button:focus-visible,
|
|
298
|
+
#blockspalette .categoryselectorright button:focus-visible{
|
|
299
|
+
outline-offset: 4px;
|
|
300
|
+
}
|
|
301
|
+
|
|
274
302
|
#blockspalette .categoryselectorright{
|
|
275
303
|
display: inline-block;
|
|
276
304
|
word-spacing: -1;
|
|
@@ -313,6 +341,16 @@ div.frame {
|
|
|
313
341
|
overflow: hidden;
|
|
314
342
|
}
|
|
315
343
|
|
|
344
|
+
#blockspalette .paletteblock,
|
|
345
|
+
#blockspalette .paletteRecordButton{
|
|
346
|
+
cursor: pointer;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
#blockspalette .paletteblock:focus-visible,
|
|
350
|
+
#blockspalette .paletteRecordButton:focus-visible{
|
|
351
|
+
outline-offset: 4px;
|
|
352
|
+
}
|
|
353
|
+
|
|
316
354
|
#blockspalette .yellow { background: #FFE75A;} /* #ffe100;}{ background: #FFFA5A;} */
|
|
317
355
|
#blockspalette .blue { background: #4B8CC2;}
|
|
318
356
|
#blockspalette .pink { background: #CD7CD1;}
|
|
@@ -501,6 +539,20 @@ z-index: 5;
|
|
|
501
539
|
position: absolute;
|
|
502
540
|
}
|
|
503
541
|
|
|
542
|
+
#scriptscontainer .keyboard-script-strip[role="button"] {
|
|
543
|
+
cursor: pointer;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
#scriptscontainer .keyboard-script-strip:focus-visible {
|
|
547
|
+
outline-offset: 6px;
|
|
548
|
+
border-radius: 12px;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
#scriptscontainer .keyboard-script-strip[aria-pressed="true"]:not(:focus-visible) {
|
|
552
|
+
box-shadow: 0 0 0 3px rgba(15, 95, 255, 0.35);
|
|
553
|
+
border-radius: 12px;
|
|
554
|
+
}
|
|
555
|
+
|
|
504
556
|
.watermark {
|
|
505
557
|
position: absolute;
|
|
506
558
|
top: ${css_vh(2.60)};
|
|
@@ -652,13 +704,13 @@ z-index: 5;
|
|
|
652
704
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, 0.2)), color-stop(35%,rgba(255, 255, 255, 0)), color-stop(100%,rgba(255, 255, 255, 0)));
|
|
653
705
|
}
|
|
654
706
|
|
|
655
|
-
|
|
707
|
+
.infoboxParentsSection {
|
|
656
708
|
width: 51%;
|
|
657
709
|
margin: auto;
|
|
658
710
|
margin-top: 8%;
|
|
659
711
|
}
|
|
660
712
|
|
|
661
|
-
|
|
713
|
+
.infoboxParentsButton {
|
|
662
714
|
color: #fff;
|
|
663
715
|
background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 51%);
|
|
664
716
|
text-transform: uppercase;
|
|
@@ -676,14 +728,14 @@ div.infoboxParentsButton {
|
|
|
676
728
|
margin: auto;
|
|
677
729
|
}
|
|
678
730
|
|
|
679
|
-
|
|
731
|
+
.infoboxShareButtons {
|
|
680
732
|
width: 51%;
|
|
681
733
|
margin: auto;
|
|
682
734
|
margin-top: 8%;
|
|
683
735
|
visibility: hidden;
|
|
684
736
|
}
|
|
685
737
|
|
|
686
|
-
|
|
738
|
+
.infoboxShareButton {
|
|
687
739
|
color: #fff;
|
|
688
740
|
background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 51%);
|
|
689
741
|
text-transform: uppercase;
|
|
@@ -701,7 +753,7 @@ div.infoboxShareButton {
|
|
|
701
753
|
margin: auto;
|
|
702
754
|
}
|
|
703
755
|
|
|
704
|
-
|
|
756
|
+
.infoboxCloudSection {
|
|
705
757
|
width: 60%;
|
|
706
758
|
margin: auto;
|
|
707
759
|
margin-top: 6%;
|
|
@@ -710,7 +762,7 @@ div.infoboxCloudSection {
|
|
|
710
762
|
align-items: center;
|
|
711
763
|
}
|
|
712
764
|
|
|
713
|
-
|
|
765
|
+
.infoboxCloudButton {
|
|
714
766
|
color: #fff;
|
|
715
767
|
background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 51%);
|
|
716
768
|
text-transform: uppercase;
|
|
@@ -727,11 +779,11 @@ div.infoboxCloudButton {
|
|
|
727
779
|
border: 2px solid #c19f21;
|
|
728
780
|
}
|
|
729
781
|
|
|
730
|
-
|
|
782
|
+
.infoboxCloudButton:active {
|
|
731
783
|
filter: brightness(0.9);
|
|
732
784
|
}
|
|
733
785
|
|
|
734
|
-
|
|
786
|
+
.infoboxCloudControls {
|
|
735
787
|
display: flex;
|
|
736
788
|
justify-content: center;
|
|
737
789
|
gap: ${css_vw(1.5)};
|
|
@@ -739,7 +791,7 @@ div.infoboxCloudControls {
|
|
|
739
791
|
width: 100%;
|
|
740
792
|
}
|
|
741
793
|
|
|
742
|
-
|
|
794
|
+
.infoboxCloudToggleButton {
|
|
743
795
|
color: #fff;
|
|
744
796
|
background: rgba(255,255,255,0.1);
|
|
745
797
|
text-transform: uppercase;
|
|
@@ -752,16 +804,16 @@ div.infoboxCloudToggleButton {
|
|
|
752
804
|
cursor: pointer;
|
|
753
805
|
}
|
|
754
806
|
|
|
755
|
-
|
|
807
|
+
.infoboxCloudToggleButton.active {
|
|
756
808
|
background: #f4a621;
|
|
757
809
|
border-color: #9b6f14;
|
|
758
810
|
}
|
|
759
811
|
|
|
760
|
-
|
|
812
|
+
.infoboxCloudPanels {
|
|
761
813
|
width: 100%;
|
|
762
814
|
}
|
|
763
815
|
|
|
764
|
-
|
|
816
|
+
.infoboxCloudPanel {
|
|
765
817
|
display: none;
|
|
766
818
|
margin-top: ${css_vh(2)};
|
|
767
819
|
padding: ${css_vh(1.2)} ${css_vw(2)};
|
|
@@ -771,18 +823,18 @@ div.infoboxCloudPanel {
|
|
|
771
823
|
box-sizing: border-box;
|
|
772
824
|
}
|
|
773
825
|
|
|
774
|
-
|
|
826
|
+
.infoboxCloudPanel.show {
|
|
775
827
|
display: block;
|
|
776
828
|
}
|
|
777
829
|
|
|
778
|
-
|
|
830
|
+
.infoboxCloudDescription {
|
|
779
831
|
text-align: center;
|
|
780
832
|
color: #5b3c00;
|
|
781
833
|
font-weight: bold;
|
|
782
834
|
margin-bottom: ${css_vh(1.2)};
|
|
783
835
|
}
|
|
784
836
|
|
|
785
|
-
|
|
837
|
+
.infoboxCloudLoadActions {
|
|
786
838
|
display: flex;
|
|
787
839
|
justify-content: center;
|
|
788
840
|
gap: ${css_vw(1.2)};
|
|
@@ -790,7 +842,7 @@ div.infoboxCloudLoadActions {
|
|
|
790
842
|
margin-bottom: ${css_vh(1)};
|
|
791
843
|
}
|
|
792
844
|
|
|
793
|
-
|
|
845
|
+
.infoboxCloudSecondaryButton {
|
|
794
846
|
color: #fff;
|
|
795
847
|
background: rgba(255,255,255,0.1);
|
|
796
848
|
text-transform: uppercase;
|
|
@@ -803,11 +855,11 @@ div.infoboxCloudSecondaryButton {
|
|
|
803
855
|
cursor: pointer;
|
|
804
856
|
}
|
|
805
857
|
|
|
806
|
-
|
|
858
|
+
.infoboxCloudSecondaryButton:active {
|
|
807
859
|
filter: brightness(0.92);
|
|
808
860
|
}
|
|
809
861
|
|
|
810
|
-
|
|
862
|
+
.infoboxCloudList {
|
|
811
863
|
width: 100%;
|
|
812
864
|
max-height: ${css_vh(30)};
|
|
813
865
|
overflow-y: auto;
|
|
@@ -815,8 +867,8 @@ div.infoboxCloudList {
|
|
|
815
867
|
border-radius: 12px;
|
|
816
868
|
}
|
|
817
869
|
|
|
818
|
-
|
|
819
|
-
|
|
870
|
+
.infoboxCloudListHeader,
|
|
871
|
+
.infoboxCloudRow {
|
|
820
872
|
display: grid;
|
|
821
873
|
grid-template-columns: 2fr 2fr 2fr 1.5fr;
|
|
822
874
|
align-items: center;
|
|
@@ -824,36 +876,36 @@ div.infoboxCloudRow {
|
|
|
824
876
|
padding: ${css_vh(0.8)} ${css_vw(1)};
|
|
825
877
|
}
|
|
826
878
|
|
|
827
|
-
|
|
879
|
+
.infoboxCloudCell {
|
|
828
880
|
overflow-wrap: anywhere;
|
|
829
881
|
color: #3d2800;
|
|
830
882
|
}
|
|
831
883
|
|
|
832
|
-
|
|
884
|
+
.infoboxCloudListHeader {
|
|
833
885
|
font-weight: bold;
|
|
834
886
|
color: #5b3c00;
|
|
835
887
|
border-bottom: 2px solid rgba(91,60,0,0.2);
|
|
836
888
|
}
|
|
837
889
|
|
|
838
|
-
|
|
890
|
+
.infoboxCloudRow:nth-child(even) {
|
|
839
891
|
background: rgba(255,255,255,0.08);
|
|
840
892
|
}
|
|
841
893
|
|
|
842
|
-
|
|
894
|
+
.infoboxCloudListEmpty {
|
|
843
895
|
text-align: center;
|
|
844
896
|
color: #5b3c00;
|
|
845
897
|
font-style: italic;
|
|
846
898
|
padding: ${css_vh(1.2)};
|
|
847
899
|
}
|
|
848
900
|
|
|
849
|
-
|
|
901
|
+
.infoboxCloudCell.actions {
|
|
850
902
|
display: flex;
|
|
851
903
|
gap: ${css_vw(0.8)};
|
|
852
904
|
justify-content: flex-end;
|
|
853
905
|
flex-wrap: wrap;
|
|
854
906
|
}
|
|
855
907
|
|
|
856
|
-
|
|
908
|
+
.infoboxCloudActionButton {
|
|
857
909
|
color: #fff;
|
|
858
910
|
font-weight: bold;
|
|
859
911
|
text-transform: uppercase;
|
|
@@ -864,26 +916,26 @@ div.infoboxCloudActionButton {
|
|
|
864
916
|
cursor: pointer;
|
|
865
917
|
}
|
|
866
918
|
|
|
867
|
-
|
|
919
|
+
.infoboxCloudActionButton.primary {
|
|
868
920
|
background: #32a852;
|
|
869
921
|
border-color: #1f6d35;
|
|
870
922
|
}
|
|
871
923
|
|
|
872
|
-
|
|
924
|
+
.infoboxCloudActionButton.danger {
|
|
873
925
|
background: #d9534f;
|
|
874
926
|
border-color: #8a2d2b;
|
|
875
927
|
}
|
|
876
928
|
|
|
877
|
-
|
|
929
|
+
.infoboxCloudActionButton:active {
|
|
878
930
|
filter: brightness(0.9);
|
|
879
931
|
}
|
|
880
932
|
|
|
881
|
-
|
|
933
|
+
.infoboxCloudCell.id {
|
|
882
934
|
font-family: 'Courier New', Courier, monospace;
|
|
883
935
|
font-size: 12pt;
|
|
884
936
|
}
|
|
885
937
|
|
|
886
|
-
|
|
938
|
+
#infoboxShareButtonEmail::before {
|
|
887
939
|
content: "";
|
|
888
940
|
position: absolute;
|
|
889
941
|
display: block;
|
|
@@ -897,7 +949,7 @@ div#infoboxShareButtonEmail::before {
|
|
|
897
949
|
margin-top: -4%;
|
|
898
950
|
}
|
|
899
951
|
|
|
900
|
-
|
|
952
|
+
#infoboxShareButtonAirdrop::before {
|
|
901
953
|
content: "";
|
|
902
954
|
position: absolute;
|
|
903
955
|
display: block;
|
|
@@ -1265,7 +1317,7 @@ Blocks text fields and input fields
|
|
|
1265
1317
|
background: #ffffff;
|
|
1266
1318
|
-moz-border-radius: ${5 * scaleMultiplier}px;
|
|
1267
1319
|
-webkit-border-radius: ${5 * scaleMultiplier}px;
|
|
1268
|
-
outline:
|
|
1320
|
+
outline: 2px solid transparent;
|
|
1269
1321
|
text-align: center;
|
|
1270
1322
|
color: #77787b;
|
|
1271
1323
|
font-family: Verdana;
|
|
@@ -1280,7 +1332,7 @@ Blocks text fields and input fields
|
|
|
1280
1332
|
border: 2px solid #28A5DA;
|
|
1281
1333
|
-moz-border-radius: ${5 * scaleMultiplier}px;
|
|
1282
1334
|
-webkit-border-radius: ${5 * scaleMultiplier}px;
|
|
1283
|
-
outline-color:
|
|
1335
|
+
outline-color: #133C46;
|
|
1284
1336
|
width: ${css_vh(62.51)};
|
|
1285
1337
|
height: ${css_vh(6.25)};
|
|
1286
1338
|
font-size: ${css_vh(3.13)};
|
|
@@ -261,6 +261,14 @@
|
|
|
261
261
|
padding: 0px;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
.spritethumb[role="button"] {
|
|
265
|
+
cursor: pointer;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.spritethumb[role="button"]:focus-visible {
|
|
269
|
+
outline-offset: 4px;
|
|
270
|
+
}
|
|
271
|
+
|
|
264
272
|
.spritethumb .thumbcanvas{
|
|
265
273
|
position: absolute;
|
|
266
274
|
margin: ${css_vh(0.65)} ${css_vh(0.65)} 0px;
|
|
@@ -52,6 +52,13 @@ div.frame {
|
|
|
52
52
|
border-right: 1px solid #ADACA6;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
+
.topbar-tab {
|
|
56
|
+
display: block;
|
|
57
|
+
height: ${css_vh(10.29)};
|
|
58
|
+
width: 100%;
|
|
59
|
+
padding: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
55
62
|
#topbar ul.topbar-nav>div {
|
|
56
63
|
display: inline-block;
|
|
57
64
|
margin: 1px -3px 0px;
|
|
@@ -61,10 +68,15 @@ div.frame {
|
|
|
61
68
|
background: white;
|
|
62
69
|
}
|
|
63
70
|
|
|
64
|
-
#topbar ul.topbar-nav
|
|
71
|
+
#topbar ul.topbar-nav>li>button.logo {
|
|
65
72
|
width: ${css_vh(32)};
|
|
66
73
|
}
|
|
67
74
|
|
|
75
|
+
#logotab {
|
|
76
|
+
visibility: hidden;
|
|
77
|
+
pointer-events: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
68
80
|
#topbar ul.topbar-nav .logo .logo-icon {
|
|
69
81
|
display: block;
|
|
70
82
|
width: ${css_vh(28.65)};
|
|
@@ -75,7 +87,7 @@ div.frame {
|
|
|
75
87
|
margin: auto auto;
|
|
76
88
|
}
|
|
77
89
|
|
|
78
|
-
#topbar ul.topbar-nav
|
|
90
|
+
#topbar ul.topbar-nav>li>button.home {
|
|
79
91
|
width: ${css_vh(16)};
|
|
80
92
|
}
|
|
81
93
|
|
|
@@ -89,7 +101,7 @@ div.frame {
|
|
|
89
101
|
margin: auto auto;
|
|
90
102
|
}
|
|
91
103
|
|
|
92
|
-
#topbar ul.topbar-nav
|
|
104
|
+
#topbar ul.topbar-nav>li>button.help {
|
|
93
105
|
width: ${css_vh(16)};
|
|
94
106
|
}
|
|
95
107
|
|
|
@@ -123,7 +135,6 @@ div.frame {
|
|
|
123
135
|
}
|
|
124
136
|
|
|
125
137
|
#topbar ul.reference>li {
|
|
126
|
-
width: ${css_vh(16)};
|
|
127
138
|
display: inline-block;
|
|
128
139
|
margin: 1px 0px 0px;
|
|
129
140
|
padding: 0px;
|
|
@@ -132,6 +143,10 @@ div.frame {
|
|
|
132
143
|
border-left: 1px solid white;
|
|
133
144
|
}
|
|
134
145
|
|
|
146
|
+
#topbar ul.reference>li>button {
|
|
147
|
+
width: ${css_vh(16)};
|
|
148
|
+
}
|
|
149
|
+
|
|
135
150
|
#topbar ul.reference .book .book-icon {
|
|
136
151
|
display: block;
|
|
137
152
|
width: ${css_vh(12.63)};
|
|
@@ -229,7 +244,7 @@ ul#settings.reference {
|
|
|
229
244
|
vertical-align: middle;
|
|
230
245
|
}
|
|
231
246
|
|
|
232
|
-
.topsection.home >
|
|
247
|
+
.topsection.home > .tabicon {
|
|
233
248
|
display: none;
|
|
234
249
|
}
|
|
235
250
|
|
|
@@ -270,7 +285,7 @@ ul#settings.reference {
|
|
|
270
285
|
border-bottom: 1px solid #E8E3CA;
|
|
271
286
|
}
|
|
272
287
|
|
|
273
|
-
.topsection.help >
|
|
288
|
+
.topsection.help > .tabicon {
|
|
274
289
|
display: block;
|
|
275
290
|
margin: 0px auto ${css_vh(1.3)};
|
|
276
291
|
width: ${css_vh(39)};
|
|
@@ -294,7 +309,7 @@ div.languagebuttons {
|
|
|
294
309
|
display: inline-block;
|
|
295
310
|
}
|
|
296
311
|
|
|
297
|
-
|
|
312
|
+
.localizationselect {
|
|
298
313
|
border-radius: 15px;
|
|
299
314
|
width: ${css_vw(23)};
|
|
300
315
|
height: 47pt;
|
|
@@ -310,13 +325,14 @@ div.localizationselect {
|
|
|
310
325
|
margin: 0 ${css_vw(1.68)} ${css_vw(2)};
|
|
311
326
|
padding-top: 2%;
|
|
312
327
|
background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 51%);
|
|
328
|
+
padding: 0;
|
|
313
329
|
}
|
|
314
330
|
|
|
315
|
-
|
|
331
|
+
.localizationselect.selected {
|
|
316
332
|
background-color: #F9A737;
|
|
317
333
|
}
|
|
318
334
|
|
|
319
|
-
|
|
335
|
+
.localizationselect.selected:after {
|
|
320
336
|
display: block;
|
|
321
337
|
content: ' ';
|
|
322
338
|
background-image: url('../assets/ui/languageConfirm.svg');
|
|
@@ -372,6 +388,9 @@ div.localizationselect.selected:after {
|
|
|
372
388
|
position: absolute;
|
|
373
389
|
width: ${css_vw(16.66)};
|
|
374
390
|
height: ${css_vh(10.15)};
|
|
391
|
+
display: block;
|
|
392
|
+
padding: 0;
|
|
393
|
+
color: inherit;
|
|
375
394
|
}
|
|
376
395
|
|
|
377
396
|
#footer ul.footer-nav .tab,
|
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
vertical-align: top;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
.projectthumb:focus-within,
|
|
12
|
+
.samplethumb:focus-within {
|
|
13
|
+
z-index: 10;
|
|
14
|
+
}
|
|
15
|
+
|
|
11
16
|
.aproject {
|
|
12
17
|
margin: 0px;
|
|
13
18
|
padding: 0px;
|
|
@@ -143,6 +148,19 @@
|
|
|
143
148
|
.samplethumb .thumb.pos6 { -webkit-transform: rotateZ(-0.3deg);}
|
|
144
149
|
.samplethumb .thumb.pos7 { -webkit-transform: rotateZ(1deg);}
|
|
145
150
|
|
|
151
|
+
.lobby-card-action {
|
|
152
|
+
min-width: ${css_vh(12)};
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.card-action-open {
|
|
156
|
+
left: 8px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.card-action-delete {
|
|
160
|
+
left: auto;
|
|
161
|
+
right: 8px;
|
|
162
|
+
}
|
|
163
|
+
|
|
146
164
|
.closex {
|
|
147
165
|
position: relative;
|
|
148
166
|
float: left;
|
|
@@ -172,6 +172,7 @@
|
|
|
172
172
|
/* padding: 2.5px 5px; */
|
|
173
173
|
margin-left: -12px;
|
|
174
174
|
cursor: pointer;
|
|
175
|
+
padding: 0;
|
|
175
176
|
}
|
|
176
177
|
.speechBubbleNextStep {
|
|
177
178
|
background: #E6E6E6;
|
|
@@ -180,6 +181,7 @@
|
|
|
180
181
|
/* padding: 2.5px 5px; */
|
|
181
182
|
margin-right: -12px;
|
|
182
183
|
cursor: pointer;
|
|
184
|
+
padding: 0;
|
|
183
185
|
|
|
184
186
|
}
|
|
185
187
|
|
|
@@ -234,6 +236,9 @@
|
|
|
234
236
|
font-size: 28px;
|
|
235
237
|
font-weight: bold;
|
|
236
238
|
cursor: pointer;
|
|
239
|
+
background: none;
|
|
240
|
+
border: 0;
|
|
241
|
+
line-height: 1;
|
|
237
242
|
}
|
|
238
243
|
|
|
239
244
|
.closeModal:hover,
|
|
@@ -286,4 +291,4 @@
|
|
|
286
291
|
100% {
|
|
287
292
|
transform: scale(2);
|
|
288
293
|
}
|
|
289
|
-
}
|
|
294
|
+
}
|