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

Side by Side Diff: chrome/browser/resources/options/chromeos/change_picture_options.css

Issue 2231143002: Cleanup: fix some CSS comment styles (especially copyrights) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: michaelpg@ review Created 4 years, 4 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
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 #user-images-area { 5 #user-images-area {
6 display: -webkit-box; 6 display: -webkit-box;
7 } 7 }
8 8
9 #user-image-grid { 9 #user-image-grid {
10 -webkit-user-drag: none; 10 -webkit-user-drag: none;
(...skipping 25 matching lines...) Expand all
36 display: inline-block; 36 display: inline-block;
37 margin: 8px; 37 margin: 8px;
38 padding: 3px; 38 padding: 3px;
39 } 39 }
40 40
41 #user-image-grid [selected] { 41 #user-image-grid [selected] {
42 border: 2px solid rgb(0, 102, 204); 42 border: 2px solid rgb(0, 102, 204);
43 padding: 2px; 43 padding: 2px;
44 } 44 }
45 45
46 /** 46 /* #user-image-preview can have the following classes:
47 * #user-image-preview can have the following classes:
48 * .default-image: one of the default images is selected (including the grey 47 * .default-image: one of the default images is selected (including the grey
49 * silhouette); 48 * silhouette);
50 * .profile-image: profile image is selected; 49 * .profile-image: profile image is selected;
51 * .online: camera is streaming video; 50 * .online: camera is streaming video;
52 * .camera: camera (live or photo) is selected; 51 * .camera: camera (live or photo) is selected;
53 * .live: camera is in live mode (no photo taken yet/last photo removed). 52 * .live: camera is in live mode (no photo taken yet/last photo removed). */
54 */
55 53
56 #user-image-preview { 54 #user-image-preview {
57 margin: 18px 10px 0 0; 55 margin: 18px 10px 0 0;
58 max-width: 220px; 56 max-width: 220px;
59 position: relative; 57 position: relative;
60 } 58 }
61 59
62 #user-image-preview .perspective-box { 60 #user-image-preview .perspective-box {
63 -webkit-perspective: 600px; 61 -webkit-perspective: 600px;
64 border: solid 1px #cacaca; 62 border: solid 1px #cacaca;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 } 168 }
171 169
172 #user-image-attribution { 170 #user-image-attribution {
173 -webkit-padding-start: 34px; 171 -webkit-padding-start: 34px;
174 line-height: 26px; 172 line-height: 26px;
175 } 173 }
176 174
177 #user-image-author-website { 175 #user-image-author-website {
178 -webkit-padding-start: 5px; 176 -webkit-padding-start: 5px;
179 } 177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698