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

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 423533003: Use PageManager in About page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix settings app browser test Created 6 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 body { 5 body {
6 position: relative; 6 position: relative;
7 } 7 }
8 8
9 #main-content { 9 #main-content {
10 bottom: 0; 10 bottom: 0;
(...skipping 19 matching lines...) Expand all
30 min-height: 100%; 30 min-height: 100%;
31 position: relative; 31 position: relative;
32 } 32 }
33 33
34 #page-container { 34 #page-container {
35 box-sizing: border-box; 35 box-sizing: border-box;
36 max-width: 888px; 36 max-width: 888px;
37 min-width: 600px; 37 min-width: 600px;
38 } 38 }
39 39
40 body.uber-frame #searchBox { 40 body #searchBox {
41 position: fixed; 41 position: fixed;
42 z-index: 4; 42 z-index: 4;
43 } 43 }
44 44
45 div.disabled { 45 div.disabled {
46 color: #999; 46 color: #999;
47 } 47 }
48 48
49 .settings-row { 49 .settings-row {
50 display: block; 50 display: block;
(...skipping 11 matching lines...) Expand all
62 } 62 }
63 63
64 .box-align-center { 64 .box-align-center {
65 -webkit-box-align: center; 65 -webkit-box-align: center;
66 } 66 }
67 67
68 .stretch { 68 .stretch {
69 -webkit-box-flex: 1; 69 -webkit-box-flex: 1;
70 } 70 }
71 71
72 .frozen {
73 position: fixed;
74 }
75
76 #overlay-container-1 {
77 z-index: 11;
78 }
79 #overlay-container-2 {
80 z-index: 12;
81 }
82 #overlay-container-3 {
83 z-index: 13;
84 }
85
86 .raw-button, 72 .raw-button,
87 .raw-button:hover, 73 .raw-button:hover,
88 .raw-button:active { 74 .raw-button:active {
89 -webkit-box-shadow: none; 75 -webkit-box-shadow: none;
90 background-color: transparent; 76 background-color: transparent;
91 background-repeat: no-repeat; 77 background-repeat: no-repeat;
92 border: none; 78 border: none;
93 min-width: 0; 79 min-width: 0;
94 padding: 1px 6px; 80 padding: 1px 6px;
95 } 81 }
(...skipping 15 matching lines...) Expand all
111 97
112 .page list { 98 .page list {
113 /* Min height is a multiple of the list item height (32) */ 99 /* Min height is a multiple of the list item height (32) */
114 min-height: 192px; 100 min-height: 192px;
115 } 101 }
116 102
117 .option { 103 .option {
118 margin-top: 0; 104 margin-top: 0;
119 } 105 }
120 106
121 .transparent {
122 opacity: 0;
123 }
124
125 .touch-slider { 107 .touch-slider {
126 -webkit-appearance: slider-horizontal; 108 -webkit-appearance: slider-horizontal;
127 } 109 }
128 110
129 .settings-list, 111 .settings-list,
130 .settings-list-empty { 112 .settings-list-empty {
131 border: 1px solid #d9d9d9; 113 border: 1px solid #d9d9d9;
132 border-radius: 2px; 114 border-radius: 2px;
133 } 115 }
134 116
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 html:not([hasFlashPlugin]) .flash-plugin-area, 432 html:not([hasFlashPlugin]) .flash-plugin-area,
451 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to 433 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to
452 * show the link to the Flash storage settings manager: 434 * show the link to the Flash storage settings manager:
453 */ 435 */
454 html[flashPluginSupportsClearSiteData] .flash-plugin-area, 436 html[flashPluginSupportsClearSiteData] .flash-plugin-area,
455 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, 437 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled,
456 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled, 438 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled,
457 html:not([enablePepperFlashSettings]) .pepper-flash-settings { 439 html:not([enablePepperFlashSettings]) .pepper-flash-settings {
458 display: none; 440 display: none;
459 } 441 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/options_bundle.js ('k') | chrome/browser/resources/options/options_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698