| /* 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://resources/cr_elements/cr_icons_lit.css.js |
| * #import=chrome://resources/cr_elements/cr_hidden_style_lit.css.js |
| * #import=chrome://resources/cr_elements/cr_nav_menu_item_style_lit.css.js |
| * #import=chrome://resources/cr_elements/cr_shared_style_lit.css.js |
| * #import=chrome://resources/cr_elements/cr_shared_vars.css.js |
| * #import=./shared_vars.css.js |
| * #include=cr-icons-lit cr-hidden-style-lit cr-nav-menu-item-style-lit cr-shared-style-lit |
| * #css_wrapper_metadata_end */ |
| |
| :host { |
| --sidebar-inactive-color: #5a5a5a; |
| color: var(--sidebar-inactive-color); |
| display: flex; |
| flex-direction: column; |
| height: 100%; |
| overflow-x: hidden; |
| overflow-y: auto; |
| width: var(--sidebar-width); |
| } |
| |
| @media (prefers-color-scheme: dark) { |
| :host { |
| --sidebar-inactive-color: var(--cr-primary-text-color); |
| } |
| } |
| |
| #sectionMenu { |
| padding-top: 8px; |
| } |
| |
| .separator { |
| border-top: var(--cr-separator-line); |
| margin: 8px 0; |
| } |
| |
| #moreExtensions { |
| align-items: center; |
| display: flex; |
| margin-bottom: 8px; |
| } |
| |
| #web-store-icon { |
| --iron-icon-height: 24px; |
| --iron-icon-width: 24px; |
| margin-inline-end: 18px; |
| margin-inline-start: -2px; |
| } |
| |
| .cr-secondary-text { |
| line-height: 19px; |
| margin-inline-end: 10px; |
| } |
| |
| #discover-more-text a { |
| color: var(--cr-link-color); |
| } |