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 { | 5 html { |
6 height: 100%; | 6 height: 100%; |
7 } | 7 } |
8 | 8 |
9 html.col-resize * { | 9 html.col-resize * { |
10 cursor: col-resize !important; | 10 cursor: col-resize !important; |
(...skipping 1454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1465 body[type='full-page'] [invisibleif~='full-page'], | 1465 body[type='full-page'] [invisibleif~='full-page'], |
1466 | 1466 |
1467 body[type='folder'] [visibleif]:not([visibleif~='folder']), | 1467 body[type='folder'] [visibleif]:not([visibleif~='folder']), |
1468 body[type='saveas-file'] [visibleif]:not([visibleif~='saveas-file']), | 1468 body[type='saveas-file'] [visibleif]:not([visibleif~='saveas-file']), |
1469 body[type='open-file'] [visibleif]:not([visibleif~='open-file']), | 1469 body[type='open-file'] [visibleif]:not([visibleif~='open-file']), |
1470 body[type='open-multi-file'] [visibleif]:not([visibleif~='open-multi-file']), | 1470 body[type='open-multi-file'] [visibleif]:not([visibleif~='open-multi-file']), |
1471 body[type='full-page'] [visibleif]:not([visibleif~='full-page']) { | 1471 body[type='full-page'] [visibleif]:not([visibleif~='full-page']) { |
1472 display: none; | 1472 display: none; |
1473 } | 1473 } |
1474 | 1474 |
1475 body:not([ctrl-pressing]) [required_attr='ctrl-pressing'] { | |
1476 display: none; | |
1477 } | |
1478 | |
1479 body:not([drive]) [required_drive] { | |
1480 display: none; | |
1481 } | |
1482 | |
1483 #gear-button::before { | 1475 #gear-button::before { |
1484 background-image: url('../images/files/ui/settings.svg'); | 1476 background-image: url('../images/files/ui/settings.svg'); |
1485 background-position: 20px center; | 1477 background-position: 20px center; |
1486 background-repeat: no-repeat; | 1478 background-repeat: no-repeat; |
1487 bottom: 0; | 1479 bottom: 0; |
1488 content: ''; | 1480 content: ''; |
1489 left: 0; | 1481 left: 0; |
1490 opacity: 0.75; | 1482 opacity: 0.75; |
1491 position: absolute; | 1483 position: absolute; |
1492 right: 0; | 1484 right: 0; |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1705 } | 1697 } |
1706 | 1698 |
1707 list.autocomplete-suggestions[hasElementFocus] > [selected], | 1699 list.autocomplete-suggestions[hasElementFocus] > [selected], |
1708 list.autocomplete-suggestions[hasElementFocus] > [lead], | 1700 list.autocomplete-suggestions[hasElementFocus] > [lead], |
1709 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], | 1701 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], |
1710 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { | 1702 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { |
1711 background-color: rgb(238, 238, 238); | 1703 background-color: rgb(238, 238, 238); |
1712 background-image: none; | 1704 background-image: none; |
1713 border: 1px solid white; | 1705 border: 1px solid white; |
1714 } | 1706 } |
OLD | NEW |