topcoat-rails 0.1.6 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +5 -5
- data/app/assets/stylesheets/topcoat/desktop-dark.scss +207 -148
- data/app/assets/stylesheets/topcoat/desktop-light.scss +217 -158
- data/app/assets/stylesheets/topcoat/mobile-dark.scss +221 -162
- data/app/assets/stylesheets/topcoat/mobile-light.scss +231 -172
- data/lib/topcoat-rails/version.rb +1 -1
- data/topcoat-rails.gemspec +1 -0
- metadata +29 -14
- checksums.yaml +0 -7
@@ -174,7 +174,7 @@
|
|
174
174
|
vertical-align: top;
|
175
175
|
background-color: #e5e9e8;
|
176
176
|
box-shadow: inset 0 1px #fff;
|
177
|
-
border: 1px solid #
|
177
|
+
border: 1px solid #9daca9;
|
178
178
|
border-radius: 6px;
|
179
179
|
}
|
180
180
|
|
@@ -184,31 +184,34 @@
|
|
184
184
|
.topcoat-button--large--quiet:hover,
|
185
185
|
.topcoat-button-bar__button:hover,
|
186
186
|
.topcoat-button-bar__button--large:hover {
|
187
|
-
background-color: #
|
188
|
-
}
|
189
|
-
|
190
|
-
.topcoat-button:active,
|
191
|
-
.topcoat-button--large:active,
|
192
|
-
.topcoat-button-bar__button:active,
|
193
|
-
.topcoat-button-bar__button--large:active,
|
194
|
-
:checked + .topcoat-button-bar__button {
|
195
|
-
background-color: #d3d7d7;
|
196
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.12);
|
187
|
+
background-color: #eff1f1;
|
197
188
|
}
|
198
189
|
|
199
190
|
.topcoat-button:focus,
|
200
191
|
.topcoat-button--quiet:focus,
|
192
|
+
.topcoat-button--quiet:hover:focus,
|
201
193
|
.topcoat-button--large:focus,
|
202
194
|
.topcoat-button--large--quiet:focus,
|
195
|
+
.topcoat-button--large--quiet:hover:focus,
|
203
196
|
.topcoat-button--cta:focus,
|
204
197
|
.topcoat-button--large--cta:focus,
|
205
198
|
.topcoat-button-bar__button:focus,
|
206
199
|
.topcoat-button-bar__button--large:focus {
|
207
|
-
border: 1px solid #
|
208
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
200
|
+
border: 1px solid #0036ff;
|
201
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
209
202
|
outline: 0;
|
210
203
|
}
|
211
204
|
|
205
|
+
.topcoat-button:active,
|
206
|
+
.topcoat-button--large:active,
|
207
|
+
.topcoat-button-bar__button:active,
|
208
|
+
.topcoat-button-bar__button--large:active,
|
209
|
+
:checked + .topcoat-button-bar__button {
|
210
|
+
border: 1px solid #9daca9;
|
211
|
+
background-color: #d2d6d6;
|
212
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
213
|
+
}
|
214
|
+
|
212
215
|
.topcoat-button--quiet {
|
213
216
|
background: transparent;
|
214
217
|
border: 1px solid transparent;
|
@@ -218,17 +221,19 @@
|
|
218
221
|
.topcoat-button--quiet:hover,
|
219
222
|
.topcoat-button--large--quiet:hover {
|
220
223
|
text-shadow: 0 1px #fff;
|
221
|
-
border: 1px solid #
|
224
|
+
border: 1px solid #9daca9;
|
222
225
|
box-shadow: inset 0 1px #fff;
|
223
226
|
}
|
224
227
|
|
225
228
|
.topcoat-button--quiet:active,
|
226
|
-
.topcoat-button--
|
229
|
+
.topcoat-button--quiet:focus:active,
|
230
|
+
.topcoat-button--large--quiet:active,
|
231
|
+
.topcoat-button--large--quiet:focus:active {
|
227
232
|
color: #454545;
|
228
233
|
text-shadow: 0 1px #fff;
|
229
|
-
background-color: #
|
230
|
-
border: 1px solid #
|
231
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.
|
234
|
+
background-color: #d2d6d6;
|
235
|
+
border: 1px solid #9daca9;
|
236
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
232
237
|
}
|
233
238
|
|
234
239
|
.topcoat-button--large,
|
@@ -248,7 +253,7 @@
|
|
248
253
|
|
249
254
|
.topcoat-button--cta,
|
250
255
|
.topcoat-button--large--cta {
|
251
|
-
border: 1px solid #
|
256
|
+
border: 1px solid #134f7f;
|
252
257
|
background-color: #288edf;
|
253
258
|
box-shadow: inset 0 1px rgba(255,255,255,0.36);
|
254
259
|
color: #fff;
|
@@ -258,12 +263,12 @@
|
|
258
263
|
|
259
264
|
.topcoat-button--cta:hover,
|
260
265
|
.topcoat-button--large--cta:hover {
|
261
|
-
background-color: #
|
266
|
+
background-color: #4ca1e4;
|
262
267
|
}
|
263
268
|
|
264
269
|
.topcoat-button--cta:active,
|
265
270
|
.topcoat-button--large--cta:active {
|
266
|
-
background-color: #
|
271
|
+
background-color: #1e7dc8;
|
267
272
|
box-shadow: inset 0 1px rgba(0,0,0,0.12);
|
268
273
|
}
|
269
274
|
|
@@ -593,7 +598,7 @@
|
|
593
598
|
vertical-align: top;
|
594
599
|
background-color: #e5e9e8;
|
595
600
|
box-shadow: inset 0 1px #fff;
|
596
|
-
border: 1px solid #
|
601
|
+
border: 1px solid #9daca9;
|
597
602
|
border-radius: 6px;
|
598
603
|
}
|
599
604
|
|
@@ -601,26 +606,29 @@
|
|
601
606
|
.topcoat-button--quiet:hover,
|
602
607
|
.topcoat-button--large:hover,
|
603
608
|
.topcoat-button--large--quiet:hover {
|
604
|
-
background-color: #
|
605
|
-
}
|
606
|
-
|
607
|
-
.topcoat-button:active,
|
608
|
-
.topcoat-button--large:active {
|
609
|
-
background-color: #d3d7d7;
|
610
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.12);
|
609
|
+
background-color: #eff1f1;
|
611
610
|
}
|
612
611
|
|
613
612
|
.topcoat-button:focus,
|
614
613
|
.topcoat-button--quiet:focus,
|
614
|
+
.topcoat-button--quiet:hover:focus,
|
615
615
|
.topcoat-button--large:focus,
|
616
616
|
.topcoat-button--large--quiet:focus,
|
617
|
+
.topcoat-button--large--quiet:hover:focus,
|
617
618
|
.topcoat-button--cta:focus,
|
618
619
|
.topcoat-button--large--cta:focus {
|
619
|
-
border: 1px solid #
|
620
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
620
|
+
border: 1px solid #0036ff;
|
621
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
621
622
|
outline: 0;
|
622
623
|
}
|
623
624
|
|
625
|
+
.topcoat-button:active,
|
626
|
+
.topcoat-button--large:active {
|
627
|
+
border: 1px solid #9daca9;
|
628
|
+
background-color: #d2d6d6;
|
629
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
630
|
+
}
|
631
|
+
|
624
632
|
/* topdoc
|
625
633
|
name: Quiet Button
|
626
634
|
description: A simple, yet quiet button
|
@@ -649,17 +657,19 @@
|
|
649
657
|
.topcoat-button--quiet:hover,
|
650
658
|
.topcoat-button--large--quiet:hover {
|
651
659
|
text-shadow: 0 1px #fff;
|
652
|
-
border: 1px solid #
|
660
|
+
border: 1px solid #9daca9;
|
653
661
|
box-shadow: inset 0 1px #fff;
|
654
662
|
}
|
655
663
|
|
656
664
|
.topcoat-button--quiet:active,
|
657
|
-
.topcoat-button--
|
665
|
+
.topcoat-button--quiet:focus:active,
|
666
|
+
.topcoat-button--large--quiet:active,
|
667
|
+
.topcoat-button--large--quiet:focus:active {
|
658
668
|
color: #454545;
|
659
669
|
text-shadow: 0 1px #fff;
|
660
|
-
background-color: #
|
661
|
-
border: 1px solid #
|
662
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.
|
670
|
+
background-color: #d2d6d6;
|
671
|
+
border: 1px solid #9daca9;
|
672
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
663
673
|
}
|
664
674
|
|
665
675
|
/* topdoc
|
@@ -736,7 +746,7 @@
|
|
736
746
|
|
737
747
|
.topcoat-button--cta,
|
738
748
|
.topcoat-button--large--cta {
|
739
|
-
border: 1px solid #
|
749
|
+
border: 1px solid #134f7f;
|
740
750
|
background-color: #288edf;
|
741
751
|
box-shadow: inset 0 1px rgba(255,255,255,0.36);
|
742
752
|
color: #fff;
|
@@ -746,12 +756,12 @@
|
|
746
756
|
|
747
757
|
.topcoat-button--cta:hover,
|
748
758
|
.topcoat-button--large--cta:hover {
|
749
|
-
background-color: #
|
759
|
+
background-color: #4ca1e4;
|
750
760
|
}
|
751
761
|
|
752
762
|
.topcoat-button--cta:active,
|
753
763
|
.topcoat-button--large--cta:active {
|
754
|
-
background-color: #
|
764
|
+
background-color: #1e7dc8;
|
755
765
|
box-shadow: inset 0 1px rgba(0,0,0,0.12);
|
756
766
|
}
|
757
767
|
|
@@ -1021,7 +1031,7 @@ input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
|
|
1021
1031
|
width: 2rem;
|
1022
1032
|
height: 2rem;
|
1023
1033
|
background: #e5e9e8;
|
1024
|
-
border: 1px solid #
|
1034
|
+
border: 1px solid #9daca9;
|
1025
1035
|
border-radius: 3px;
|
1026
1036
|
box-shadow: inset 0 1px #fff;
|
1027
1037
|
}
|
@@ -1038,7 +1048,7 @@ input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
|
|
1038
1048
|
width: 28px;
|
1039
1049
|
height: 11px;
|
1040
1050
|
background: transparent;
|
1041
|
-
border: 7px solid #
|
1051
|
+
border: 7px solid #454545;
|
1042
1052
|
border-width: 7px;
|
1043
1053
|
border-top: none;
|
1044
1054
|
border-right: none;
|
@@ -1049,8 +1059,20 @@ input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
|
|
1049
1059
|
}
|
1050
1060
|
|
1051
1061
|
input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
1052
|
-
border: 1px solid #
|
1053
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
1062
|
+
border: 1px solid #0036ff;
|
1063
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
1064
|
+
}
|
1065
|
+
|
1066
|
+
input[type="checkbox"]:active + .topcoat-checkbox__checkmark:before {
|
1067
|
+
border: 1px solid #9daca9;
|
1068
|
+
background-color: #d2d6d6;
|
1069
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
input[type="checkbox"]:disabled:active + .topcoat-checkbox__checkmark:before {
|
1073
|
+
border: 1px solid #9daca9;
|
1074
|
+
background: #e5e9e8;
|
1075
|
+
box-shadow: inset 0 1px #fff;
|
1054
1076
|
}
|
1055
1077
|
|
1056
1078
|
/**
|
@@ -1168,7 +1190,7 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1168
1190
|
vertical-align: baseline;
|
1169
1191
|
background-color: #e5e9e8;
|
1170
1192
|
box-shadow: inset 0 1px #fff;
|
1171
|
-
border: 1px solid #
|
1193
|
+
border: 1px solid #9daca9;
|
1172
1194
|
border-radius: 6px;
|
1173
1195
|
}
|
1174
1196
|
|
@@ -1176,12 +1198,7 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1176
1198
|
.topcoat-icon-button--quiet:hover,
|
1177
1199
|
.topcoat-icon-button--large:hover,
|
1178
1200
|
.topcoat-icon-button--large--quiet:hover {
|
1179
|
-
background-color: #
|
1180
|
-
}
|
1181
|
-
|
1182
|
-
.topcoat-icon-button:active {
|
1183
|
-
background-color: #d3d7d7;
|
1184
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.12);
|
1201
|
+
background-color: #eff1f1;
|
1185
1202
|
}
|
1186
1203
|
|
1187
1204
|
.topcoat-icon-button:focus,
|
@@ -1190,11 +1207,18 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1190
1207
|
.topcoat-icon-button--large:focus,
|
1191
1208
|
.topcoat-icon-button--large--quiet:focus,
|
1192
1209
|
.topcoat-icon-button--large--quiet:hover:focus {
|
1193
|
-
border: 1px solid #
|
1194
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
1210
|
+
border: 1px solid #0036ff;
|
1211
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
1195
1212
|
outline: 0;
|
1196
1213
|
}
|
1197
1214
|
|
1215
|
+
.topcoat-icon-button:active,
|
1216
|
+
.topcoat-icon-button--large:active {
|
1217
|
+
border: 1px solid #9daca9;
|
1218
|
+
background-color: #d2d6d6;
|
1219
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
1220
|
+
}
|
1221
|
+
|
1198
1222
|
/* topdoc
|
1199
1223
|
name: Quiet Icon Button
|
1200
1224
|
description: Like quiet button, but it has an icon.
|
@@ -1228,17 +1252,19 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1228
1252
|
.topcoat-icon-button--quiet:hover,
|
1229
1253
|
.topcoat-icon-button--large--quiet:hover {
|
1230
1254
|
text-shadow: 0 1px #fff;
|
1231
|
-
border: 1px solid #
|
1255
|
+
border: 1px solid #9daca9;
|
1232
1256
|
box-shadow: inset 0 1px #fff;
|
1233
1257
|
}
|
1234
1258
|
|
1235
1259
|
.topcoat-icon-button--quiet:active,
|
1236
|
-
.topcoat-icon-button--
|
1260
|
+
.topcoat-icon-button--quiet:focus:active,
|
1261
|
+
.topcoat-icon-button--large--quiet:active,
|
1262
|
+
.topcoat-icon-button--large--quiet:focus:active {
|
1237
1263
|
color: #454545;
|
1238
1264
|
text-shadow: 0 1px #fff;
|
1239
|
-
background-color: #
|
1240
|
-
border: 1px solid #
|
1241
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.
|
1265
|
+
background-color: #d2d6d6;
|
1266
|
+
border: 1px solid #9daca9;
|
1267
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
1242
1268
|
}
|
1243
1269
|
|
1244
1270
|
/* topdoc
|
@@ -1272,11 +1298,6 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1272
1298
|
line-height: 4.375rem;
|
1273
1299
|
}
|
1274
1300
|
|
1275
|
-
.topcoat-icon-button--large:active {
|
1276
|
-
background-color: #d3d7d7;
|
1277
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.12);
|
1278
|
-
}
|
1279
|
-
|
1280
1301
|
/* topdoc
|
1281
1302
|
name: Large Quiet Icon Button
|
1282
1303
|
description: Like large button, but it has an icon and this one is quiet.
|
@@ -1543,35 +1564,35 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1543
1564
|
*/
|
1544
1565
|
|
1545
1566
|
.topcoat-list {
|
1546
|
-
border-top: 1px solid #
|
1547
|
-
border-bottom: 1px solid #
|
1548
|
-
background-color: #
|
1567
|
+
border-top: 1px solid #9daca9;
|
1568
|
+
border-bottom: 1px solid #fff;
|
1569
|
+
background-color: #e5e9e8;
|
1549
1570
|
}
|
1550
1571
|
|
1551
1572
|
.topcoat-list__header {
|
1552
1573
|
padding: 4px 20px;
|
1553
1574
|
font-size: 0.9em;
|
1554
1575
|
font-weight: 400;
|
1555
|
-
background-color: #
|
1556
|
-
color: #
|
1576
|
+
background-color: #d2d6d6;
|
1577
|
+
color: #454545;
|
1557
1578
|
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
|
1558
1579
|
border-top: 1px solid rgba(255,255,255,0.5);
|
1559
1580
|
border-bottom: 1px solid rgba(255,255,255,0.23);
|
1560
1581
|
}
|
1561
1582
|
|
1562
1583
|
.topcoat-list__container {
|
1563
|
-
border-top: 1px solid #
|
1584
|
+
border-top: 1px solid #9daca9;
|
1564
1585
|
color: #454545;
|
1565
1586
|
}
|
1566
1587
|
|
1567
1588
|
.topcoat-list__item {
|
1568
1589
|
padding: 1.25rem;
|
1569
|
-
border-top: 1px solid #
|
1570
|
-
border-bottom: 1px solid #
|
1590
|
+
border-top: 1px solid #fff;
|
1591
|
+
border-bottom: 1px solid #9daca9;
|
1571
1592
|
}
|
1572
1593
|
|
1573
1594
|
.topcoat-list__item:first-child {
|
1574
|
-
border-top: 1px solid
|
1595
|
+
border-top: 1px solid #d6dcdb;
|
1575
1596
|
}
|
1576
1597
|
|
1577
1598
|
/**
|
@@ -1610,24 +1631,6 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1610
1631
|
*
|
1611
1632
|
*/
|
1612
1633
|
|
1613
|
-
/**
|
1614
|
-
*
|
1615
|
-
* Copyright 2012 Adobe Systems Inc.;
|
1616
|
-
*
|
1617
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
1618
|
-
* you may not use this file except in compliance with the License.
|
1619
|
-
* You may obtain a copy of the License at
|
1620
|
-
*
|
1621
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
1622
|
-
*
|
1623
|
-
* Unless required by applicable law or agreed to in writing, software
|
1624
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
1625
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1626
|
-
* See the License for the specific language governing permissions and
|
1627
|
-
* limitations under the License.
|
1628
|
-
*
|
1629
|
-
*/
|
1630
|
-
|
1631
1634
|
.navigation-bar {
|
1632
1635
|
-moz-box-sizing: border-box;
|
1633
1636
|
box-sizing: border-box;
|
@@ -1783,8 +1786,8 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1783
1786
|
padding-left: 1rem;
|
1784
1787
|
padding-right: 1rem;
|
1785
1788
|
background: #e5e9e8;
|
1786
|
-
color: #
|
1787
|
-
box-shadow: inset 0 -1px #
|
1789
|
+
color: #454545;
|
1790
|
+
box-shadow: inset 0 -1px #9daca9, 0 1px #d6dcdb;
|
1788
1791
|
}
|
1789
1792
|
|
1790
1793
|
.topcoat-navigation-bar__item {
|
@@ -1796,7 +1799,7 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
|
|
1796
1799
|
.topcoat-navigation-bar__title {
|
1797
1800
|
font-size: 1.3rem;
|
1798
1801
|
font-weight: 400;
|
1799
|
-
color: #
|
1802
|
+
color: #454545;
|
1800
1803
|
}
|
1801
1804
|
|
1802
1805
|
/*
|
@@ -2203,7 +2206,7 @@ input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
|
|
2203
2206
|
width: 1.875rem;
|
2204
2207
|
height: 1.875rem;
|
2205
2208
|
background: #e5e9e8;
|
2206
|
-
border: 1px solid #
|
2209
|
+
border: 1px solid #9daca9;
|
2207
2210
|
box-shadow: inset 0 1px #fff;
|
2208
2211
|
}
|
2209
2212
|
|
@@ -2217,7 +2220,7 @@ input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
|
|
2217
2220
|
opacity: 0;
|
2218
2221
|
width: 0.875rem;
|
2219
2222
|
height: 0.875rem;
|
2220
|
-
background: #
|
2223
|
+
background: #454545;
|
2221
2224
|
border: 1px solid rgba(0,0,0,0.1);
|
2222
2225
|
box-shadow: 0 1px rgba(255,255,255,0.5);
|
2223
2226
|
-webkit-transform: none;
|
@@ -2228,8 +2231,20 @@ input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
|
|
2228
2231
|
}
|
2229
2232
|
|
2230
2233
|
input[type="radio"]:focus + .topcoat-radio-button__checkmark:before {
|
2231
|
-
border: 1px solid #
|
2232
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
2234
|
+
border: 1px solid #0036ff;
|
2235
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
2236
|
+
}
|
2237
|
+
|
2238
|
+
input[type="radio"]:active + .topcoat-radio-button__checkmark:before {
|
2239
|
+
border: 1px solid #9daca9;
|
2240
|
+
background-color: #d2d6d6;
|
2241
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
2242
|
+
}
|
2243
|
+
|
2244
|
+
input[type="radio"]:disabled:active + .topcoat-radio-button__checkmark:before {
|
2245
|
+
border: 1px solid #9daca9;
|
2246
|
+
background: #e5e9e8;
|
2247
|
+
box-shadow: inset 0 1px #fff;
|
2233
2248
|
}
|
2234
2249
|
|
2235
2250
|
/*
|
@@ -2377,16 +2392,16 @@ limitations under the License.
|
|
2377
2392
|
|
2378
2393
|
.topcoat-range {
|
2379
2394
|
border-radius: 6px;
|
2380
|
-
border: 1px solid #
|
2381
|
-
background-color: #
|
2395
|
+
border: 1px solid #9daca9;
|
2396
|
+
background-color: #d6dcdb;
|
2382
2397
|
height: 1rem;
|
2383
2398
|
border-radius: 30px;
|
2384
2399
|
}
|
2385
2400
|
|
2386
2401
|
.topcoat-range::-moz-range-track {
|
2387
2402
|
border-radius: 6px;
|
2388
|
-
border: 1px solid #
|
2389
|
-
background-color: #
|
2403
|
+
border: 1px solid #9daca9;
|
2404
|
+
background-color: #d6dcdb;
|
2390
2405
|
height: 1rem;
|
2391
2406
|
border-radius: 30px;
|
2392
2407
|
}
|
@@ -2395,7 +2410,7 @@ limitations under the License.
|
|
2395
2410
|
height: 3rem;
|
2396
2411
|
width: 2rem;
|
2397
2412
|
background-color: #e5e9e8;
|
2398
|
-
border: 1px solid #
|
2413
|
+
border: 1px solid #9daca9;
|
2399
2414
|
border-radius: 6px;
|
2400
2415
|
box-shadow: inset 0 1px #fff;
|
2401
2416
|
}
|
@@ -2404,19 +2419,29 @@ limitations under the License.
|
|
2404
2419
|
height: 3rem;
|
2405
2420
|
width: 2rem;
|
2406
2421
|
background-color: #e5e9e8;
|
2407
|
-
border: 1px solid #
|
2422
|
+
border: 1px solid #9daca9;
|
2408
2423
|
border-radius: 6px;
|
2409
2424
|
box-shadow: inset 0 1px #fff;
|
2410
2425
|
}
|
2411
2426
|
|
2412
2427
|
.topcoat-range:focus::-webkit-slider-thumb {
|
2413
|
-
border: 1px solid #
|
2414
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
2428
|
+
border: 1px solid #0036ff;
|
2429
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
2415
2430
|
}
|
2416
2431
|
|
2417
2432
|
.topcoat-range:focus::-moz-range-thumb {
|
2418
|
-
border: 1px solid #
|
2419
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
2433
|
+
border: 1px solid #0036ff;
|
2434
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
2435
|
+
}
|
2436
|
+
|
2437
|
+
.topcoat-range:active::-webkit-slider-thumb {
|
2438
|
+
border: 1px solid #9daca9;
|
2439
|
+
box-shadow: inset 0 1px #fff;
|
2440
|
+
}
|
2441
|
+
|
2442
|
+
.topcoat-range:active::-moz-range-thumb {
|
2443
|
+
border: 1px solid #9daca9;
|
2444
|
+
box-shadow: inset 0 1px #fff;
|
2420
2445
|
}
|
2421
2446
|
|
2422
2447
|
/**
|
@@ -2566,26 +2591,26 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2566
2591
|
.topcoat-search-input,
|
2567
2592
|
.topcoat-search-input--large {
|
2568
2593
|
line-height: 3rem;
|
2594
|
+
height: 3rem;
|
2569
2595
|
font-size: 16px;
|
2570
|
-
border: 1px solid #
|
2571
|
-
background-color: #
|
2572
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.
|
2596
|
+
border: 1px solid #9daca9;
|
2597
|
+
background-color: #fff;
|
2598
|
+
box-shadow: inset 0 1px 0 rgba(0,0,0,0.23);
|
2573
2599
|
color: #454545;
|
2574
2600
|
padding: 0 0 0 2rem;
|
2575
2601
|
border-radius: 30px;
|
2576
2602
|
background-image: image-url("topcoat/search.svg");
|
2577
|
-
background-position:
|
2603
|
+
background-position: 1rem center;
|
2578
2604
|
background-repeat: no-repeat;
|
2579
2605
|
background-size: 16px;
|
2580
2606
|
}
|
2581
2607
|
|
2582
2608
|
.topcoat-search-input:focus,
|
2583
2609
|
.topcoat-search-input--large:focus {
|
2584
|
-
background-
|
2585
|
-
|
2586
|
-
|
2587
|
-
|
2588
|
-
box-shadow: 0 0 0 2px #6fb5f1;
|
2610
|
+
background-color: #fff;
|
2611
|
+
color: #454545;
|
2612
|
+
border: 1px solid #0036ff;
|
2613
|
+
box-shadow: inset 0 1px 0 rgba(0,0,0,0.23), 0 0 0 2px #6fb5f1;
|
2589
2614
|
}
|
2590
2615
|
|
2591
2616
|
.topcoat-search-input::-webkit-search-cancel-button,
|
@@ -2601,15 +2626,15 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2601
2626
|
}
|
2602
2627
|
|
2603
2628
|
.topcoat-search-input:disabled::-webkit-input-placeholder {
|
2604
|
-
color: #
|
2629
|
+
color: #454545;
|
2605
2630
|
}
|
2606
2631
|
|
2607
2632
|
.topcoat-search-input:disabled::-moz-placeholder {
|
2608
|
-
color: #
|
2633
|
+
color: #454545;
|
2609
2634
|
}
|
2610
2635
|
|
2611
2636
|
.topcoat-search-input:disabled:-ms-input-placeholder {
|
2612
|
-
color: #
|
2637
|
+
color: #454545;
|
2613
2638
|
}
|
2614
2639
|
|
2615
2640
|
/* topdoc
|
@@ -2633,28 +2658,29 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2633
2658
|
|
2634
2659
|
.topcoat-search-input--large {
|
2635
2660
|
line-height: 4.375rem;
|
2661
|
+
height: 4.375rem;
|
2636
2662
|
font-size: 1.3rem;
|
2637
|
-
font-weight:
|
2663
|
+
font-weight: 400;
|
2638
2664
|
padding: 0 0 0 2.9rem;
|
2639
2665
|
border-radius: 40px;
|
2640
|
-
background-position: 1.
|
2666
|
+
background-position: 1.2rem center;
|
2641
2667
|
background-size: 1.3rem;
|
2642
2668
|
}
|
2643
2669
|
|
2644
2670
|
.topcoat-search-input--large:disabled {
|
2645
|
-
color: #
|
2671
|
+
color: #454545;
|
2646
2672
|
}
|
2647
2673
|
|
2648
2674
|
.topcoat-search-input--large:disabled::-webkit-input-placeholder {
|
2649
|
-
color: #
|
2675
|
+
color: #454545;
|
2650
2676
|
}
|
2651
2677
|
|
2652
2678
|
.topcoat-search-input--large:disabled::-moz-placeholder {
|
2653
|
-
color: #
|
2679
|
+
color: #454545;
|
2654
2680
|
}
|
2655
2681
|
|
2656
2682
|
.topcoat-search-input--large:disabled:-ms-input-placeholder {
|
2657
|
-
color: #
|
2683
|
+
color: #454545;
|
2658
2684
|
}
|
2659
2685
|
|
2660
2686
|
/**
|
@@ -2883,7 +2909,7 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2883
2909
|
font-size: 16px;
|
2884
2910
|
padding: 0 1.25rem;
|
2885
2911
|
border-radius: 6px;
|
2886
|
-
border: 1px solid #
|
2912
|
+
border: 1px solid #9daca9;
|
2887
2913
|
overflow: hidden;
|
2888
2914
|
width: 6rem;
|
2889
2915
|
}
|
@@ -2896,8 +2922,8 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2896
2922
|
|
2897
2923
|
.topcoat-switch__toggle:before {
|
2898
2924
|
content: 'ON';
|
2899
|
-
color: #
|
2900
|
-
background-color: #
|
2925
|
+
color: #288edf;
|
2926
|
+
background-color: #e5f1fb;
|
2901
2927
|
right: 1rem;
|
2902
2928
|
padding-left: 1.5rem;
|
2903
2929
|
}
|
@@ -2910,7 +2936,7 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2910
2936
|
color: #454545;
|
2911
2937
|
text-shadow: 0 1px #fff;
|
2912
2938
|
background-color: #e5e9e8;
|
2913
|
-
border: 1px solid #
|
2939
|
+
border: 1px solid #9daca9;
|
2914
2940
|
margin-left: -1.3rem;
|
2915
2941
|
margin-bottom: -1px;
|
2916
2942
|
margin-top: -1px;
|
@@ -2921,7 +2947,7 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2921
2947
|
|
2922
2948
|
.topcoat-switch__toggle:after {
|
2923
2949
|
content: 'OFF';
|
2924
|
-
background-color: #
|
2950
|
+
background-color: #d2d6d6;
|
2925
2951
|
left: 1rem;
|
2926
2952
|
padding-left: 2rem;
|
2927
2953
|
}
|
@@ -2930,8 +2956,13 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
2930
2956
|
margin-left: 2.7rem;
|
2931
2957
|
}
|
2932
2958
|
|
2959
|
+
.topcoat-switch__input:active + .topcoat-switch__toggle {
|
2960
|
+
border: 1px solid #9daca9;
|
2961
|
+
box-shadow: inset 0 1px #fff;
|
2962
|
+
}
|
2963
|
+
|
2933
2964
|
.topcoat-switch__input:focus + .topcoat-switch__toggle {
|
2934
|
-
border: 1px solid #
|
2965
|
+
border: 1px solid #0036ff;
|
2935
2966
|
box-shadow: 0 0 0 2px #6fb5f1;
|
2936
2967
|
}
|
2937
2968
|
|
@@ -3094,20 +3125,22 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
3094
3125
|
vertical-align: top;
|
3095
3126
|
background-color: #e5e9e8;
|
3096
3127
|
box-shadow: inset 0 1px #fff;
|
3097
|
-
border-top: 1px solid #
|
3128
|
+
border-top: 1px solid #9daca9;
|
3098
3129
|
}
|
3099
3130
|
|
3100
3131
|
.topcoat-tab-bar__button:active,
|
3101
3132
|
.topcoat-tab-bar__button--large:active,
|
3102
3133
|
:checked + .topcoat-tab-bar__button {
|
3103
|
-
color: #
|
3104
|
-
background-color: #
|
3105
|
-
box-shadow: inset 0 0
|
3134
|
+
color: #288edf;
|
3135
|
+
background-color: #e5f1fb;
|
3136
|
+
box-shadow: inset 0 0 1px rgba(0,0,0,0.1);
|
3106
3137
|
}
|
3107
3138
|
|
3108
3139
|
.topcoat-tab-bar__button:focus,
|
3109
3140
|
.topcoat-tab-bar__button--large:focus {
|
3110
3141
|
z-index: 1;
|
3142
|
+
box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
|
3143
|
+
outline: 0;
|
3111
3144
|
}
|
3112
3145
|
|
3113
3146
|
/**
|
@@ -3198,36 +3231,36 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
3198
3231
|
font-size: 16px;
|
3199
3232
|
letter-spacing: 1px;
|
3200
3233
|
padding: 0 1.25rem;
|
3201
|
-
border: 1px solid #
|
3234
|
+
border: 1px solid #9daca9;
|
3202
3235
|
border-radius: 6px;
|
3203
|
-
background-color: #
|
3204
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.
|
3236
|
+
background-color: #fff;
|
3237
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
3205
3238
|
color: #454545;
|
3206
3239
|
vertical-align: top;
|
3207
3240
|
}
|
3208
3241
|
|
3209
3242
|
.topcoat-text-input:focus,
|
3210
3243
|
.topcoat-text-input--large:focus {
|
3211
|
-
background-color: #
|
3212
|
-
color: #
|
3213
|
-
border: 1px solid #
|
3244
|
+
background-color: #fff;
|
3245
|
+
color: #454545;
|
3246
|
+
border: 1px solid #0036ff;
|
3214
3247
|
box-shadow: 0 0 0 2px #6fb5f1;
|
3215
3248
|
}
|
3216
3249
|
|
3217
3250
|
.topcoat-text-input:disabled::-webkit-input-placeholder {
|
3218
|
-
color: #
|
3251
|
+
color: #454545;
|
3219
3252
|
}
|
3220
3253
|
|
3221
3254
|
.topcoat-text-input:disabled::-moz-placeholder {
|
3222
|
-
color: #
|
3255
|
+
color: #454545;
|
3223
3256
|
}
|
3224
3257
|
|
3225
3258
|
.topcoat-text-input:disabled:-ms-input-placeholder {
|
3226
|
-
color: #
|
3259
|
+
color: #454545;
|
3227
3260
|
}
|
3228
3261
|
|
3229
3262
|
.topcoat-text-input:invalid {
|
3230
|
-
border: 1px solid #
|
3263
|
+
border: 1px solid #ec514e;
|
3231
3264
|
}
|
3232
3265
|
|
3233
3266
|
/* topdoc
|
@@ -3260,23 +3293,23 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
3260
3293
|
}
|
3261
3294
|
|
3262
3295
|
.topcoat-text-input--large:disabled {
|
3263
|
-
color: #
|
3296
|
+
color: #454545;
|
3264
3297
|
}
|
3265
3298
|
|
3266
3299
|
.topcoat-text-input--large:disabled::-webkit-input-placeholder {
|
3267
|
-
color: #
|
3300
|
+
color: #454545;
|
3268
3301
|
}
|
3269
3302
|
|
3270
3303
|
.topcoat-text-input--large:disabled::-moz-placeholder {
|
3271
|
-
color: #
|
3304
|
+
color: #454545;
|
3272
3305
|
}
|
3273
3306
|
|
3274
3307
|
.topcoat-text-input--large:disabled:-ms-input-placeholder {
|
3275
|
-
color: #
|
3308
|
+
color: #454545;
|
3276
3309
|
}
|
3277
3310
|
|
3278
3311
|
.topcoat-text-input--large:invalid {
|
3279
|
-
border: 1px solid #
|
3312
|
+
border: 1px solid #ec514e;
|
3280
3313
|
}
|
3281
3314
|
|
3282
3315
|
/**
|
@@ -3420,34 +3453,34 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
3420
3453
|
.topcoat-textarea--large {
|
3421
3454
|
padding: 2rem;
|
3422
3455
|
font-size: 2.5rem;
|
3423
|
-
font-weight:
|
3456
|
+
font-weight: 400;
|
3424
3457
|
border-radius: 6px;
|
3425
3458
|
line-height: 3rem;
|
3426
|
-
border: 1px solid #
|
3427
|
-
background-color: #
|
3428
|
-
box-shadow: inset 0 1px rgba(0,0,0,0.
|
3459
|
+
border: 1px solid #9daca9;
|
3460
|
+
background-color: #fff;
|
3461
|
+
box-shadow: inset 0 1px rgba(0,0,0,0.1);
|
3429
3462
|
color: #454545;
|
3430
3463
|
letter-spacing: 1px;
|
3431
3464
|
}
|
3432
3465
|
|
3433
3466
|
.topcoat-textarea:focus,
|
3434
3467
|
.topcoat-textarea--large:focus {
|
3435
|
-
background-color: #
|
3436
|
-
color: #
|
3437
|
-
border: 1px solid #
|
3468
|
+
background-color: #fff;
|
3469
|
+
color: #454545;
|
3470
|
+
border: 1px solid #0036ff;
|
3438
3471
|
box-shadow: 0 0 0 2px #6fb5f1;
|
3439
3472
|
}
|
3440
3473
|
|
3441
3474
|
.topcoat-textarea:disabled::-webkit-input-placeholder {
|
3442
|
-
color: #
|
3475
|
+
color: #454545;
|
3443
3476
|
}
|
3444
3477
|
|
3445
3478
|
.topcoat-textarea:disabled::-moz-placeholder {
|
3446
|
-
color: #
|
3479
|
+
color: #454545;
|
3447
3480
|
}
|
3448
3481
|
|
3449
3482
|
.topcoat-textarea:disabled:-ms-input-placeholder {
|
3450
|
-
color: #
|
3483
|
+
color: #454545;
|
3451
3484
|
}
|
3452
3485
|
|
3453
3486
|
/* topdoc
|
@@ -3475,19 +3508,19 @@ input[type="search"]::-webkit-search-cancel-button {
|
|
3475
3508
|
}
|
3476
3509
|
|
3477
3510
|
.topcoat-textarea--large:disabled {
|
3478
|
-
color: #
|
3511
|
+
color: #454545;
|
3479
3512
|
}
|
3480
3513
|
|
3481
3514
|
.topcoat-textarea--large:disabled::-webkit-input-placeholder {
|
3482
|
-
color: #
|
3515
|
+
color: #454545;
|
3483
3516
|
}
|
3484
3517
|
|
3485
3518
|
.topcoat-textarea--large:disabled::-moz-placeholder {
|
3486
|
-
color: #
|
3519
|
+
color: #454545;
|
3487
3520
|
}
|
3488
3521
|
|
3489
3522
|
.topcoat-textarea--large:disabled:-ms-input-placeholder {
|
3490
|
-
color: #
|
3523
|
+
color: #454545;
|
3491
3524
|
}
|
3492
3525
|
|
3493
3526
|
@font-face {
|
@@ -3513,7 +3546,7 @@ body {
|
|
3513
3546
|
background: #dfe2e2;
|
3514
3547
|
color: #000;
|
3515
3548
|
font: 16px "Source Sans", helvetica, arial, sans-serif;
|
3516
|
-
font-weight:
|
3549
|
+
font-weight: 400;
|
3517
3550
|
}
|
3518
3551
|
|
3519
3552
|
:focus {
|
@@ -3587,7 +3620,17 @@ body {
|
|
3587
3620
|
|
3588
3621
|
/* This file should include color and image variables corresponding to the dark theme */
|
3589
3622
|
|
3590
|
-
/*
|
3623
|
+
/* ---------- colors ---------- */
|
3624
|
+
|
3625
|
+
/* ---------- darken ---------- */
|
3626
|
+
|
3627
|
+
/* ---------- lighten ---------- */
|
3628
|
+
|
3629
|
+
/* ---------- alphas ---------- */
|
3630
|
+
|
3631
|
+
/* ---------- thickness ---------- */
|
3632
|
+
|
3633
|
+
/* ---------- shadows ---------- */
|
3591
3634
|
|
3592
3635
|
/* Icons */
|
3593
3636
|
|
@@ -3595,18 +3638,16 @@ body {
|
|
3595
3638
|
|
3596
3639
|
/* Text Input */
|
3597
3640
|
|
3598
|
-
/* Search Input */
|
3599
|
-
|
3600
3641
|
/* List */
|
3601
3642
|
|
3602
|
-
/* Checkbox */
|
3603
|
-
|
3604
3643
|
/* Overlay */
|
3605
3644
|
|
3606
3645
|
/* Progress bar */
|
3607
3646
|
|
3608
3647
|
/* Checkbox */
|
3609
3648
|
|
3649
|
+
/* Range input */
|
3650
|
+
|
3610
3651
|
/* Radio Button */
|
3611
3652
|
|
3612
3653
|
/* Tab bar */
|
@@ -3635,7 +3676,23 @@ body {
|
|
3635
3676
|
|
3636
3677
|
/* This file should include color and image variables corresponding to the light theme */
|
3637
3678
|
|
3638
|
-
/*
|
3679
|
+
/* ---------- colors ---------- */
|
3680
|
+
|
3681
|
+
/* ---------- darken ---------- */
|
3682
|
+
|
3683
|
+
/* ---------- lighten ---------- */
|
3684
|
+
|
3685
|
+
/* ---------- alphas ---------- */
|
3686
|
+
|
3687
|
+
/* ---------- thickness ---------- */
|
3688
|
+
|
3689
|
+
/* ---------- shadows ---------- */
|
3690
|
+
|
3691
|
+
/* Secondary colors (based on colors above)
|
3692
|
+
|
3693
|
+
Everything below this line should be calculated using the variables above. This area is for people that want to totally customize everything. Have fun, bros!
|
3694
|
+
|
3695
|
+
*/
|
3639
3696
|
|
3640
3697
|
/* Icons */
|
3641
3698
|
|
@@ -3681,6 +3738,8 @@ body {
|
|
3681
3738
|
|
3682
3739
|
/* Switch */
|
3683
3740
|
|
3741
|
+
/* Call To Action */
|
3742
|
+
|
3684
3743
|
/* Text Input */
|
3685
3744
|
|
3686
3745
|
/* Radio input */
|
@@ -3693,8 +3752,8 @@ body {
|
|
3693
3752
|
|
3694
3753
|
/* Progress bar progress */
|
3695
3754
|
|
3696
|
-
/* Search input */
|
3697
|
-
|
3698
3755
|
/* Switch */
|
3699
3756
|
|
3700
3757
|
/* Notification */
|
3758
|
+
|
3759
|
+
/* Search */
|