Commit 813f7e1c64eef914fdc64d1469eabb959577771c

Authored by Geremia Taglialatela
1 parent 28da7fcb

Remove vendor prefixes

... ... @@ -84,9 +84,6 @@
84 84
85 85 .tb-panel-title {
86 86 min-width: 150px;
87   - -webkit-user-select: none;
88   - -moz-user-select: none;
89   - -ms-user-select: none;
90 87 user-select: none;
91 88 }
92 89
... ... @@ -163,10 +160,6 @@
163 160 .fc-canvas {
164 161 min-width: 100%;
165 162 min-height: 100%;
166   - -webkit-user-select: none;
167   - -khtml-user-select: none;
168   - -moz-user-select: none;
169   - -ms-user-select: none;
170 163 user-select: none;
171 164 outline: none;
172 165 -webkit-touch-callout: none;
... ... @@ -441,13 +434,7 @@
441 434 }
442 435
443 436 .fc-noselect {
444   - -webkit-touch-callout: none; /* iOS Safari */
445   - -webkit-user-select: none; /* Safari */
446   - -khtml-user-select: none; /* Konqueror HTML */
447   - -moz-user-select: none; /* Firefox */
448   - -ms-user-select: none; /* Internet Explorer/Edge */
449   - user-select: none; /* Non-prefixed version, currently
450   - supported by Chrome and Opera */
  437 + user-select: none;
451 438 }
452 439
453 440 .fc-edge-label {
... ... @@ -495,7 +482,6 @@
495 482 font-weight: 600;
496 483 text-align: center;
497 484 white-space: nowrap;
498   - -webkit-transform: translate(-50%, -50%);
499 485 transform: translate(-50%, -50%);
500 486
501 487 span {
... ...
... ... @@ -37,8 +37,6 @@ $background-color: #e6e7e8 !default;
37 37 position: relative;
38 38
39 39 &[draggable] {
40   - -moz-user-select: none;
41   - -webkit-user-select: none;
42 40 user-select: none;
43 41 }
44 42
... ...
... ... @@ -60,19 +60,11 @@ $background-color: #e6e7e8 !default;
60 60 .led {
61 61 position: relative;
62 62 cursor: pointer;
63   - background-image: -owg-radial-gradient(50% 50%, circle closest-corner, transparent, rgba(0, 0, 0, .25));
64   - background-image: -webkit-radial-gradient(50% 50%, circle closest-corner, transparent, rgba(0, 0, 0, .25));
65   - background-image: -moz-radial-gradient(50% 50%, circle closest-corner, transparent, rgba(0, 0, 0, .25));
66   - background-image: -o-radial-gradient(50% 50%, circle closest-corner, transparent, rgba(0, 0, 0, .25));
67 63 background-image: radial-gradient(50% 50%, circle closest-corner, transparent, rgba(0, 0, 0, .25));
68 64 border-radius: 50%;
69 65 transition: background-color .5s, box-shadow .5s;
70 66
71 67 &.disabled {
72   - background-image: -owg-radial-gradient(50% 50%, circle closest-corner, rgba(255, 255, 255, .5), rgba(0, 0, 0, .1));
73   - background-image: -webkit-radial-gradient(50% 50%, circle closest-corner, rgba(255, 255, 255, .5), rgba(0, 0, 0, .1));
74   - background-image: -moz-radial-gradient(50% 50%, circle closest-corner, rgba(255, 255, 255, .5), rgba(0, 0, 0, .1));
75   - background-image: -o-radial-gradient(50% 50%, circle closest-corner, rgba(255, 255, 255, .5), rgba(0, 0, 0, .1));
76 68 background-image: radial-gradient(50% 50%, circle closest-corner, rgba(255, 255, 255, .5), rgba(0, 0, 0, .1));
77 69 }
78 70 }
... ...
... ... @@ -69,12 +69,7 @@ $background-color: #e6e7e8 !default;
69 69
70 70 color: #424242;
71 71 cursor: pointer;
72   - -pie-background: -pie-linear-gradient(270deg, #bbb, #ddd);
73 72 background: #ddd;
74   - background: -owg-linear-gradient(270deg, #bbb, #ddd);
75   - background: -webkit-linear-gradient(270deg, #bbb, #ddd);
76   - background: -moz-linear-gradient(270deg, #bbb, #ddd);
77   - background: -o-linear-gradient(270deg, #bbb, #ddd);
78 73 background: linear-gradient(180deg, #bbb, #ddd);
79 74 border-radius: 130px;
80 75
... ... @@ -141,10 +136,6 @@ $background-color: #e6e7e8 !default;
141 136 padding: 4px 4px;
142 137 cursor: pointer;
143 138 background-color: #888787;
144   - background-image: -owg-linear-gradient(0deg, transparent 30%, transparent 70%), -owg-linear-gradient(90deg, rgba(150, 150, 150, 0) 30%, rgba(150, 150, 150, .2) 50%, rgba(150, 150, 150, 0) 70%);
145   - background-image: -webkit-linear-gradient(0deg, transparent 30%, transparent 70%), -webkit-linear-gradient(90deg, rgba(150, 150, 150, 0) 30%, rgba(150, 150, 150, .2) 50%, rgba(150, 150, 150, 0) 70%);
146   - background-image: -moz-linear-gradient(0deg, transparent 30%, transparent 70%), -moz-linear-gradient(90deg, rgba(150, 150, 150, 0) 30%, rgba(150, 150, 150, .2) 50%, rgba(150, 150, 150, 0) 70%);
147   - background-image: -o-linear-gradient(0deg, transparent 30%, transparent 70%), -o-linear-gradient(90deg, rgba(150, 150, 150, 0) 30%, rgba(150, 150, 150, .2) 50%, rgba(150, 150, 150, 0) 70%);
148 139 background-image: linear-gradient(-90deg, transparent 30%, transparent 70%), linear-gradient(0deg, rgba(150, 150, 150, 0) 30%, rgba(150, 150, 150, .2) 50%, rgba(150, 150, 150, 0) 70%);
149 140 border-radius: 105px;
150 141
... ... @@ -181,10 +172,6 @@ $background-color: #e6e7e8 !default;
181 172 input:checked + .back .but{
182 173 margin-top: 20px;
183 174 background: #dcdcdc;
184   - background-image: -owg-radial-gradient(50% 15%, circle closest-corner, rgba(0, 0, 0, .3), transparent);
185   - background-image: -webkit-radial-gradient(50% 15%, circle closest-corner, rgba(0, 0, 0, .3), transparent);
186   - background-image: -moz-radial-gradient(50% 15%, circle closest-corner, rgba(0, 0, 0, .3), transparent);
187   - background-image: -o-radial-gradient(50% 15%, circle closest-corner, rgba(0, 0, 0, .3), transparent);
188 175 background-image: radial-gradient(50% 15%, circle closest-corner, rgba(0, 0, 0, .3), transparent);
189 176 border-radius: 400px 400px 400px 400px / 300px 300px 400px 400px;
190 177
... ... @@ -199,10 +186,6 @@ $background-color: #e6e7e8 !default;
199 186 input:checked + .back{
200 187 padding: 2px 4px;
201 188
202   - background-image: -owg-linear-gradient(90deg, #868686 30%, transparent 70%), -owg-linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, rgba(255, 255, 255, .74) 50%, rgba(105, 105, 105, 0) 100%);
203   - background-image: -webkit-linear-gradient(90deg, #868686 30%, transparent 70%), -webkit-linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, rgba(255, 255, 255, .74) 50%, rgba(105, 105, 105, 0) 100%);
204   - background-image: -moz-linear-gradient(90deg, #868686 30%, transparent 70%), -moz-linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, rgba(255, 255, 255, .74) 50%, rgba(105, 105, 105, 0) 100%);
205   - background-image: -o-linear-gradient(90deg, #868686 30%, transparent 70%), -o-linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, rgba(255, 255, 255, .74) 50%, rgba(105, 105, 105, 0) 100%);
206 189 background-image: linear-gradient(0deg, #868686 30%, transparent 70%), linear-gradient(90deg, rgba(115, 115, 115, 0) 0%, rgba(255, 255, 255, .74) 50%, rgba(105, 105, 105, 0) 100%);
207 190
208 191 @include box-shadow(30px 30px 30px -20px rgba(49, 49, 49, .1),
... ...
... ... @@ -258,13 +258,7 @@ label {
258 258 }
259 259
260 260 .tb-noselect {
261   - -webkit-touch-callout: none; /* iOS Safari */
262   - -webkit-user-select: none; /* Safari */
263   - -khtml-user-select: none; /* Konqueror HTML */
264   - -moz-user-select: none; /* Firefox */
265   - -ms-user-select: none; /* Internet Explorer/Edge */
266   - user-select: none; /* Non-prefixed version, currently
267   - supported by Chrome and Opera */
  261 + user-select: none;
268 262 }
269 263
270 264 .tb-readonly-label {
... ...