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

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

Issue 9560005: [uber page] Merge advanced options page into browser options. (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 #default-search-engine-group { 5 #default-search-engine-group {
6 -webkit-box-orient: vertical; 6 -webkit-box-orient: vertical;
7 display: -webkit-box; 7 display: -webkit-box;
8 } 8 }
9 9
10 #default-search-engine-group > div { 10 #default-search-engine-group > div {
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 background: right center no-repeat; 259 background: right center no-repeat;
260 } 260 }
261 261
262 .network-menu-item:hover { 262 .network-menu-item:hover {
263 background-color: #eee; 263 background-color: #eee;
264 } 264 }
265 265
266 .network-menu > hr { 266 .network-menu > hr {
267 opacity: 0.4; 267 opacity: 0.4;
268 } 268 }
269
270 #settings .section-group:not(:first-child) {
271 margin-top: 10px;
272 }
273
274 #settings .section-group:not(:last-child) {
275 margin-bottom: 10px;
276 }
277
278 #web-content-section select,
279 .web-content-select-label {
280 min-width: 145px;
281 }
282
283 .web-content-select-label > span:only-of-type {
284 display: inline-block;
285 min-width: 100px;
286 }
287
288 #download-location-group {
289 margin: 10px 0 5px;
290 min-width: 470px;
291 }
292
293 #fontSettingsCustomizeFontsButton,
294 #privacyClearDataButton {
295 margin-left: 10px;
296 }
297
298 #timezone-value {
299 display: inline-block;
300 vertical-align: baseline;
301 }
302
303 #privacy-explanation {
304 line-height: 1.8em;
305 }
306
307 #privacy-explanation span:first-child {
308 display: block;
309 }
310
311 #advanced-settings {
312 -webkit-transition: height 500ms;
313 overflow: hidden;
314 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698