OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 * { | 5 * { |
6 box-sizing: border-box; | 6 box-sizing: border-box; |
7 color: rgba(0, 0, 0, .87); | 7 color: rgba(0, 0, 0, .87); |
8 font-family: Helvetica, sans-serif; | 8 font-family: Helvetica, sans-serif; |
9 font-size: 14px; | 9 font-size: 14px; |
10 margin: 0; | 10 margin: 0; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 } | 69 } |
70 | 70 |
71 .close { | 71 .close { |
72 background: url(../images/bt-close-1x.png); | 72 background: url(../images/bt-close-1x.png); |
73 float: right; | 73 float: right; |
74 height: 60px; | 74 height: 60px; |
75 width: 60px; | 75 width: 60px; |
76 } | 76 } |
77 | 77 |
78 | 78 |
79 button.grayed-out { | 79 .buttonbar button.grayed-out { |
80 color: rgba(0, 0, 0, .28); | 80 color: rgba(0, 0, 0, .28); |
81 text-transform: none; | |
81 } | 82 } |
82 | 83 |
83 .col-3 { | 84 .col-3 { |
84 color: rgba(0, 0, 0, .54); | 85 color: rgba(0, 0, 0, .54); |
85 line-height: 24px; | 86 line-height: 24px; |
86 width: 504px; | 87 width: 504px; |
87 } | 88 } |
88 | 89 |
89 .col-3 h4 { | 90 .col-3 h4 { |
90 line-height: 100%; | 91 line-height: 100%; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
173 } | 174 } |
174 | 175 |
175 .train.recorded .text { | 176 .train.recorded .text { |
176 color: rgba(66, 133, 244, 1); | 177 color: rgba(66, 133, 244, 1); |
177 } | 178 } |
178 | 179 |
179 .train.error .text { | 180 .train.error .text { |
180 color: rgb(213, 0, 0); | 181 color: rgb(213, 0, 0); |
181 } | 182 } |
182 | 183 |
184 @-webkit-keyframes rotate { | |
185 from { -webkit-transform: rotate(0); } | |
186 to { -webkit-transform: rotate(359deg); } | |
187 } | |
188 | |
183 .train.listening .icon { | 189 .train.listening .icon { |
190 -webkit-animation-duration: 2s; | |
191 -webkit-animation-iteration-count: infinite; | |
192 -webkit-animation-name: rotate; | |
193 -webkit-animation-timing-function: linear; | |
Dan Beam
2014/10/27 16:10:33
nit: -webkit-animation: rotate 2s linear infinite;
kcarattini
2014/10/27 23:20:10
Done.
| |
184 background: url(../images/placeholder-loader-1x.png) no-repeat; | 194 background: url(../images/placeholder-loader-1x.png) no-repeat; |
185 } | 195 } |
186 | 196 |
187 .train.not-started .icon { | 197 .train.not-started .icon { |
188 background: url(../images/ic-check-gray-1x.png) no-repeat; | 198 background: url(../images/ic-check-gray-1x.png) no-repeat; |
189 } | 199 } |
190 | 200 |
191 .train.recorded .icon { | 201 .train.recorded .icon { |
192 background: url(../images/ic-check-blue-1x.png) no-repeat; | 202 background: url(../images/ic-check-blue-1x.png) no-repeat; |
193 } | 203 } |
(...skipping 26 matching lines...) Expand all Loading... | |
220 width: 24px; | 230 width: 24px; |
221 } | 231 } |
222 | 232 |
223 .check .text { | 233 .check .text { |
224 color: rgba(0, 0, 0, .54); | 234 color: rgba(0, 0, 0, .54); |
225 display: inline-block; | 235 display: inline-block; |
226 height: 24px; | 236 height: 24px; |
227 line-height: 24px; | 237 line-height: 24px; |
228 vertical-align: top; | 238 vertical-align: top; |
229 } | 239 } |
OLD | NEW |