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

Side by Side Diff: chrome/browser/resources/file_manager/js/image_editor/gallery.css

Issue 8748006: Increase the opacity of arrows in the Photo Editor (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years 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 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 margin: 0; 8 margin: 0;
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 font-family: Open Sans,Droid Sans Fallback,sans-serif; 10 font-family: Open Sans,Droid Sans Fallback,sans-serif;
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 overlaps it) */ 181 overlaps it) */
182 .gallery .arrow div{ 182 .gallery .arrow div{
183 width: 105px; 183 width: 105px;
184 height: 193px; 184 height: 193px;
185 background-repeat: no-repeat; 185 background-repeat: no-repeat;
186 background-position: center center; 186 background-position: center center;
187 opacity: 0; 187 opacity: 0;
188 } 188 }
189 189
190 .gallery[tools] .arrow[active] div{ 190 .gallery[tools] .arrow[active] div{
191 opacity: 0.17; 191 opacity: 0.25;
192 } 192 }
193 193
194 .gallery[tools] .arrow[active] div:hover{ 194 .gallery[tools] .arrow[active] div:hover{
195 opacity: 1; 195 opacity: 1;
196 } 196 }
197 197
198 .gallery .arrow.left div{ 198 .gallery .arrow.left div{
199 background-image: url(../../images/gallery/arrow_left.png); 199 background-image: url(../../images/gallery/arrow_left.png);
200 } 200 }
201 201
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 } 704 }
705 705
706 .gallery .share-menu > div:hover { 706 .gallery .share-menu > div:hover {
707 background-color: rgba(240,240,240,1); 707 background-color: rgba(240,240,240,1);
708 } 708 }
709 709
710 .gallery .share-menu > div > img { 710 .gallery .share-menu > div > img {
711 margin-right: 5px; 711 margin-right: 5px;
712 display: block; 712 display: block;
713 } 713 }
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