| // Copyright (C) 2026 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| .pf-pmu-record-setting { |
| .pf-pmu-selector { |
| display: grid; |
| grid-template-columns: 1fr 200px; |
| grid-template-rows: auto auto; |
| grid-template-areas: |
| "hdr hdr" |
| "descr dropdown-select"; |
| row-gap: 2px; |
| margin-top: var(--record-section-padding); |
| |
| > header { |
| grid-area: hdr; |
| color: var(--record-text-color); |
| font-size: 14px; |
| border-bottom: unset; |
| } |
| |
| > header.pf-pmu-selector__description { |
| grid-area: descr; |
| color: var(--pf-color-text-muted); |
| font-size: 12px; |
| line-height: 20px; |
| margin-right: 2em; |
| } |
| |
| > select, |
| > .pf-text-input, |
| > button { |
| grid-area: dropdown-select; |
| align-self: start; |
| } |
| } |
| |
| .pf-pmu-tab-content { |
| padding-left: var(--record-section-padding); |
| padding-right: var(--record-section-padding); |
| |
| > header > h1 { |
| color: var(--record-text-color); |
| font-size: 16px; |
| font-weight: 600; |
| margin: 24px 0 8px; |
| } |
| } |
| } |