topcoat-rails 0.1.6 → 0.8.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.
data/Rakefile CHANGED
@@ -11,24 +11,24 @@ namespace :topcoat do
11
11
  end
12
12
  end
13
13
 
14
- TOPCOAT_FONTS = FileList["topcoat/release/font/*.*"]
14
+ TOPCOAT_FONTS = FileList["topcoat/font/*.*"]
15
15
  ASSETS_FONTS = TOPCOAT_FONTS.pathmap("app/assets/fonts/topcoat/%f")
16
16
  ASSETS_FONTS.zip(TOPCOAT_FONTS).each do |target, source|
17
17
  file target => [source] { cp source, target, verbose: true }
18
18
  end
19
19
 
20
- TOPCOAT_CSS = FileList["topcoat/release/css/*.*"].exclude(/min/)
20
+ TOPCOAT_CSS = FileList["topcoat/css/*.*"].exclude(/min/)
21
21
  ASSETS_CSS = TOPCOAT_CSS.pathmap("app/assets/stylesheets/topcoat/%f")
22
22
  ASSETS_CSS.zip(TOPCOAT_CSS).each do |target, source|
23
23
  target.gsub!(/topcoat-/, '')
24
24
  target.gsub!(/css/, 'scss')
25
25
  # file target => [source] { cp source, target, verbose: true }
26
- File.open(target,'w+') do |output_file|
26
+ File.open(target,'w') do |output_file|
27
27
  output_file.puts File.read(source).gsub(/url\("..\/font\/(.*)"\)/, 'font-url("topcoat/\1")').gsub(/url\("..\/img\/(.*)"\)/, 'image-url("topcoat/\1")')
28
28
  end
29
29
  end
30
30
 
31
- TOPCOAT_IMAGES = FileList["topcoat/release/img/*.*"]
31
+ TOPCOAT_IMAGES = FileList["topcoat/img/*.*"]
32
32
  ASSETS_IMAGES = TOPCOAT_IMAGES.pathmap("app/assets/images/topcoat/%f")
33
33
  ASSETS_IMAGES.zip(TOPCOAT_IMAGES).each do |target, source|
34
34
  file target => [source] { cp source, target, verbose: true }
@@ -52,7 +52,7 @@ namespace :topcoat do
52
52
  end
53
53
 
54
54
  desc "Update Topcoat's Assets"
55
- task :assets => [:pull, :clean, :fonts, :css, :images]
55
+ task :assets => [:pull, :clean, :fonts, :images, :css]
56
56
  end
57
57
 
58
58
  Rake::TestTask.new do |t|
@@ -173,8 +173,8 @@
173
173
  text-shadow: 0 -1px rgba(0,0,0,0.69);
174
174
  vertical-align: top;
175
175
  background-color: #595b5b;
176
- box-shadow: inset 0 1px #727373;
177
- border: 1px solid #303233;
176
+ box-shadow: inset 0 1px #737373;
177
+ border: 1px solid #333434;
178
178
  border-radius: 4px;
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: #646666;
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: #404141;
196
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
187
+ background-color: #626465;
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 #0940fd;
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 #333434;
211
+ background-color: #3f4041;
212
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
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 rgba(0,0,0,0.69);
221
- border: 1px solid #303233;
222
- box-shadow: inset 0 1px #727373;
224
+ border: 1px solid #333434;
225
+ box-shadow: inset 0 1px #737373;
223
226
  }
224
227
 
225
228
  .topcoat-button--quiet:active,
226
- .topcoat-button--large--quiet:active {
229
+ .topcoat-button--quiet:focus:active,
230
+ .topcoat-button--large--quiet:active,
231
+ .topcoat-button--large--quiet:focus:active {
227
232
  color: #c6c8c8;
228
233
  text-shadow: 0 -1px rgba(0,0,0,0.69);
229
- background-color: #404141;
230
- border: 1px solid #303233;
231
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
234
+ background-color: #3f4041;
235
+ border: 1px solid #333434;
236
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
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 #143250;
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: #509bef;
266
+ background-color: #4ca1e4;
262
267
  }
263
268
 
264
269
  .topcoat-button--cta:active,
265
270
  .topcoat-button--large--cta:active {
266
- background-color: #1976c3;
271
+ background-color: #1e7dc8;
267
272
  box-shadow: inset 0 1px rgba(0,0,0,0.12);
268
273
  }
269
274
 
@@ -592,8 +597,8 @@
592
597
  text-shadow: 0 -1px rgba(0,0,0,0.69);
593
598
  vertical-align: top;
594
599
  background-color: #595b5b;
595
- box-shadow: inset 0 1px #727373;
596
- border: 1px solid #303233;
600
+ box-shadow: inset 0 1px #737373;
601
+ border: 1px solid #333434;
597
602
  border-radius: 4px;
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: #646666;
605
- }
606
-
607
- .topcoat-button:active,
608
- .topcoat-button--large:active {
609
- background-color: #404141;
610
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
609
+ background-color: #626465;
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 #0940fd;
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 #333434;
628
+ background-color: #3f4041;
629
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
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 rgba(0,0,0,0.69);
652
- border: 1px solid #303233;
653
- box-shadow: inset 0 1px #727373;
660
+ border: 1px solid #333434;
661
+ box-shadow: inset 0 1px #737373;
654
662
  }
655
663
 
656
664
  .topcoat-button--quiet:active,
657
- .topcoat-button--large--quiet:active {
665
+ .topcoat-button--quiet:focus:active,
666
+ .topcoat-button--large--quiet:active,
667
+ .topcoat-button--large--quiet:focus:active {
658
668
  color: #c6c8c8;
659
669
  text-shadow: 0 -1px rgba(0,0,0,0.69);
660
- background-color: #404141;
661
- border: 1px solid #303233;
662
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
670
+ background-color: #3f4041;
671
+ border: 1px solid #333434;
672
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
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 #143250;
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: #509bef;
759
+ background-color: #4ca1e4;
750
760
  }
751
761
 
752
762
  .topcoat-button--cta:active,
753
763
  .topcoat-button--large--cta:active {
754
- background-color: #1976c3;
764
+ background-color: #1e7dc8;
755
765
  box-shadow: inset 0 1px rgba(0,0,0,0.12);
756
766
  }
757
767
 
@@ -1021,9 +1031,9 @@ input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
1021
1031
  width: 1rem;
1022
1032
  height: 1rem;
1023
1033
  background: #595b5b;
1024
- border: 1px solid #303233;
1034
+ border: 1px solid #333434;
1025
1035
  border-radius: 3px;
1026
- box-shadow: inset 0 1px #727373;
1036
+ box-shadow: inset 0 1px #737373;
1027
1037
  }
1028
1038
 
1029
1039
  .topcoat-checkbox__checkmark {
@@ -1038,7 +1048,7 @@ input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
1038
1048
  width: 14px;
1039
1049
  height: 4px;
1040
1050
  background: transparent;
1041
- border: 7px solid #fff;
1051
+ border: 7px solid #c6c8c8;
1042
1052
  border-width: 3px;
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 #0940fd;
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 #333434;
1068
+ background-color: #3f4041;
1069
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
1070
+ }
1071
+
1072
+ input[type="checkbox"]:disabled:active + .topcoat-checkbox__checkmark:before {
1073
+ border: 1px solid #333434;
1074
+ background: #595b5b;
1075
+ box-shadow: inset 0 1px #737373;
1054
1076
  }
1055
1077
 
1056
1078
  /**
@@ -1167,8 +1189,8 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
1167
1189
  text-shadow: 0 -1px rgba(0,0,0,0.69);
1168
1190
  vertical-align: baseline;
1169
1191
  background-color: #595b5b;
1170
- box-shadow: inset 0 1px #727373;
1171
- border: 1px solid #303233;
1192
+ box-shadow: inset 0 1px #737373;
1193
+ border: 1px solid #333434;
1172
1194
  border-radius: 4px;
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: #646666;
1180
- }
1181
-
1182
- .topcoat-icon-button:active {
1183
- background-color: #404141;
1184
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
1201
+ background-color: #626465;
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 #0940fd;
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 #333434;
1218
+ background-color: #3f4041;
1219
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
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 rgba(0,0,0,0.69);
1231
- border: 1px solid #303233;
1232
- box-shadow: inset 0 1px #727373;
1255
+ border: 1px solid #333434;
1256
+ box-shadow: inset 0 1px #737373;
1233
1257
  }
1234
1258
 
1235
1259
  .topcoat-icon-button--quiet:active,
1236
- .topcoat-icon-button--large--quiet:active {
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: #c6c8c8;
1238
1264
  text-shadow: 0 -1px rgba(0,0,0,0.69);
1239
- background-color: #404141;
1240
- border: 1px solid #303233;
1241
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
1265
+ background-color: #3f4041;
1266
+ border: 1px solid #333434;
1267
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
1242
1268
  }
1243
1269
 
1244
1270
  /* topdoc
@@ -1272,11 +1298,6 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
1272
1298
  line-height: 1.688rem;
1273
1299
  }
1274
1300
 
1275
- .topcoat-icon-button--large:active {
1276
- background-color: #404141;
1277
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
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.
@@ -1484,24 +1505,6 @@ input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
1484
1505
  *
1485
1506
  */
1486
1507
 
1487
- /**
1488
- *
1489
- * Copyright 2012 Adobe Systems Inc.;
1490
- *
1491
- * Licensed under the Apache License, Version 2.0 (the "License");
1492
- * you may not use this file except in compliance with the License.
1493
- * You may obtain a copy of the License at
1494
- *
1495
- * http://www.apache.org/licenses/LICENSE-2.0
1496
- *
1497
- * Unless required by applicable law or agreed to in writing, software
1498
- * distributed under the License is distributed on an "AS IS" BASIS,
1499
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1500
- * See the License for the specific language governing permissions and
1501
- * limitations under the License.
1502
- *
1503
- */
1504
-
1505
1508
  .navigation-bar {
1506
1509
  -moz-box-sizing: border-box;
1507
1510
  box-sizing: border-box;
@@ -1953,8 +1956,8 @@ input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
1953
1956
  width: 1.063rem;
1954
1957
  height: 1.063rem;
1955
1958
  background: #595b5b;
1956
- border: 1px solid #303233;
1957
- box-shadow: inset 0 1px #727373;
1959
+ border: 1px solid #333434;
1960
+ box-shadow: inset 0 1px #737373;
1958
1961
  }
1959
1962
 
1960
1963
  .topcoat-radio-button__checkmark {
@@ -1967,9 +1970,9 @@ input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
1967
1970
  opacity: 0;
1968
1971
  width: 0.313rem;
1969
1972
  height: 0.313rem;
1970
- background: #fff;
1971
- border: 1px solid rgba(255,255,255,0.1);
1972
- box-shadow: 0 1px rgba(255,255,255,0.5);
1973
+ background: #c6c8c8;
1974
+ border: 1px solid rgba(0,0,0,0.05);
1975
+ box-shadow: 0 1px rgba(255,255,255,0.1);
1973
1976
  -webkit-transform: none;
1974
1977
  -ms-transform: none;
1975
1978
  transform: none;
@@ -1978,8 +1981,20 @@ input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
1978
1981
  }
1979
1982
 
1980
1983
  input[type="radio"]:focus + .topcoat-radio-button__checkmark:before {
1981
- border: 1px solid #0940fd;
1982
- box-shadow: 0 0 0 2px #6fb5f1;
1984
+ border: 1px solid #0036ff;
1985
+ box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
1986
+ }
1987
+
1988
+ input[type="radio"]:active + .topcoat-radio-button__checkmark:before {
1989
+ border: 1px solid #333434;
1990
+ background-color: #3f4041;
1991
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
1992
+ }
1993
+
1994
+ input[type="radio"]:disabled:active + .topcoat-radio-button__checkmark:before {
1995
+ border: 1px solid #333434;
1996
+ background: #595b5b;
1997
+ box-shadow: inset 0 1px #737373;
1983
1998
  }
1984
1999
 
1985
2000
  /*
@@ -2127,16 +2142,16 @@ limitations under the License.
2127
2142
 
2128
2143
  .topcoat-range {
2129
2144
  border-radius: 4px;
2130
- border: 1px solid #303233;
2131
- background-color: #424546;
2145
+ border: 1px solid #333434;
2146
+ background-color: #454646;
2132
2147
  height: 0.5rem;
2133
2148
  border-radius: 15px;
2134
2149
  }
2135
2150
 
2136
2151
  .topcoat-range::-moz-range-track {
2137
2152
  border-radius: 4px;
2138
- border: 1px solid #303233;
2139
- background-color: #424546;
2153
+ border: 1px solid #333434;
2154
+ background-color: #454646;
2140
2155
  height: 0.5rem;
2141
2156
  border-radius: 15px;
2142
2157
  }
@@ -2145,28 +2160,38 @@ limitations under the License.
2145
2160
  height: 1.313rem;
2146
2161
  width: 0.75rem;
2147
2162
  background-color: #595b5b;
2148
- border: 1px solid #303233;
2163
+ border: 1px solid #333434;
2149
2164
  border-radius: 4px;
2150
- box-shadow: inset 0 1px #727373;
2165
+ box-shadow: inset 0 1px #737373;
2151
2166
  }
2152
2167
 
2153
2168
  .topcoat-range::-moz-range-thumb {
2154
2169
  height: 1.313rem;
2155
2170
  width: 0.75rem;
2156
2171
  background-color: #595b5b;
2157
- border: 1px solid #303233;
2172
+ border: 1px solid #333434;
2158
2173
  border-radius: 4px;
2159
- box-shadow: inset 0 1px #727373;
2174
+ box-shadow: inset 0 1px #737373;
2160
2175
  }
2161
2176
 
2162
2177
  .topcoat-range:focus::-webkit-slider-thumb {
2163
- border: 1px solid #0940fd;
2164
- box-shadow: 0 0 0 2px #6fb5f1;
2178
+ border: 1px solid #0036ff;
2179
+ box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
2165
2180
  }
2166
2181
 
2167
2182
  .topcoat-range:focus::-moz-range-thumb {
2168
- border: 1px solid #0940fd;
2169
- box-shadow: 0 0 0 2px #6fb5f1;
2183
+ border: 1px solid #0036ff;
2184
+ box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
2185
+ }
2186
+
2187
+ .topcoat-range:active::-webkit-slider-thumb {
2188
+ border: 1px solid #333434;
2189
+ box-shadow: inset 0 1px #737373;
2190
+ }
2191
+
2192
+ .topcoat-range:active::-moz-range-thumb {
2193
+ border: 1px solid #333434;
2194
+ box-shadow: inset 0 1px #737373;
2170
2195
  }
2171
2196
 
2172
2197
  /**
@@ -2316,26 +2341,26 @@ input[type="search"]::-webkit-search-cancel-button {
2316
2341
  .topcoat-search-input,
2317
2342
  .topcoat-search-input--large {
2318
2343
  line-height: 1.313rem;
2344
+ height: 1.313rem;
2319
2345
  font-size: 12px;
2320
- border: 1px solid #303233;
2321
- background-color: #404141;
2322
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
2346
+ border: 1px solid #333434;
2347
+ background-color: #454646;
2348
+ box-shadow: inset 0 1px 0 rgba(0,0,0,0.23);
2323
2349
  color: #c6c8c8;
2324
2350
  padding: 0 0 0 1.3rem;
2325
2351
  border-radius: 15px;
2326
2352
  background-image: image-url("topcoat/search.svg");
2327
- background-position: 1em center;
2353
+ background-position: 1rem center;
2328
2354
  background-repeat: no-repeat;
2329
2355
  background-size: 12px;
2330
2356
  }
2331
2357
 
2332
2358
  .topcoat-search-input:focus,
2333
2359
  .topcoat-search-input--large:focus {
2334
- background-image: image-url("topcoat/search_dark.svg");
2335
- background-color: #646666;
2360
+ background-color: #595b5b;
2336
2361
  color: #fff;
2337
- border: 1px solid #0940fd;
2338
- box-shadow: 0 0 0 2px #6fb5f1;
2362
+ border: 1px solid #0036ff;
2363
+ box-shadow: inset 0 1px 0 rgba(0,0,0,0.23), 0 0 0 2px #6fb5f1;
2339
2364
  }
2340
2365
 
2341
2366
  .topcoat-search-input::-webkit-search-cancel-button,
@@ -2383,11 +2408,12 @@ input[type="search"]::-webkit-search-cancel-button {
2383
2408
 
2384
2409
  .topcoat-search-input--large {
2385
2410
  line-height: 1.688rem;
2411
+ height: 1.688rem;
2386
2412
  font-size: 0.875rem;
2387
2413
  font-weight: 400;
2388
2414
  padding: 0 0 0 1.8rem;
2389
2415
  border-radius: 25px;
2390
- background-position: 1.2em center;
2416
+ background-position: 1.2rem center;
2391
2417
  background-size: 0.875rem;
2392
2418
  }
2393
2419
 
@@ -2633,7 +2659,7 @@ input[type="search"]::-webkit-search-cancel-button {
2633
2659
  font-size: 12px;
2634
2660
  padding: 0 0.563rem;
2635
2661
  border-radius: 4px;
2636
- border: 1px solid #303233;
2662
+ border: 1px solid #333434;
2637
2663
  overflow: hidden;
2638
2664
  width: 3.5rem;
2639
2665
  }
@@ -2646,8 +2672,8 @@ input[type="search"]::-webkit-search-cancel-button {
2646
2672
 
2647
2673
  .topcoat-switch__toggle:before {
2648
2674
  content: 'ON';
2649
- color: #5dc1ff;
2650
- background-color: #404141;
2675
+ color: #288edf;
2676
+ background-color: #3f4041;
2651
2677
  right: 0.8rem;
2652
2678
  padding-left: 0.75rem;
2653
2679
  }
@@ -2660,18 +2686,18 @@ input[type="search"]::-webkit-search-cancel-button {
2660
2686
  color: #c6c8c8;
2661
2687
  text-shadow: 0 -1px rgba(0,0,0,0.69);
2662
2688
  background-color: #595b5b;
2663
- border: 1px solid #303233;
2689
+ border: 1px solid #333434;
2664
2690
  margin-left: -0.6rem;
2665
2691
  margin-bottom: -1px;
2666
2692
  margin-top: -1px;
2667
- box-shadow: inset 0 1px #727373;
2693
+ box-shadow: inset 0 1px #737373;
2668
2694
  -webkit-transition: margin-left 0.05s ease-in-out;
2669
2695
  transition: margin-left 0.05s ease-in-out;
2670
2696
  }
2671
2697
 
2672
2698
  .topcoat-switch__toggle:after {
2673
2699
  content: 'OFF';
2674
- background-color: #404141;
2700
+ background-color: #3f4041;
2675
2701
  left: 0.8rem;
2676
2702
  padding-left: 0.6rem;
2677
2703
  }
@@ -2680,8 +2706,13 @@ input[type="search"]::-webkit-search-cancel-button {
2680
2706
  margin-left: 1.85rem;
2681
2707
  }
2682
2708
 
2709
+ .topcoat-switch__input:active + .topcoat-switch__toggle {
2710
+ border: 1px solid #333434;
2711
+ box-shadow: inset 0 1px #737373;
2712
+ }
2713
+
2683
2714
  .topcoat-switch__input:focus + .topcoat-switch__toggle {
2684
- border: 1px solid #0940fd;
2715
+ border: 1px solid #0036ff;
2685
2716
  box-shadow: 0 0 0 2px #6fb5f1;
2686
2717
  }
2687
2718
 
@@ -2843,21 +2874,23 @@ input[type="search"]::-webkit-search-cancel-button {
2843
2874
  text-shadow: 0 -1px rgba(0,0,0,0.69);
2844
2875
  vertical-align: top;
2845
2876
  background-color: #595b5b;
2846
- box-shadow: inset 0 1px #727373;
2847
- border-top: 1px solid #303233;
2877
+ box-shadow: inset 0 1px #737373;
2878
+ border-top: 1px solid #333434;
2848
2879
  }
2849
2880
 
2850
2881
  .topcoat-tab-bar__button:active,
2851
2882
  .topcoat-tab-bar__button--large:active,
2852
2883
  :checked + .topcoat-tab-bar__button {
2853
- color: #5dc1ff;
2854
- background-color: #404141;
2855
- box-shadow: inset 0 0 2px #313231;
2884
+ color: #288edf;
2885
+ background-color: #3f4041;
2886
+ box-shadow: inset 0 0 1px rgba(0,0,0,0.05);
2856
2887
  }
2857
2888
 
2858
2889
  .topcoat-tab-bar__button:focus,
2859
2890
  .topcoat-tab-bar__button--large:focus {
2860
2891
  z-index: 1;
2892
+ box-shadow: inset 0 1px rgba(255,255,255,0.36), 0 0 0 2px #6fb5f1;
2893
+ outline: 0;
2861
2894
  }
2862
2895
 
2863
2896
  /**
@@ -2948,19 +2981,19 @@ input[type="search"]::-webkit-search-cancel-button {
2948
2981
  font-size: 12px;
2949
2982
  letter-spacing: 0;
2950
2983
  padding: 0 0.563rem;
2951
- border: 1px solid #303233;
2984
+ border: 1px solid #333434;
2952
2985
  border-radius: 4px;
2953
- background-color: #404141;
2954
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
2986
+ background-color: #454646;
2987
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
2955
2988
  color: #c6c8c8;
2956
2989
  vertical-align: top;
2957
2990
  }
2958
2991
 
2959
2992
  .topcoat-text-input:focus,
2960
2993
  .topcoat-text-input--large:focus {
2961
- background-color: #646666;
2994
+ background-color: #595b5b;
2962
2995
  color: #fff;
2963
- border: 1px solid #0940fd;
2996
+ border: 1px solid #0036ff;
2964
2997
  box-shadow: 0 0 0 2px #6fb5f1;
2965
2998
  }
2966
2999
 
@@ -2977,7 +3010,7 @@ input[type="search"]::-webkit-search-cancel-button {
2977
3010
  }
2978
3011
 
2979
3012
  .topcoat-text-input:invalid {
2980
- border: 1px solid #d83b75;
3013
+ border: 1px solid #ec514e;
2981
3014
  }
2982
3015
 
2983
3016
  /* topdoc
@@ -3026,7 +3059,7 @@ input[type="search"]::-webkit-search-cancel-button {
3026
3059
  }
3027
3060
 
3028
3061
  .topcoat-text-input--large:invalid {
3029
- border: 1px solid #d83b75;
3062
+ border: 1px solid #ec514e;
3030
3063
  }
3031
3064
 
3032
3065
  /**
@@ -3173,18 +3206,18 @@ input[type="search"]::-webkit-search-cancel-button {
3173
3206
  font-weight: 400;
3174
3207
  border-radius: 4px;
3175
3208
  line-height: 1.313rem;
3176
- border: 1px solid #303233;
3177
- background-color: #404141;
3178
- box-shadow: inset 0 1px rgba(0,0,0,0.18);
3209
+ border: 1px solid #333434;
3210
+ background-color: #454646;
3211
+ box-shadow: inset 0 1px rgba(0,0,0,0.05);
3179
3212
  color: #c6c8c8;
3180
3213
  letter-spacing: 0;
3181
3214
  }
3182
3215
 
3183
3216
  .topcoat-textarea:focus,
3184
3217
  .topcoat-textarea--large:focus {
3185
- background-color: #646666;
3218
+ background-color: #595b5b;
3186
3219
  color: #fff;
3187
- border: 1px solid #0940fd;
3220
+ border: 1px solid #0036ff;
3188
3221
  box-shadow: 0 0 0 2px #6fb5f1;
3189
3222
  }
3190
3223
 
@@ -3263,7 +3296,7 @@ body {
3263
3296
  background: #4b4d4e;
3264
3297
  color: #000;
3265
3298
  font: 16px "Source Sans", helvetica, arial, sans-serif;
3266
- font-weight: 200;
3299
+ font-weight: 400;
3267
3300
  }
3268
3301
 
3269
3302
  :focus {
@@ -3337,7 +3370,17 @@ body {
3337
3370
 
3338
3371
  /* This file should include color and image variables corresponding to the dark theme */
3339
3372
 
3340
- /* Call To Action */
3373
+ /* ---------- colors ---------- */
3374
+
3375
+ /* ---------- darken ---------- */
3376
+
3377
+ /* ---------- lighten ---------- */
3378
+
3379
+ /* ---------- alphas ---------- */
3380
+
3381
+ /* ---------- thickness ---------- */
3382
+
3383
+ /* ---------- shadows ---------- */
3341
3384
 
3342
3385
  /* Icons */
3343
3386
 
@@ -3345,18 +3388,16 @@ body {
3345
3388
 
3346
3389
  /* Text Input */
3347
3390
 
3348
- /* Search Input */
3349
-
3350
3391
  /* List */
3351
3392
 
3352
- /* Checkbox */
3353
-
3354
3393
  /* Overlay */
3355
3394
 
3356
3395
  /* Progress bar */
3357
3396
 
3358
3397
  /* Checkbox */
3359
3398
 
3399
+ /* Range input */
3400
+
3360
3401
  /* Radio Button */
3361
3402
 
3362
3403
  /* Tab bar */
@@ -3385,7 +3426,23 @@ body {
3385
3426
 
3386
3427
  /* This file should include color and image variables corresponding to the light theme */
3387
3428
 
3388
- /* Call To Action */
3429
+ /* ---------- colors ---------- */
3430
+
3431
+ /* ---------- darken ---------- */
3432
+
3433
+ /* ---------- lighten ---------- */
3434
+
3435
+ /* ---------- alphas ---------- */
3436
+
3437
+ /* ---------- thickness ---------- */
3438
+
3439
+ /* ---------- shadows ---------- */
3440
+
3441
+ /* Secondary colors (based on colors above)
3442
+
3443
+ 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!
3444
+
3445
+ */
3389
3446
 
3390
3447
  /* Icons */
3391
3448
 
@@ -3431,6 +3488,8 @@ body {
3431
3488
 
3432
3489
  /* Switch */
3433
3490
 
3491
+ /* Call To Action */
3492
+
3434
3493
  /* Text Input */
3435
3494
 
3436
3495
  /* Radio input */
@@ -3443,8 +3502,8 @@ body {
3443
3502
 
3444
3503
  /* Progress bar progress */
3445
3504
 
3446
- /* Search input */
3447
-
3448
3505
  /* Switch */
3449
3506
 
3450
3507
  /* Notification */
3508
+
3509
+ /* Search */