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 html.col-resize * { | 5 html.col-resize * { |
6 cursor: col-resize !important; | 6 cursor: col-resize !important; |
7 } | 7 } |
8 | 8 |
9 /* Outer frame of the dialog. */ | 9 /* Outer frame of the dialog. */ |
10 body { | 10 body { |
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1279 :hover > .tooltip { | 1279 :hover > .tooltip { |
1280 -webkit-animation-duration: 800ms; | 1280 -webkit-animation-duration: 800ms; |
1281 -webkit-animation-iteration-count: 1; | 1281 -webkit-animation-iteration-count: 1; |
1282 -webkit-animation-name: tooltip-show; | 1282 -webkit-animation-name: tooltip-show; |
1283 -webkit-animation-timing-function: linear; | 1283 -webkit-animation-timing-function: linear; |
1284 opacity: 1; | 1284 opacity: 1; |
1285 } | 1285 } |
1286 | 1286 |
1287 #no-search-results { | 1287 #no-search-results { |
1288 bottom: 0; | 1288 bottom: 0; |
1289 display: none; | |
1289 left: 0; | 1290 left: 0; |
1290 padding: 10px; | 1291 padding: 10px; |
1291 position: absolute; | 1292 position: absolute; |
1292 right: 0; | 1293 right: 0; |
1293 top: 28px; /* Leave room for the file list header. */ | 1294 top: 28px; /* Leave room for the file list header. */ |
1294 } | 1295 } |
1296 | |
1297 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show='true'] { | |
Vladislav Kaznacheev
2012/05/21 17:06:08
#no-search-results[show] is enough
Oleg Eterevsky
2012/05/21 17:06:52
Done.
| |
1298 display: block; | |
1299 } | |
OLD | NEW |