OLD | NEW |
---|---|
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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
336 color: white; | 336 color: white; |
337 font-weight: bold; | 337 font-weight: bold; |
338 opacity: 0.7; | 338 opacity: 0.7; |
339 } | 339 } |
340 | 340 |
341 .list-inline-button:hover { | 341 .list-inline-button:hover { |
342 opacity: 1; | 342 opacity: 1; |
343 } | 343 } |
344 | 344 |
345 .option-name { | 345 .option-name { |
346 padding-right: 5px; | 346 -webkit-padding-end: 5px; |
347 } | |
348 | |
349 html[dir=rtl].option-name { | |
Evan Stade
2014/09/18 18:46:23
I assume there was supposed to be a space between
| |
350 padding-left: 5px; | |
351 } | 347 } |
352 | 348 |
353 .favicon-cell { | 349 .favicon-cell { |
354 -webkit-padding-start: 20px; | 350 -webkit-padding-start: 20px; |
355 background-position: left; | 351 background-position: left; |
356 background-repeat: no-repeat; | 352 background-repeat: no-repeat; |
357 background-size: 16px; | 353 background-size: 16px; |
358 } | 354 } |
359 | 355 |
360 input[type='url'].favicon-cell { | 356 input[type='url'].favicon-cell { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
432 html:not([hasFlashPlugin]) .flash-plugin-area, | 428 html:not([hasFlashPlugin]) .flash-plugin-area, |
433 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to | 429 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to |
434 * show the link to the Flash storage settings manager: | 430 * show the link to the Flash storage settings manager: |
435 */ | 431 */ |
436 html[flashPluginSupportsClearSiteData] .flash-plugin-area, | 432 html[flashPluginSupportsClearSiteData] .flash-plugin-area, |
437 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, | 433 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, |
438 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled, | 434 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled, |
439 html:not([enablePepperFlashSettings]) .pepper-flash-settings { | 435 html:not([enablePepperFlashSettings]) .pepper-flash-settings { |
440 display: none; | 436 display: none; |
441 } | 437 } |
OLD | NEW |