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

Side by Side Diff: chrome/browser/resources/options2/browser_options.css

Issue 9555016: [uber] css hack n slash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
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 #home-page-select-container {
6 margin-top: 5px;
7 }
8
9 #default-search-engine-group {
10 -webkit-box-orient: vertical;
11 display: -webkit-box;
12 }
13
14 #default-search-engine-group > div {
15 -webkit-box-orient: horizontal;
16 display: -webkit-box;
17 }
18
19 #default-search-engine {
20 -webkit-box-flex: 1;
21 display: block;
22 max-width: 100px;
23 }
24
25 #default-search-group-label {
26 margin-bottom: 5px;
27 }
28
29 #manage-default-search-engines { 5 #manage-default-search-engines {
30 -webkit-margin-start: 10px; 6 -webkit-margin-start: 4px;
31 margin-top: 0;
32 } 7 }
33 8
34 #default-browser-state { 9 #default-browser-state {
35 margin-top: 6px; 10 margin-top: 6px;
36 } 11 }
37 12
38 #instant-setting {
39 margin-bottom: 3px;
40 margin-top: 10px
41 }
42
43 #sync-overview p { 13 #sync-overview p {
44 display: inline; 14 display: inline;
45 } 15 }
46 16
47 #account-picture-wrapper { 17 #account-picture-wrapper {
48 border: 1px solid rgba(0, 0, 0, 0.3); 18 border: 1px solid rgba(0, 0, 0, 0.3);
49 border-radius: 4px; 19 border-radius: 4px;
50 cursor: pointer; 20 cursor: pointer;
51 display: inline-block; 21 display: inline-block;
52 float: left; 22 float: left;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 89
120 .sync-error .link-button { 90 .sync-error .link-button {
121 margin: 0 1ex; 91 margin: 0 1ex;
122 padding: 0; 92 padding: 0;
123 } 93 }
124 94
125 #enable-auto-login-checkbox { 95 #enable-auto-login-checkbox {
126 margin-top: 10px; 96 margin-top: 10px;
127 } 97 }
128 98
129 #mac-passwords-warning, 99 #mac-passwords-warning {
130 #manage-data-group {
131 margin-top: 10px; 100 margin-top: 10px;
132 } 101 }
133 102
134 #pointer-sensitivity-more { 103 #pointer-sensitivity-more {
135 float: right; 104 float: right;
136 } 105 }
137 106
138 html[dir=rtl] #pointer-sensitivity-more { 107 html[dir=rtl] #pointer-sensitivity-more {
139 float: left; 108 float: left;
140 } 109 }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 background: right center no-repeat; 232 background: right center no-repeat;
264 } 233 }
265 234
266 .network-menu-item:hover { 235 .network-menu-item:hover {
267 background-color: #eee; 236 background-color: #eee;
268 } 237 }
269 238
270 .network-menu > hr { 239 .network-menu > hr {
271 opacity: 0.4; 240 opacity: 0.4;
272 } 241 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698