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

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/css/wallpaper_manager.css

Issue 23903019: [Wallpaper Picker] Fixed non clickable author website URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 | 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) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 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 body { 9 body {
10 -webkit-app-region: drag; 10 -webkit-app-region: drag;
11 background-color: rgba(20, 20, 20, 0.93); 11 background-color: rgba(20, 20, 20, 0.93);
12 color: #999; 12 color: #999;
13 font-size: 80%; 13 font-size: 80%;
14 height: 100%; 14 height: 100%;
15 margin: 0; 15 margin: 0;
16 padding: 0; 16 padding: 0;
17 } 17 }
18 18
19 /* Click events are not received in draggable area. Making all clickable areas 19 /* Click events are not received in draggable area. Making all clickable areas
20 * not draggable to receive click events. 20 * not draggable to receive click events.
21 * TODO(bshe): Remove this when http://crbug.com/142275 fixed. 21 * TODO(bshe): Remove this when http://crbug.com/142275 fixed.
22 */ 22 */
23 .dialog-topbar #navstrip, 23 .dialog-topbar #navstrip,
24 .dialog-topbar #window-close-button, 24 .dialog-topbar #window-close-button,
25 .image-picker, 25 .image-picker,
26 .overlay-container .page, 26 .overlay-container .page,
27 #author-website,
27 #surprise-me { 28 #surprise-me {
28 -webkit-app-region: no-drag; 29 -webkit-app-region: no-drag;
29 } 30 }
30 31
31 .dialog-container { 32 .dialog-container {
32 -webkit-box-orient: vertical; 33 -webkit-box-orient: vertical;
33 display: -webkit-box; 34 display: -webkit-box;
34 overflow: hidden; 35 overflow: hidden;
35 } 36 }
36 37
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 margin-right: 4px; 333 margin-right: 4px;
333 opacity: 0.7; 334 opacity: 0.7;
334 position: relative; 335 position: relative;
335 top: 4px; 336 top: 4px;
336 width: 17px; 337 width: 17px;
337 } 338 }
338 339
339 #surprise-me #checkbox.checked { 340 #surprise-me #checkbox.checked {
340 background-image: url('../images/ui/checkbox_checked.png'); 341 background-image: url('../images/ui/checkbox_checked.png');
341 } 342 }
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