@mcurros2/microm 1.1.225-0 → 1.1.226-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/index.css +59 -42
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.css
CHANGED
|
@@ -237,9 +237,10 @@
|
|
|
237
237
|
[class^="w2ui-icon-"]:before, [class*=" w2ui-icon-"]:before {
|
|
238
238
|
vertical-align: middle;
|
|
239
239
|
speak: none;
|
|
240
|
+
-webkit-text-decoration: inherit;
|
|
240
241
|
text-decoration: inherit;
|
|
241
242
|
text-transform: none;
|
|
242
|
-
text-rendering:
|
|
243
|
+
text-rendering: optimizelegibility;
|
|
243
244
|
-webkit-font-smoothing: antialiased;
|
|
244
245
|
-moz-osx-font-smoothing: grayscale;
|
|
245
246
|
font-family: w2ui-font;
|
|
@@ -342,7 +343,7 @@
|
|
|
342
343
|
font-size: 12px;
|
|
343
344
|
}
|
|
344
345
|
|
|
345
|
-
.w2ui-reset input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"])
|
|
346
|
+
.w2ui-reset select, .w2ui-reset textarea, .w2ui-reset input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
|
|
346
347
|
vertical-align: baseline;
|
|
347
348
|
background-color: #f8fafa;
|
|
348
349
|
border: 1px solid #e0e0e0;
|
|
@@ -354,7 +355,7 @@
|
|
|
354
355
|
display: inline-block;
|
|
355
356
|
}
|
|
356
357
|
|
|
357
|
-
.w2ui-reset input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus
|
|
358
|
+
.w2ui-reset select:focus, .w2ui-reset textarea:focus, .w2ui-reset input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus {
|
|
358
359
|
background-color: #fff;
|
|
359
360
|
}
|
|
360
361
|
|
|
@@ -389,7 +390,7 @@ select.w2ui-input:focus, div.w2ui-input:focus {
|
|
|
389
390
|
outline-color: #72b2ff;
|
|
390
391
|
}
|
|
391
392
|
|
|
392
|
-
input:not([type="button"]):not([type="submit"]).w2ui-input
|
|
393
|
+
textarea.w2ui-input, input:not([type="button"]):not([type="submit"]).w2ui-input {
|
|
393
394
|
color: #000;
|
|
394
395
|
background-color: #f8fafa;
|
|
395
396
|
border: 1px solid #e0e0e0;
|
|
@@ -398,12 +399,12 @@ input:not([type="button"]):not([type="submit"]).w2ui-input, textarea.w2ui-input
|
|
|
398
399
|
line-height: normal;
|
|
399
400
|
}
|
|
400
401
|
|
|
401
|
-
input:not([type="button"]):not([type="submit"]).w2ui-input:focus
|
|
402
|
+
textarea.w2ui-input:focus, input:not([type="button"]):not([type="submit"]).w2ui-input:focus {
|
|
402
403
|
background-color: #fff;
|
|
403
404
|
outline-color: #72b2ff;
|
|
404
405
|
}
|
|
405
406
|
|
|
406
|
-
input:not([type="button"]):not([type="submit"]).w2ui-input:disabled,
|
|
407
|
+
textarea.w2ui-input:disabled, textarea.w2ui-input[readonly], input:not([type="button"]):not([type="submit"]).w2ui-input:disabled, input:not([type="button"]):not([type="submit"]).w2ui-input[readonly] {
|
|
407
408
|
color: #777;
|
|
408
409
|
background-color: #f1f1f1;
|
|
409
410
|
}
|
|
@@ -586,7 +587,7 @@ input[type="checkbox"].w2ui-toggle.green:checked + div > div {
|
|
|
586
587
|
opacity: .15;
|
|
587
588
|
width: 100%;
|
|
588
589
|
height: 100%;
|
|
589
|
-
filter: alpha(opacity=
|
|
590
|
+
filter: alpha(opacity=15);
|
|
590
591
|
background-color: #333;
|
|
591
592
|
display: none;
|
|
592
593
|
position: absolute;
|
|
@@ -614,7 +615,7 @@ input[type="checkbox"].w2ui-toggle.green:checked + div > div {
|
|
|
614
615
|
top: 50%;
|
|
615
616
|
left: 50%;
|
|
616
617
|
overflow: hidden;
|
|
617
|
-
transform: translateX(-50%)translateY(-50%);
|
|
618
|
+
transform: translateX(-50%) translateY(-50%);
|
|
618
619
|
}
|
|
619
620
|
|
|
620
621
|
.w2ui-lock-msg .w2ui-spinner {
|
|
@@ -719,9 +720,10 @@ input[type="checkbox"].w2ui-toggle.green:checked + div > div {
|
|
|
719
720
|
background-color: #fcadad;
|
|
720
721
|
}
|
|
721
722
|
|
|
722
|
-
input[type="button"].w2ui-btn
|
|
723
|
+
button.w2ui-btn, input[type="button"].w2ui-btn {
|
|
723
724
|
color: #666;
|
|
724
725
|
cursor: default;
|
|
726
|
+
-webkit-user-select: none;
|
|
725
727
|
user-select: none;
|
|
726
728
|
-o-user-select: none;
|
|
727
729
|
-webkit-tap-highlight-color: #0000;
|
|
@@ -739,18 +741,18 @@ input[type="button"].w2ui-btn, button.w2ui-btn {
|
|
|
739
741
|
box-shadow: 0 1px #fff;
|
|
740
742
|
}
|
|
741
743
|
|
|
742
|
-
|
|
744
|
+
button.w2ui-btn:hover, input[type="button"].w2ui-btn:hover {
|
|
743
745
|
color: #333;
|
|
744
746
|
background-image: linear-gradient(#ddd 0% 100%);
|
|
745
747
|
text-decoration: none;
|
|
746
748
|
}
|
|
747
749
|
|
|
748
|
-
|
|
750
|
+
button.w2ui-btn:active, button.w2ui-btn.clicked, input[type="button"].w2ui-btn:active, input[type="button"].w2ui-btn.clicked {
|
|
749
751
|
text-shadow: 1px 1px 1px #eee;
|
|
750
752
|
background-image: linear-gradient(#ccc 0% 100%);
|
|
751
753
|
}
|
|
752
754
|
|
|
753
|
-
|
|
755
|
+
button.w2ui-btn:focus:before, input[type="button"].w2ui-btn:focus:before {
|
|
754
756
|
content: "";
|
|
755
757
|
pointer-events: none;
|
|
756
758
|
border: 1px dashed #aaa;
|
|
@@ -759,119 +761,119 @@ input[type="button"].w2ui-btn:focus:before, button.w2ui-btn:focus:before {
|
|
|
759
761
|
inset: 2px;
|
|
760
762
|
}
|
|
761
763
|
|
|
762
|
-
|
|
764
|
+
button.w2ui-btn-blue, input[type="button"].w2ui-btn-blue {
|
|
763
765
|
color: #fff;
|
|
764
766
|
text-shadow: 0 0 1px #111;
|
|
765
767
|
background-image: linear-gradient(#269df0 0% 100%);
|
|
766
768
|
border: 1px solid #269df0;
|
|
767
769
|
}
|
|
768
770
|
|
|
769
|
-
|
|
771
|
+
button.w2ui-btn-blue:hover, input[type="button"].w2ui-btn-blue:hover {
|
|
770
772
|
color: #fff;
|
|
771
773
|
text-shadow: 0 0 1px #111;
|
|
772
774
|
background-image: linear-gradient(#2391dd 0% 100%);
|
|
773
775
|
border: 1px solid #2391dd;
|
|
774
776
|
}
|
|
775
777
|
|
|
776
|
-
|
|
778
|
+
button.w2ui-btn-blue:active, button.w2ui-btn-blue.clicked, input[type="button"].w2ui-btn-blue:active, input[type="button"].w2ui-btn-blue.clicked {
|
|
777
779
|
color: #fff;
|
|
778
780
|
text-shadow: 0 0 1px #111;
|
|
779
781
|
background-image: linear-gradient(#1e83c9 0% 100%);
|
|
780
782
|
border: 1px solid #1268a6;
|
|
781
783
|
}
|
|
782
784
|
|
|
783
|
-
|
|
785
|
+
button.w2ui-btn-blue:focus:before, input[type="button"].w2ui-btn-blue:focus:before {
|
|
784
786
|
border: 1px dashed #e8e8e8;
|
|
785
787
|
}
|
|
786
788
|
|
|
787
|
-
|
|
789
|
+
button.w2ui-btn-green, input[type="button"].w2ui-btn-green {
|
|
788
790
|
color: #fff;
|
|
789
791
|
text-shadow: 0 0 1px #111;
|
|
790
792
|
background-image: linear-gradient(#52a452 0% 100%);
|
|
791
793
|
border: 1px solid #52a452;
|
|
792
794
|
}
|
|
793
795
|
|
|
794
|
-
|
|
796
|
+
button.w2ui-btn-green:hover, input[type="button"].w2ui-btn-green:hover {
|
|
795
797
|
color: #fff;
|
|
796
798
|
text-shadow: 0 0 1px #111;
|
|
797
799
|
background-image: linear-gradient(#3f8f3d 0% 100%);
|
|
798
800
|
border: 1px solid #3f8f3d;
|
|
799
801
|
}
|
|
800
802
|
|
|
801
|
-
|
|
803
|
+
button.w2ui-btn-green:active, button.w2ui-btn-green.clicked, input[type="button"].w2ui-btn-green:active, input[type="button"].w2ui-btn-green.clicked {
|
|
802
804
|
color: #fff;
|
|
803
805
|
text-shadow: 0 0 1px #111;
|
|
804
806
|
background-image: linear-gradient(#377d36 0% 100%);
|
|
805
807
|
border: 1px solid #555;
|
|
806
808
|
}
|
|
807
809
|
|
|
808
|
-
|
|
810
|
+
button.w2ui-btn-green:focus:before, input[type="button"].w2ui-btn-green:focus:before {
|
|
809
811
|
border: 1px dashed #e8e8e8;
|
|
810
812
|
}
|
|
811
813
|
|
|
812
|
-
|
|
814
|
+
button.w2ui-btn-orange, input[type="button"].w2ui-btn-orange {
|
|
813
815
|
color: #fff;
|
|
814
816
|
text-shadow: 0 0 1px #111;
|
|
815
817
|
background-image: linear-gradient(#fb8822 0% 100%);
|
|
816
818
|
border: 1px solid #fb8822;
|
|
817
819
|
}
|
|
818
820
|
|
|
819
|
-
|
|
821
|
+
button.w2ui-btn-orange:hover, input[type="button"].w2ui-btn-orange:hover {
|
|
820
822
|
color: #fff;
|
|
821
823
|
text-shadow: 0 0 1px #111;
|
|
822
824
|
background-image: linear-gradient(#f1731f 0% 100%);
|
|
823
825
|
border: 1px solid #f1731f;
|
|
824
826
|
}
|
|
825
827
|
|
|
826
|
-
|
|
828
|
+
button.w2ui-btn-orange:active, button.w2ui-btn-orange.clicked, input[type="button"].w2ui-btn-orange:active, input[type="button"].w2ui-btn-orange.clicked {
|
|
827
829
|
color: #fff;
|
|
828
830
|
text-shadow: 0 0 1px #111;
|
|
829
831
|
background-image: linear-gradient(#b98747 0% 100%);
|
|
830
832
|
border: 1px solid #666;
|
|
831
833
|
}
|
|
832
834
|
|
|
833
|
-
|
|
835
|
+
button.w2ui-btn-orange:focus:before, input[type="button"].w2ui-btn-orange:focus:before {
|
|
834
836
|
border: 1px dashed #f9f9f9;
|
|
835
837
|
}
|
|
836
838
|
|
|
837
|
-
|
|
839
|
+
button.w2ui-btn-red, input[type="button"].w2ui-btn-red {
|
|
838
840
|
color: #fff;
|
|
839
841
|
text-shadow: 0 0 1px #111;
|
|
840
842
|
background-image: linear-gradient(#f9585a 0% 100%);
|
|
841
843
|
border: 1px solid #f9585a;
|
|
842
844
|
}
|
|
843
845
|
|
|
844
|
-
|
|
846
|
+
button.w2ui-btn-red:hover, input[type="button"].w2ui-btn-red:hover {
|
|
845
847
|
color: #fff;
|
|
846
848
|
text-shadow: 0 0 1px #111;
|
|
847
849
|
background-image: linear-gradient(#de4446 0% 100%);
|
|
848
850
|
border: 1px solid #de4446;
|
|
849
851
|
}
|
|
850
852
|
|
|
851
|
-
|
|
853
|
+
button.w2ui-btn-red:active, button.w2ui-btn-red.clicked, input[type="button"].w2ui-btn-red:active, input[type="button"].w2ui-btn-red.clicked {
|
|
852
854
|
color: #fff;
|
|
853
855
|
text-shadow: 0 0 1px #111;
|
|
854
856
|
background-image: linear-gradient(#9c2123 0% 100%);
|
|
855
857
|
border: 1px solid #861c1e;
|
|
856
858
|
}
|
|
857
859
|
|
|
858
|
-
|
|
860
|
+
button.w2ui-btn-red:focus:before, input[type="button"].w2ui-btn-red:focus:before {
|
|
859
861
|
border: 1px dashed #ddd;
|
|
860
862
|
}
|
|
861
863
|
|
|
862
|
-
|
|
864
|
+
button.w2ui-btn-small, input[type="button"].w2ui-btn-small {
|
|
863
865
|
border-radius: 4px;
|
|
864
866
|
min-width: 0;
|
|
865
867
|
margin: 0;
|
|
866
868
|
padding: 5px;
|
|
867
869
|
}
|
|
868
870
|
|
|
869
|
-
|
|
871
|
+
button.w2ui-btn-small:focus:before, input[type="button"].w2ui-btn-small:focus:before {
|
|
870
872
|
border-radius: 2px;
|
|
871
873
|
inset: 2px;
|
|
872
874
|
}
|
|
873
875
|
|
|
874
|
-
|
|
876
|
+
button.w2ui-btn:disabled, input[type="button"].w2ui-btn:disabled {
|
|
875
877
|
color: #bdbcbc;
|
|
876
878
|
text-shadow: none;
|
|
877
879
|
background: #f7f7f7;
|
|
@@ -939,7 +941,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
939
941
|
margin: 0;
|
|
940
942
|
position: absolute;
|
|
941
943
|
top: calc(50% - 1px);
|
|
942
|
-
transform: rotate(-45deg)translateY(-50%);
|
|
944
|
+
transform: rotate(-45deg) translateY(-50%);
|
|
943
945
|
}
|
|
944
946
|
|
|
945
947
|
.w2ui-overlay .w2ui-overlay-body.w2ui-arrow-left:after {
|
|
@@ -957,7 +959,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
957
959
|
margin: 0;
|
|
958
960
|
position: absolute;
|
|
959
961
|
top: calc(50% - 1px);
|
|
960
|
-
transform: rotate(135deg)translateY(-50%);
|
|
962
|
+
transform: rotate(135deg) translateY(-50%);
|
|
961
963
|
}
|
|
962
964
|
|
|
963
965
|
.w2ui-overlay .w2ui-overlay-body.w2ui-arrow-bottom:before {
|
|
@@ -975,7 +977,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
975
977
|
margin: 0;
|
|
976
978
|
position: absolute;
|
|
977
979
|
left: 50%;
|
|
978
|
-
transform: rotate(45deg)translateX(-50%);
|
|
980
|
+
transform: rotate(45deg) translateX(-50%);
|
|
979
981
|
}
|
|
980
982
|
|
|
981
983
|
.w2ui-overlay .w2ui-overlay-body.w2ui-arrow-top:after {
|
|
@@ -993,7 +995,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
993
995
|
margin: 0;
|
|
994
996
|
position: absolute;
|
|
995
997
|
left: 50%;
|
|
996
|
-
transform: rotate(-135deg)translateX(-50%);
|
|
998
|
+
transform: rotate(-135deg) translateX(-50%);
|
|
997
999
|
}
|
|
998
1000
|
|
|
999
1001
|
.w2ui-colors {
|
|
@@ -1135,7 +1137,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1135
1137
|
display: inline-block;
|
|
1136
1138
|
position: absolute;
|
|
1137
1139
|
top: 0;
|
|
1138
|
-
transform: translateX(-3px)translateY(-3px);
|
|
1140
|
+
transform: translateX(-3px) translateY(-3px);
|
|
1139
1141
|
box-shadow: 0 0 1px #fff;
|
|
1140
1142
|
}
|
|
1141
1143
|
|
|
@@ -1242,6 +1244,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1242
1244
|
}
|
|
1243
1245
|
|
|
1244
1246
|
.w2ui-menu .w2ui-menu-item {
|
|
1247
|
+
-webkit-user-select: none;
|
|
1245
1248
|
user-select: none;
|
|
1246
1249
|
align-content: stretch;
|
|
1247
1250
|
padding: 8px 5px;
|
|
@@ -1324,6 +1327,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1324
1327
|
color: #838383;
|
|
1325
1328
|
box-shadow: none;
|
|
1326
1329
|
text-align: center;
|
|
1330
|
+
-webkit-user-select: none;
|
|
1327
1331
|
user-select: none;
|
|
1328
1332
|
opacity: 0;
|
|
1329
1333
|
background-color: #f7f7f7;
|
|
@@ -1350,6 +1354,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1350
1354
|
box-shadow: none;
|
|
1351
1355
|
opacity: 0;
|
|
1352
1356
|
text-align: center;
|
|
1357
|
+
-webkit-user-select: none;
|
|
1353
1358
|
user-select: none;
|
|
1354
1359
|
background-color: #0000;
|
|
1355
1360
|
border-color: #0000;
|
|
@@ -1498,6 +1503,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1498
1503
|
}
|
|
1499
1504
|
|
|
1500
1505
|
.w2ui-calendar {
|
|
1506
|
+
-webkit-user-select: none;
|
|
1501
1507
|
user-select: none;
|
|
1502
1508
|
margin: 0;
|
|
1503
1509
|
line-height: 1.1;
|
|
@@ -1727,7 +1733,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1727
1733
|
font-family: verdana;
|
|
1728
1734
|
font-size: 27px;
|
|
1729
1735
|
position: absolute;
|
|
1730
|
-
transform: translate(-15px, 15px)rotate(-36deg);
|
|
1736
|
+
transform: translate(-15px, 15px) rotate(-36deg);
|
|
1731
1737
|
}
|
|
1732
1738
|
|
|
1733
1739
|
.w2ui-cal-time {
|
|
@@ -1876,7 +1882,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1876
1882
|
right: 0;
|
|
1877
1883
|
}
|
|
1878
1884
|
|
|
1879
|
-
.w2ui-form .w2ui-buttons
|
|
1885
|
+
.w2ui-form .w2ui-buttons button, .w2ui-form .w2ui-buttons input[type="button"] {
|
|
1880
1886
|
min-width: 80px;
|
|
1881
1887
|
margin-right: 5px;
|
|
1882
1888
|
}
|
|
@@ -1947,7 +1953,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
1947
1953
|
background-color: #0000 !important;
|
|
1948
1954
|
}
|
|
1949
1955
|
|
|
1950
|
-
.w2ui-field.w2ui-disabled input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"])
|
|
1956
|
+
.w2ui-field.w2ui-disabled select, .w2ui-field.w2ui-disabled textarea, .w2ui-field.w2ui-disabled input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
|
|
1951
1957
|
background-color: #f5f5f5 !important;
|
|
1952
1958
|
border: 1px solid #bdc0c3 !important;
|
|
1953
1959
|
}
|
|
@@ -2063,6 +2069,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
2063
2069
|
}
|
|
2064
2070
|
|
|
2065
2071
|
.w2ui-field .w2ui-box-label {
|
|
2072
|
+
-webkit-user-select: none;
|
|
2066
2073
|
user-select: none;
|
|
2067
2074
|
vertical-align: middle;
|
|
2068
2075
|
}
|
|
@@ -2080,7 +2087,7 @@ input[type="button"].w2ui-btn:disabled, button.w2ui-btn:disabled {
|
|
|
2080
2087
|
margin: 4px 0 3px;
|
|
2081
2088
|
}
|
|
2082
2089
|
|
|
2083
|
-
input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]).w2ui-error
|
|
2090
|
+
textarea.w2ui-error, input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]).w2ui-error {
|
|
2084
2091
|
background-color: #fff4eb;
|
|
2085
2092
|
border: 1px solid #ffa8a8;
|
|
2086
2093
|
}
|
|
@@ -2093,6 +2100,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
2093
2100
|
|
|
2094
2101
|
.w2ui-field-helper {
|
|
2095
2102
|
pointer-events: none;
|
|
2103
|
+
-webkit-user-select: none;
|
|
2096
2104
|
user-select: none;
|
|
2097
2105
|
-o-user-select: none;
|
|
2098
2106
|
line-height: 100%;
|
|
@@ -2703,6 +2711,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
2703
2711
|
}
|
|
2704
2712
|
|
|
2705
2713
|
.w2ui-grid .w2ui-grid-body {
|
|
2714
|
+
-webkit-user-select: none;
|
|
2706
2715
|
user-select: none;
|
|
2707
2716
|
-o-user-select: none;
|
|
2708
2717
|
background-color: #fff;
|
|
@@ -2712,6 +2721,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
2712
2721
|
}
|
|
2713
2722
|
|
|
2714
2723
|
.w2ui-grid .w2ui-grid-body input, .w2ui-grid .w2ui-grid-body select, .w2ui-grid .w2ui-grid-body textarea {
|
|
2724
|
+
-webkit-user-select: text;
|
|
2715
2725
|
user-select: text;
|
|
2716
2726
|
-o-user-select: text;
|
|
2717
2727
|
}
|
|
@@ -3137,6 +3147,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
3137
3147
|
|
|
3138
3148
|
.w2ui-grid .w2ui-editable div.w2ui-input {
|
|
3139
3149
|
white-space: pre;
|
|
3150
|
+
-webkit-user-select: text;
|
|
3140
3151
|
user-select: text;
|
|
3141
3152
|
-o-user-select: text;
|
|
3142
3153
|
background-color: #fff;
|
|
@@ -3173,6 +3184,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
3173
3184
|
|
|
3174
3185
|
.w2ui-grid .w2ui-grid-footer {
|
|
3175
3186
|
text-align: center;
|
|
3187
|
+
-webkit-user-select: text;
|
|
3176
3188
|
user-select: text;
|
|
3177
3189
|
-o-user-select: text;
|
|
3178
3190
|
color: #444;
|
|
@@ -3555,6 +3567,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
3555
3567
|
|
|
3556
3568
|
.w2ui-popup .w2ui-popup-title {
|
|
3557
3569
|
text-overflow: ellipsis;
|
|
3570
|
+
-webkit-user-select: none;
|
|
3558
3571
|
user-select: none;
|
|
3559
3572
|
-o-user-select: none;
|
|
3560
3573
|
cursor: move;
|
|
@@ -3759,6 +3772,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
3759
3772
|
|
|
3760
3773
|
.w2ui-sidebar .w2ui-sidebar-body {
|
|
3761
3774
|
z-index: 1;
|
|
3775
|
+
-webkit-user-select: none;
|
|
3762
3776
|
user-select: none;
|
|
3763
3777
|
-o-user-select: none;
|
|
3764
3778
|
padding: 2px 0;
|
|
@@ -3813,7 +3827,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
3813
3827
|
|
|
3814
3828
|
.w2ui-sidebar .w2ui-sidebar-body .w2ui-node.w2ui-disabled .w2ui-node-text, .w2ui-sidebar .w2ui-sidebar-body .w2ui-node.w2ui-disabled:hover .w2ui-node-text, .w2ui-sidebar .w2ui-sidebar-body .w2ui-node.w2ui-disabled .w2ui-node-image, .w2ui-sidebar .w2ui-sidebar-body .w2ui-node.w2ui-disabled:hover .w2ui-node-image, .w2ui-sidebar .w2ui-sidebar-body .w2ui-node.w2ui-disabled .w2ui-node-image > span, .w2ui-sidebar .w2ui-sidebar-body .w2ui-node.w2ui-disabled:hover .w2ui-node-image > span {
|
|
3815
3829
|
opacity: .4;
|
|
3816
|
-
filter: alpha(opacity=
|
|
3830
|
+
filter: alpha(opacity=40);
|
|
3817
3831
|
color: #000;
|
|
3818
3832
|
text-shadow: 0 0 #fff;
|
|
3819
3833
|
}
|
|
@@ -4071,6 +4085,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
4071
4085
|
color: #000;
|
|
4072
4086
|
white-space: nowrap;
|
|
4073
4087
|
cursor: default;
|
|
4088
|
+
-webkit-user-select: none;
|
|
4074
4089
|
user-select: none;
|
|
4075
4090
|
background-color: #0000;
|
|
4076
4091
|
border: 2px solid #0000;
|
|
@@ -4165,6 +4180,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
4165
4180
|
}
|
|
4166
4181
|
|
|
4167
4182
|
.w2ui-toolbar {
|
|
4183
|
+
-webkit-user-select: none;
|
|
4168
4184
|
user-select: none;
|
|
4169
4185
|
background-color: #f5f5f5;
|
|
4170
4186
|
padding: 2px;
|
|
@@ -4180,7 +4196,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
4180
4196
|
|
|
4181
4197
|
.w2ui-toolbar .disabled {
|
|
4182
4198
|
opacity: .3;
|
|
4183
|
-
filter: alpha(opacity=
|
|
4199
|
+
filter: alpha(opacity=30);
|
|
4184
4200
|
}
|
|
4185
4201
|
|
|
4186
4202
|
.w2ui-toolbar .w2ui-scroll-left, .w2ui-toolbar .w2ui-scroll-right {
|
|
@@ -4205,6 +4221,7 @@ input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type
|
|
|
4205
4221
|
color: #000;
|
|
4206
4222
|
white-space: nowrap;
|
|
4207
4223
|
cursor: default;
|
|
4224
|
+
-webkit-user-select: none;
|
|
4208
4225
|
user-select: none;
|
|
4209
4226
|
background-color: #0000;
|
|
4210
4227
|
border: 1px solid #0000;
|