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

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

Issue 10444060: Use chrome_html structure for shared_resources and options2 page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use chrome_html for all shared_resources and options page, specify background image sizes. Created 8 years, 6 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 #change-home-page-section { 5 #change-home-page-section {
6 margin-left: 30px; 6 margin-left: 30px;
7 } 7 }
8 8
9 #home-page-url { 9 #home-page-url {
10 display: inline-block; 10 display: inline-block;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 75% { 178 75% {
179 background-position: 0 50%; 179 background-position: 0 50%;
180 } 180 }
181 87.5% { 181 87.5% {
182 background-position: 0 25%; 182 background-position: 0 25%;
183 } 183 }
184 } 184 }
185 185
186 .network-wifi { 186 .network-wifi {
187 background-image: url('chrome://theme/IDR_STATUSBAR_NETWORK_ARCS_DARK'); 187 background-image: url('chrome://theme/IDR_STATUSBAR_NETWORK_ARCS_DARK');
188 background-size: 25px;
188 } 189 }
189 190
190 .network-wimax { 191 .network-wimax {
191 background-image: url('chrome://theme/IDR_STATUSBAR_NETWORK_BARS_DARK'); 192 background-image: url('chrome://theme/IDR_STATUSBAR_NETWORK_BARS_DARK');
193 background-size: 25px;
192 } 194 }
193 195
194 .network-cellular { 196 .network-cellular {
195 background-image: url('chrome://theme/IDR_STATUSBAR_NETWORK_BARS_DARK'); 197 background-image: url('chrome://theme/IDR_STATUSBAR_NETWORK_BARS_DARK');
198 background-size: 25px;
196 } 199 }
197 200
198 .network-vpn { 201 .network-vpn {
199 background-image: url('chrome://theme/IDR_STATUSBAR_VPN'); 202 background-image: url('chrome://theme/IDR_STATUSBAR_VPN');
203 background-size: 25px;
200 } 204 }
201 205
202 .network-add-connection, 206 .network-add-connection,
203 .network-control-active, 207 .network-control-active,
204 .network-control-inactive { 208 .network-control-inactive {
205 background-position: center center !important; 209 background-position: center center !important;
206 background-repeat: no-repeat; 210 background-repeat: no-repeat;
207 } 211 }
208 212
209 .network-add-connection { 213 .network-add-connection {
210 background-image: url('chrome://theme/IDR_SIDETABS_NEW_TAB'); 214 background-image: url('chrome://theme/IDR_SIDETABS_NEW_TAB');
215 background-size: 16px;
211 } 216 }
212 217
213 .network-control-inactive { 218 .network-control-inactive {
214 background-image: none; 219 background-image: none;
215 } 220 }
216 221
217 .network-control-active { 222 .network-control-active {
218 background-image: url('chrome://theme/IDR_PROFILE_SELECTED'); 223 background-image: url('chrome://theme/IDR_PROFILE_SELECTED');
224 background-size: 16px;
219 } 225 }
220 226
221 .network-options-button { 227 .network-options-button {
222 -webkit-box-flex: 0; 228 -webkit-box-flex: 0;
223 -webkit-transform: scale(0.6); 229 -webkit-transform: scale(0.6);
224 background-image: none; 230 background-image: none;
225 background-position: center center; 231 background-position: center center;
226 display: block; 232 display: block;
227 opacity: 0.5; 233 opacity: 0.5;
228 vertical-align: middle; 234 vertical-align: middle;
229 width: 19px; 235 width: 19px;
230 } 236 }
231 237
232 .network-menu-item:hover .network-options-button { 238 .network-menu-item:hover .network-options-button {
233 background-image: url('chrome://theme/IDR_STATUSBAR_EDIT'); 239 background-image: url('chrome://theme/IDR_STATUSBAR_EDIT');
240 background-size: 25px;
234 } 241 }
235 242
236 .network-group > .controlled-setting-indicator, 243 .network-group > .controlled-setting-indicator,
237 .network-menu-item > .controlled-setting-indicator { 244 .network-menu-item > .controlled-setting-indicator {
238 -webkit-box-flex: 0; 245 -webkit-box-flex: 0;
239 -webkit-margin-end: 5px; 246 -webkit-margin-end: 5px;
240 display: block; 247 display: block;
241 height: 16px; 248 height: 16px;
242 margin-top: 9px; 249 margin-top: 9px;
243 width: 16px; 250 width: 16px;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 } 410 }
404 411
405 .sliding { 412 .sliding {
406 -webkit-transition: height 200ms; 413 -webkit-transition: height 200ms;
407 overflow-y: hidden; 414 overflow-y: hidden;
408 } 415 }
409 416
410 #sessionRestoreOverlay { 417 #sessionRestoreOverlay {
411 width: 500px; 418 width: 500px;
412 } 419 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698