| // Copyright (C) 2018 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. |
| |
| @import "widgets/theme"; |
| |
| @mixin omnibox-width() { |
| width: 90%; |
| max-width: 600px; |
| } |
| |
| .topbar { |
| grid-area: topbar; |
| position: relative; |
| z-index: 3; |
| overflow: visible; |
| background-color: hsl(215, 1%, 95%); |
| box-shadow: 0px 1px 2px 1px #00000026; |
| min-height: var(--topbar-height); |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| .omnibox { |
| @include omnibox-width(); |
| @include transition(0.25s); |
| display: grid; |
| grid-template-areas: "icon input stepthrough"; |
| grid-template-columns: 34px auto max-content; |
| border-radius: $pf-border-radius; |
| background-color: white; |
| border: solid 1px transparent; |
| &:focus-within { |
| border-color: $pf-colour-thin-border; |
| box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2); |
| } |
| line-height: 34px; |
| &:before { |
| @include material-icon("search"); |
| margin: 5px; |
| color: #aaa; |
| grid-area: icon; |
| } |
| input { |
| grid-area: input; |
| border: 0; |
| padding: 0 10px; |
| font-size: 18px; |
| font-family: "Roboto Condensed", sans-serif; |
| font-weight: 300; |
| color: #666; |
| background-color: transparent; |
| &:focus { |
| outline: none; |
| } |
| &::placeholder { |
| color: #b4b7ba; |
| font-family: "Roboto Condensed", sans-serif; |
| font-weight: 400; |
| } |
| } |
| &.query-mode { |
| background-color: #111; |
| border-radius: 0; |
| width: 100%; |
| max-width: 100%; |
| margin-top: 0; |
| border-left: 1px solid #404854; |
| height: var(--topbar-height); |
| input { |
| color: #9ddc67; |
| font-family: var(--monospace-font); |
| padding-left: 0; |
| } |
| &:before { |
| content: "attach_money"; |
| color: #9ddc67; |
| font-size: 26px; |
| padding-top: 5px; |
| } |
| } |
| &.command-mode { |
| &:before { |
| @include material-icon("chevron_right"); |
| margin: 5px; |
| color: #aaa; |
| grid-area: icon; |
| } |
| } |
| &.prompt-mode { |
| &:before { |
| @include material-icon("question_mark"); |
| margin: 5px; |
| color: #aaa; |
| grid-area: icon; |
| } |
| } |
| &.message-mode { |
| background-color: hsl(0, 0%, 89%); |
| border-radius: $pf-border-radius; |
| input::placeholder { |
| font-weight: 400; |
| font-family: var(--monospace-font); |
| color: hsl(213, 40%, 50%); |
| } |
| &:before { |
| content: "info"; |
| } |
| } |
| .stepthrough { |
| grid-area: stepthrough; |
| display: flex; |
| font: inherit; |
| font-size: 14px; |
| font-family: "Roboto Condensed", sans-serif; |
| font-weight: 300; |
| color: #aaa; |
| .current { |
| padding-right: 10px; |
| } |
| .material-icons.left { |
| border-right: rgb(218, 217, 217) solid 1px; |
| } |
| } |
| } |
| .progress { |
| position: absolute; |
| bottom: 0; |
| height: 1px; |
| width: 100%; |
| } |
| .progress-anim { |
| &:before { |
| content: ""; |
| position: absolute; |
| background-color: hsl(219, 50%, 50%); |
| top: 0; |
| left: 0; |
| bottom: 0; |
| will-change: left, right; |
| animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) |
| infinite; |
| } |
| &:after { |
| content: ""; |
| position: absolute; |
| background-color: hsl(219, 50%, 50%); |
| top: 0; |
| left: 0; |
| bottom: 0; |
| will-change: left, right; |
| animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) |
| infinite; |
| animation-delay: 1.15s; |
| } |
| } |
| @keyframes indeterminate { |
| 0% { |
| left: -35%; |
| right: 100%; |
| } |
| 60% { |
| left: 100%; |
| right: -90%; |
| } |
| 100% { |
| left: 100%; |
| right: -90%; |
| } |
| } |
| @keyframes indeterminate-short { |
| 0% { |
| left: -35%; |
| right: 100%; |
| } |
| 60% { |
| left: 100%; |
| right: -90%; |
| } |
| 100% { |
| left: 100%; |
| right: -90%; |
| } |
| } |
| |
| .notification-btn { |
| @include transition(0.25s); |
| font-size: 16px; |
| padding: 8px 10px; |
| margin: 0 10px; |
| border-radius: 2px; |
| background: hsl(210, 10%, 73%); |
| &:hover { |
| background: hsl(210, 10%, 83%); |
| } |
| |
| &.preferred { |
| background: hsl(210, 98%, 53%); |
| color: #fff; |
| &:hover { |
| background: hsl(210, 98%, 63%); |
| } |
| } |
| } |
| } |
| |
| .error-box { |
| position: absolute; |
| right: 10px; |
| display: flex; |
| align-items: center; |
| .error { |
| color: #ef6c00; |
| &:hover { |
| cursor: pointer; |
| } |
| } |
| .popup-trigger { |
| width: 0px; |
| height: 0px; |
| } |
| } |
| |
| .error-popup { |
| width: 100px; |
| font-size: 14px; |
| font-family: "Roboto Condensed", sans-serif; |
| } |
| |
| .hint-text { |
| padding-bottom: 5px; |
| } |
| |
| .hint-dismiss-button { |
| color: #f4fafb; |
| background-color: #19212b; |
| width: fit-content; |
| padding: 3px; |
| border-radius: 3px; |
| } |
| |
| .hide-sidebar { |
| .query-mode { |
| padding-left: 48px; |
| } |
| } |
| |
| .pf-omnibox-dropdown { |
| font-family: $pf-font; |
| |
| .pf-keycap { |
| font-size: smaller; |
| } |
| |
| ul { |
| padding: 0; |
| margin: 0; |
| } |
| |
| .pf-omnibox-options-container { |
| max-height: 450px; |
| overflow-y: auto; |
| |
| .pf-omnibox-section-header { |
| font-size: smaller; |
| margin: 4px 0; |
| border-bottom: solid 1px $pf-colour-thin-border; |
| } |
| |
| li { |
| list-style-type: none; |
| display: flex; |
| gap: 4px; |
| user-select: none; |
| font-family: $pf-font; |
| cursor: pointer; |
| padding: 4px 8px; |
| border-radius: $pf-border-radius; |
| align-items: center; |
| font-weight: lighter; |
| line-height: 1.2; |
| |
| .pf-title { |
| flex-grow: 1; |
| } |
| |
| .pf-tag { |
| border-radius: 10px; |
| background: $pf-minimal-background-hover; |
| padding: 0 6px; |
| font-size: smaller; |
| } |
| |
| &:hover { |
| background-color: $pf-minimal-background-hover; |
| } |
| |
| &.pf-highlighted { |
| background-color: $pf-primary-background; |
| color: white; |
| } |
| } |
| } |
| |
| .pf-omnibox-dropdown-footer { |
| display: flex; |
| justify-content: center; |
| padding: 8px 0 6px 0; |
| gap: 12px; |
| border-top: solid 1px $pf-colour-thin-border; |
| |
| section { |
| display: flex; |
| justify-content: center; |
| gap: 4px; |
| |
| .pf-keycap { |
| margin: 0 2px; |
| } |
| } |
| } |
| } |