| 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 list.autocomplete-suggestions:not([hasElementFocus]) > [lead][selected] { | 418 list.autocomplete-suggestions:not([hasElementFocus]) > [lead][selected] { |
| 419 background-color: rgb(187, 206, 233); | 419 background-color: rgb(187, 206, 233); |
| 420 } | 420 } |
| 421 | 421 |
| 422 html:not([hasFlashPlugin]) .flash-plugin-area, | 422 html:not([hasFlashPlugin]) .flash-plugin-area, |
| 423 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to | 423 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to |
| 424 * show the link to the Flash storage settings manager: | 424 * show the link to the Flash storage settings manager: |
| 425 */ | 425 */ |
| 426 html[flashPluginSupportsClearSiteData] .flash-plugin-area, | 426 html[flashPluginSupportsClearSiteData] .flash-plugin-area, |
| 427 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, | 427 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, |
| 428 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { | 428 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled, |
| 429 html:not([enablePepperFlashSettings]) .pepper-flash-settings { |
| 429 display: none; | 430 display: none; |
| 430 } | 431 } |
| 431 | 432 |
| 432 /* Controlled setting indicator and bubble. */ | 433 /* Controlled setting indicator and bubble. */ |
| 433 .controlled-setting-indicator { | 434 .controlled-setting-indicator { |
| 434 display: inline-block; | 435 display: inline-block; |
| 435 /* Establish a containing block for absolutely positioning the bubble. */ | 436 /* Establish a containing block for absolutely positioning the bubble. */ |
| 436 position: relative; | 437 position: relative; |
| 437 vertical-align: text-bottom; | 438 vertical-align: text-bottom; |
| 438 } | 439 } |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 545 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 545 } | 546 } |
| 546 | 547 |
| 547 html[dir='rtl'] .controlled-setting-bubble-text { | 548 html[dir='rtl'] .controlled-setting-bubble-text { |
| 548 background-position: right top; | 549 background-position: right top; |
| 549 } | 550 } |
| 550 | 551 |
| 551 .controlled-setting-bubble-action { | 552 .controlled-setting-bubble-action { |
| 552 padding: 0 !important; | 553 padding: 0 !important; |
| 553 } | 554 } |
| OLD | NEW |