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 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1680 body[type='full-page'] [invisibleif~='full-page'], | 1680 body[type='full-page'] [invisibleif~='full-page'], |
1681 | 1681 |
1682 body[type='folder'] [visibleif]:not([visibleif~='folder']), | 1682 body[type='folder'] [visibleif]:not([visibleif~='folder']), |
1683 body[type='saveas-file'] [visibleif]:not([visibleif~='saveas-file']), | 1683 body[type='saveas-file'] [visibleif]:not([visibleif~='saveas-file']), |
1684 body[type='open-file'] [visibleif]:not([visibleif~='open-file']), | 1684 body[type='open-file'] [visibleif]:not([visibleif~='open-file']), |
1685 body[type='open-multi-file'] [visibleif]:not([visibleif~='open-multi-file']), | 1685 body[type='open-multi-file'] [visibleif]:not([visibleif~='open-multi-file']), |
1686 body[type='full-page'] [visibleif]:not([visibleif~='full-page']) { | 1686 body[type='full-page'] [visibleif]:not([visibleif~='full-page']) { |
1687 display: none; | 1687 display: none; |
1688 } | 1688 } |
1689 | 1689 |
1690 body:not([ctrl-pressing]) [required_attr='ctrl-pressing'] { | |
1691 display: none; | |
1692 } | |
1693 | |
1694 body:not([drive]) [required_drive] { | |
1695 display: none; | |
1696 } | |
1697 | |
1698 #gear-button::before { | 1690 #gear-button::before { |
1699 background-image: url('../images/files/ui/settings.svg'); | 1691 background-image: url('../images/files/ui/settings.svg'); |
1700 background-position: 20px center; | 1692 background-position: 20px center; |
1701 background-repeat: no-repeat; | 1693 background-repeat: no-repeat; |
1702 bottom: 0; | 1694 bottom: 0; |
1703 content: ''; | 1695 content: ''; |
1704 left: 0; | 1696 left: 0; |
1705 opacity: 0.75; | 1697 opacity: 0.75; |
1706 position: absolute; | 1698 position: absolute; |
1707 right: 0; | 1699 right: 0; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1924 } | 1916 } |
1925 | 1917 |
1926 list.autocomplete-suggestions[hasElementFocus] > [selected], | 1918 list.autocomplete-suggestions[hasElementFocus] > [selected], |
1927 list.autocomplete-suggestions[hasElementFocus] > [lead], | 1919 list.autocomplete-suggestions[hasElementFocus] > [lead], |
1928 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], | 1920 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], |
1929 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { | 1921 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { |
1930 background-color: rgb(238, 238, 238); | 1922 background-color: rgb(238, 238, 238); |
1931 background-image: none; | 1923 background-image: none; |
1932 border: 1px solid white; | 1924 border: 1px solid white; |
1933 } | 1925 } |
OLD | NEW |