Spaces:
Paused
Paused
| /* | |
| * SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| * SPDX-License-Identifier: Apache-2.0 | |
| * | |
| * 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. | |
| */ | |
| .promptContainer { | |
| position: relative; | |
| width: 100%; | |
| max-width: 42rem; | |
| } | |
| .promptBody { | |
| position: relative; | |
| width: 100%; | |
| } | |
| .promptTextarea { | |
| width: 100%; | |
| padding: 1rem; | |
| padding-right: 3rem; | |
| background-color: rgb(243 244 246); | |
| border-radius: 1rem; | |
| border: none; | |
| resize: none; | |
| overflow: hidden; | |
| min-height: 1.5rem; | |
| max-height: 200px; | |
| color: rgb(17 24 39); | |
| transition: all 0.2s ease-in-out; | |
| line-height: 1.5; | |
| } | |
| .promptTextarea:hover { | |
| background-color: rgb(229 231 235); | |
| box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1); | |
| } | |
| .promptTextarea:focus { | |
| outline: none; | |
| box-shadow: 0 0 0 2px rgb(209 213 219); | |
| background-color: rgb(243 244 246); | |
| } | |
| .promptTextarea::placeholder { | |
| color: rgb(107 114 128); | |
| } | |
| .promptTextarea.disabled { | |
| background-color: rgb(229 231 235); | |
| color: rgb(156 163 175); | |
| cursor: not-allowed; | |
| } | |
| .promptTextarea.disabled:hover { | |
| background-color: rgb(229 231 235); | |
| box-shadow: none; | |
| } | |
| .promptBarFooter { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| margin-top: 0.5rem; | |
| width: 100%; | |
| } | |
| .shortcutHint { | |
| position: relative; | |
| font-size: 0.75rem; | |
| color: rgb(107 114 128); | |
| display: flex; | |
| align-items: center; | |
| gap: 0.25rem; | |
| opacity: 0; | |
| transition: opacity 0.2s ease-in-out; | |
| } | |
| .shortcutHint.visible { | |
| opacity: 1; | |
| } | |