OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 /* Special attribute to hide elements. */ | 5 /* Special attribute to hide elements. */ |
6 [hidden] { | 6 [hidden] { |
7 display: none !important; | 7 display: none !important; |
8 } | 8 } |
9 | 9 |
10 /* "chrome-menu" class overrides some standard menu.css styles, to make custom | 10 /* "chrome-menu" class overrides some standard menu.css styles, to make custom |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 flex-direction: column; | 220 flex-direction: column; |
221 padding: 12px; | 221 padding: 12px; |
222 position: relative; | 222 position: relative; |
223 width: 386px; | 223 width: 386px; |
224 } | 224 } |
225 | 225 |
226 .cr-dialog-frame:focus { | 226 .cr-dialog-frame:focus { |
227 outline: none; | 227 outline: none; |
228 } | 228 } |
229 | 229 |
230 @-webkit-keyframes pulse { | 230 @keyframes pulse { |
231 0% { | 231 0% { |
232 transform: scale(1); | 232 transform: scale(1); |
233 } | 233 } |
234 40% { | 234 40% { |
235 transform: scale(1.02); | 235 transform: scale(1.02); |
236 } | 236 } |
237 60% { | 237 60% { |
238 transform: scale(1.02); | 238 transform: scale(1.02); |
239 } | 239 } |
240 100% { | 240 100% { |
241 transform: scale(1); | 241 transform: scale(1); |
242 } | 242 } |
243 } | 243 } |
244 | 244 |
245 .cr-dialog-frame.pulse { | 245 .cr-dialog-frame.pulse { |
246 -webkit-animation-duration: 180ms; | 246 animation-duration: 180ms; |
247 -webkit-animation-iteration-count: 1; | 247 animation-iteration-count: 1; |
248 -webkit-animation-name: pulse; | 248 animation-name: pulse; |
249 -webkit-animation-timing-function: ease-in-out; | 249 animation-timing-function: ease-in-out; |
250 } | 250 } |
251 | 251 |
252 .shown > .cr-dialog-frame { | 252 .shown > .cr-dialog-frame { |
253 opacity: 1; | 253 opacity: 1; |
254 } | 254 } |
255 | 255 |
256 .cr-dialog-frame { | 256 .cr-dialog-frame { |
257 opacity: 0; | 257 opacity: 0; |
258 transition: opacity 250ms; | 258 transition: opacity 250ms; |
259 } | 259 } |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 .table-row-cell .size, | 348 .table-row-cell .size, |
349 .table-row-cell .type, | 349 .table-row-cell .type, |
350 .table-row-cell .date, | 350 .table-row-cell .date, |
351 .thumbnail-bottom .filename-label, | 351 .thumbnail-bottom .filename-label, |
352 .autocomplete-suggestions > li > .detail-text { | 352 .autocomplete-suggestions > li > .detail-text { |
353 /* In HiDPI display, 13pt Roboto font is drawn upper than normal display, | 353 /* In HiDPI display, 13pt Roboto font is drawn upper than normal display, |
354 * so add extra padding on top of it. */ | 354 * so add extra padding on top of it. */ |
355 padding-top: 3px; | 355 padding-top: 3px; |
356 } | 356 } |
357 } | 357 } |
OLD | NEW |