| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You 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. |
| * |
| */ |
| |
| .h-100 { |
| height: 100%; |
| } |
| |
| .h-40 { |
| height: 40px; |
| } |
| |
| .p-0 { |
| padding: 0; |
| } |
| |
| .p-20 { |
| padding: 20px; |
| } |
| |
| .m-0 { |
| margin: 0; |
| } |
| |
| .box { |
| display: flex; |
| flex-flow: column; |
| max-height: 100%; |
| } |
| |
| .box .row.content { |
| flex: 1 1 auto; |
| } |
| |
| .box .row.header { |
| flex: 0 1 auto; |
| } |
| |
| .widget-header { |
| padding-left: 15px; |
| } |
| |
| ::-webkit-scrollbar-track { |
| background: rgba(0, 0, 0, 0.15); |
| } |
| |
| ::-webkit-scrollbar { |
| width: 15px; |
| height: 15px; |
| } |
| |
| ::-webkit-scrollbar-thumb { |
| background: rgba(0, 0, 0, 0.25); |
| } |
| |
| ::-webkit-scrollbar-thumb:hover { |
| background: rgba(0, 0, 0, 0.35); |
| } |
| |
| .h-0 { |
| height: 0px; |
| } |
| |
| .mw-100 { |
| max-width: 100%; |
| width: 100%; |
| overflow-x: hidden; |
| overflow-y: hidden; |
| } |
| |
| .default-text { |
| padding: 10px; |
| text-align: center; |
| } |
| |
| .warning-icon { |
| color: var(--color-warn); |
| font-size: var(--font-size-3xl); |
| } |