|
123456789101112131415161718192021222324252627282930313233 |
- .metrics-tooltip {
- width: 172px;
- padding-left: 20px;
- background-color: white;
- font-size: 12px;
- }
-
- .metrics-tooltip .y-text {
- position: absolute;
- left: 10px;
- top: 10px;
- }
-
- .metrics-tooltip .x-text {
- position: absolute;
- left: 10px;
- top: 66px;
- }
-
- .metrics-tooltip .title {
- color: #575757;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: 3px;
- }
-
- .metrics-tooltip .value {
- color: #1d1d20;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
|