| * { |
| box-sizing: border-box; |
| font-size: 12px; |
| } |
| |
| .header { |
| background-color: var(--toolbar-bg-color, #f3f3f3); |
| border-bottom: var(--divider-border, 1px solid #d0d0d0); |
| line-height: 1.6; |
| overflow: hidden; |
| padding: 0 5px; |
| white-space: nowrap; |
| } |
| |
| .header::marker { |
| color: rgb(110 110 110); |
| font-size: 11px; |
| line-height: 1; |
| } |
| |
| .header:focus { |
| background-color: var(--focus-bg-color); |
| } |
| |
| .content-section { |
| padding: 16px; |
| border-bottom: var(--divider-border, 1px solid #d0d0d0); |
| overflow-x: hidden; |
| } |
| |
| .content-section-title { |
| font-size: 12px; |
| font-weight: 500; |
| line-height: 1.1; |
| margin: 0; |
| padding: 0; |
| } |
| |
| .checkbox-settings { |
| margin-top: 8px; |
| display: grid; |
| grid-template-columns: 1fr; |
| gap: 5px; |
| } |
| |
| .checkbox-label { |
| display: flex; |
| flex-direction: row; |
| align-items: center; |
| } |
| |
| .checkbox-settings .checkbox-label { |
| margin-bottom: 8px; |
| } |
| |
| .checkbox-settings .checkbox-label:last-child { |
| margin-bottom: 0; |
| } |
| |
| .checkbox-label input { |
| margin: 0 6px 0 0; |
| padding: 0; |
| flex: none; |
| } |
| |
| .checkbox-label input:focus { |
| outline: auto 5px -webkit-focus-ring-color; |
| } |
| |
| .checkbox-label > span { |
| white-space: nowrap; |
| text-overflow: ellipsis; |
| overflow: hidden; |
| } |
| |
| .select-settings { |
| margin-top: 16px; |
| } |
| |
| .select-label { |
| display: flex; |
| flex-direction: column; |
| } |
| |
| .select-label span { |
| margin-bottom: 4px; |
| } |
| |
| .elements { |
| margin-top: 12px; |
| color: var(--dom-tag-name-color); |
| display: grid; |
| grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); |
| gap: 8px; |
| } |
| |
| .element { |
| display: flex; |
| flex-direction: row; |
| align-items: center; |
| } |
| |
| .show-element { |
| margin: 0 0 0 8px; |
| padding: 0; |
| background: none; |
| border: none; |
| -webkit-mask-image: url(Images/ic_show_node_16x16.svg); |
| background-color: #333; |
| width: 16px; |
| height: 16px; |
| display: block; |
| cursor: pointer; |
| flex: none; |
| } |
| |
| .show-element:focus, |
| .show-element:hover { |
| background-color: #6e6e6e; |
| } |
| |
| .chrome-select { |
| min-width: 0; |
| max-width: 150px; |
| } |
| |
| :host-context(.-theme-with-dark-background) .show-element { |
| background-color: rgb(204 204 204); |
| } |
| |
| :host-context(.-theme-with-dark-background) .show-element:focus, |
| :host-context(.-theme-with-dark-background) .show-element:hover { |
| background-color: #6e6e6e; |
| } |
| |
| .color-picker { |
| visibility: hidden; |
| } |
| |
| .color-picker-label { |
| border: 1px solid rgb(128 128 128 / 60%); |
| cursor: default; |
| display: inline-block; |
| flex: none; |
| height: 10px; |
| margin: 0 0 0 8px; |
| width: 10px; |
| } |
| |
| .color-picker-label:hover, |
| .color-picker-label:focus { |
| border: 1px solid var(--accent-color-hover); |
| transform: scale(1.2); |
| } |
| |
| .node-text-container { |
| line-height: 16px; |
| padding: 0 0.5ex; |
| border-radius: 5px; |
| } |
| |
| .node-text-container:hover { |
| background-color: var(--item-hover-color); |
| } |