| /* Copyright 2024 The Chromium Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. */ |
| |
| /* #css_wrapper_metadata_start |
| * #type=style-lit |
| * #import=chrome://customize-chrome-side-panel.top-chrome/shared/sp_shared_style_lit.css.js |
| * #scheme=relative |
| * #include=sp-shared-style-lit |
| * #css_wrapper_metadata_end */ |
| |
| #showToggleContainer { |
| align-items: center; |
| display: flex; |
| justify-content: space-between; |
| margin: 0; |
| padding: var(--sp-card-padding); |
| } |
| |
| #showToggleContainer:hover { |
| background-color: var(--cr-hover-background-color); |
| cursor: pointer; |
| } |
| |
| #showToggleContainer:focus { |
| background-color: var(--cr-menu-background-focus-color); |
| outline: none; |
| } |
| |
| #showToggleTitle { |
| font-size: inherit; |
| line-height: inherit; |
| } |
| |
| #options { |
| align-items: center; |
| display: flex; |
| line-height: inherit; |
| margin: 0; |
| } |
| |
| cr-collapse { |
| --iron-collapse-transition-duration: 300ms; |
| width: 100%; |
| } |
| |
| cr-radio-group { |
| --cr-radio-group-item-padding: 0px; |
| width: 100%; |
| } |
| |
| .option { |
| display: flex; |
| align-items: flex-start; |
| gap: 16px; |
| padding: var(--sp-card-padding); |
| padding-inline-start: 32px; |
| } |
| |
| .option:hover { |
| background-color: var(--cr-hover-background-color); |
| cursor: pointer; |
| } |
| |
| .option:focus { |
| background-color: var(--cr-menu-background-focus-color); |
| outline: none; |
| } |
| |
| /** |
| * Members of this class are accessible text not meant to be seen by the user. |
| * Screen readers ignore elements styled with display:none or |
| * visibility:hidden so we hide it this way instead. |
| */ |
| .button-aria-describedby { |
| clip: rect(0,0,0,0); |
| display: block; |
| position: fixed; |
| } |
| |
| customize-chrome-button-label { |
| flex: 1; |
| } |
| |
| cr-radio-button { |
| gap: 0; |
| } |
| |
| .sp-hr { |
| margin: var(--sp-card-block-padding) var(--sp-card-inline-padding); |
| width: auto; |
| } |