2023-01-04 00:58:38 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 New Vector Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-12-15 14:00:00 +08:00
|
|
|
.tooltip {
|
2023-08-29 04:45:17 +08:00
|
|
|
background-color: var(--cpd-color-bg-subtle-secondary);
|
2021-12-15 14:00:00 +08:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-09-27 08:17:37 +08:00
|
|
|
padding: 10px;
|
2023-08-29 04:45:17 +08:00
|
|
|
color: var(--cpd-color-text-primary);
|
2021-12-15 14:00:00 +08:00
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 135px;
|
|
|
|
width: max-content;
|
2022-12-10 03:25:02 +08:00
|
|
|
font-size: var(--font-size-caption);
|
2022-09-27 08:17:37 +08:00
|
|
|
font-weight: 500;
|
2021-12-17 02:14:51 +08:00
|
|
|
text-align: center;
|
2021-12-15 14:00:00 +08:00
|
|
|
}
|