123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /*
- * Copyright (c) 2024 LangChat. TyCoding All Rights Reserved.
- *
- * Licensed under the GNU Affero General Public License, Version 3 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * https://www.gnu.org/licenses/agpl-3.0.html
- *
- * 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 'transition/index.less';
- @import 'reset.less';
- @keyframes running-line {
- to {
- stroke-dashoffset: -1000;
- }
- }
- .custom-dropdown {
- background: #27272a !important;
- .n-dropdown-option-body__label {
- color: #ffffff !important;
- }
- .n-dropdown-option:hover {
- background-color: #2d8cf0 !important;
- }
- .n-dropdown-option-body::before {
- transition: none !important;
- }
- .n-dropdown-option-body--pending::before {
- background-color: #2d8cf0 !important;
- }
- .n-dropdown-divider {
- background-color: #ffffff3b !important;
- }
- }
- .custom-popover {
- &:focus {
- outline: none !important;
- border: none !important;
- }
- background: #27272a !important;
- color: #ffffff !important;
- padding: 3px 8px !important;
- .n-popover-arrow {
- background: #27272a !important;
- }
- }
- body {
- font-family: inherit;
- }
- .robot-pin {
- .n-drawer-header {
- padding: 10px !important;
- height: 45px !important;
- font-family: inherit !important;
- font-size: 14px !important;
- .n-drawer-header__main {
- width: 100% !important;
- }
- }
- .n-drawer-body {
- .n-drawer-body-content-wrapper {
- padding: 0 !important;
- }
- }
- .n-drawer-footer {
- border: none !important;
- padding: 0.5rem !important;
- justify-content: center !important;
- }
- }
- .tips-line {
- border-bottom: 1px dashed #71717a
- }
- .hover-input {
- margin-left: 2px !important;
- background: transparent !important;
- .n-input-wrapper {
- padding-left: 4px !important;
- padding-right: 4px !important;
- }
- .n-input__border {
- border: none !important;
- }
- }
- .n-spin-container {
- width: 100% !important;
- height: 100% !important;
- }
- .n-spin-content {
- width: 100% !important;
- height: 100% !important;
- }
- .pin-label {
- font-family: Inter;
- font-style: normal;
- font-weight: 400;
- font-size: 14px;
- line-height: 16.5px;
- }
- .n-menu.n-menu--collapsed .n-menu-item-content .n-menu-item-content-header {
- opacity: 1 !important;
- }
- .custom-select {
- .n-base-selection__border {
- border: none !important;
- }
- }
- .n-slider-handle-indicator.n-slider-handle-indicator--top {
- margin-bottom: 6px !important;
- }
- .n-slider-handle-indicator {
- padding: 0 5px !important;
- }
- .model-menu {
- .n-menu-item-content-header {
- font-weight: 600 !important;
- }
- .n-menu-item-content {
- padding-left: 25px !important;
- }
- }
- .dot-bg {
- height: 100%;
- background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.13) 1.2px, transparent 0);
- background-size: 15px 15px;
- background-repeat: round;
- }
- :focus {
- outline: none;
- }
- .n-code [class^=hljs] {
- color: white ;
- }
- .min-alert {
- .n-alert__icon {
- width: 18px !important;
- height: 18px !important;
- font-size: 18px !important;
- margin: 7px 8px 0 12px !important;
- }
- .n-alert-body {
- padding-top: 6px !important;
- padding-bottom: 6px !important;
- padding-right: 6px !important;
- }
- .n-alert-body .n-alert-body__title {
- font-size: 13px !important;
- }
- }
- .n-avatar {
- background: transparent !important;
- }
|