| // Copyright (C) 2025 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-query-page { |
| height: 100%; |
| font-family: var(--pf-font-compact); |
| position: relative; |
| |
| &__results { |
| max-height: 500px; |
| } |
| |
| &__results-summary { |
| margin-left: 0.2em; |
| } |
| |
| &__toolbar { |
| border-bottom: 1px solid var(--pf-color-border); |
| } |
| |
| .pf-editor { |
| contain: strict; // See b/388579546 |
| min-height: 3rem; |
| } |
| |
| &__hotkeys { |
| display: inline-flex; |
| color: gray; |
| font-style: italic; |
| font-size: smaller; |
| user-select: none; |
| } |
| |
| &__query-error { |
| padding: 20px 10px; |
| color: var(--pf-color-danger); |
| font-family: var(--pf-font-monospace); |
| font-size: 12px; |
| font-weight: 300; |
| white-space: pre; |
| } |
| } |