Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 13779006: Fixed gear menu navigation using keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applied the changes to the new interface html. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698