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

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

Issue 12218135: Enlarge clickable area of the Files.app's butter bar's close action (x). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 display: -webkit-box; 83 display: -webkit-box;
84 min-height: 35px; 84 min-height: 35px;
85 } 85 }
86 86
87 #butter-bar .actions { 87 #butter-bar .actions {
88 -webkit-box-align: center; 88 -webkit-box-align: center;
89 -webkit-box-orient: horizontal; 89 -webkit-box-orient: horizontal;
90 -webkit-box-pack: end; 90 -webkit-box-pack: end;
91 -webkit-margin-start: 6px; 91 -webkit-margin-start: 6px;
92 display: -webkit-box; 92 display: -webkit-box;
93 height: 20px;
94 } 93 }
95 94
96 #butter-bar .actions a { 95 #butter-bar .actions a {
97 color: rgb(17, 85, 204); 96 color: rgb(17, 85, 204);
98 cursor: pointer; 97 cursor: pointer;
98 vertical-align: middle;
99 } 99 }
100 100
101 #butter-bar .actions a.x { 101 #butter-bar .actions a.x {
102 background: center center no-repeat; 102 background: center center no-repeat;
103 background-image: -webkit-image-set( 103 background-image: -webkit-image-set(
104 url('../images/files/ui/close_bar.png') 1x, 104 url('../images/files/ui/close_bar.png') 1x,
105 url('../images/files/ui/2x/close_bar.png') 2x); 105 url('../images/files/ui/2x/close_bar.png') 2x);
106 display: inline-block; 106 display: inline-block;
107 height: 12px; 107 height: 35px; /* #butter-bar .content's min-height. */
108 padding: 4px 2px; 108 margin-right: -12px;
109 width: 12px; 109 width: 35px;
110 } 110 }
111 111
112 #butter-bar .actions a:first-child { 112 #butter-bar .actions a.x:first-child {
113 margin-left: 2px; 113 margin-left: -6px;
114 }
115
116 #butter-bar .actions a:last-child {
117 margin-right: -2px; /* Overlap the padding with butter-bar padding. */
118 } 114 }
119 115
120 #butter-bar.error { 116 #butter-bar.error {
121 background-color: rgba(221, 75, 57, 0.2); 117 background-color: rgba(221, 75, 57, 0.2);
122 } 118 }
123 119
124 #butter-bar .butter-message.single-line { 120 #butter-bar .butter-message.single-line {
125 overflow: hidden; 121 overflow: hidden;
126 text-overflow: ellipsis; 122 text-overflow: ellipsis;
127 white-space: nowrap; 123 white-space: nowrap;
(...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after
1624 1620
1625 #default-action-dialog { 1621 #default-action-dialog {
1626 min-width: 300px; 1622 min-width: 300px;
1627 width: auto; 1623 width: auto;
1628 } 1624 }
1629 1625
1630 .drive-welcome-wrapper { 1626 .drive-welcome-wrapper {
1631 /* drive_welcome.css will override it once loaded. */ 1627 /* drive_welcome.css will override it once loaded. */
1632 display: none; 1628 display: none;
1633 } 1629 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698