skyeyesystem/frontend/Skyeye-sys-ui/public/static/css/superTimeline.css
2026-01-25 16:02:00 +08:00

157 lines
2.9 KiB
CSS

.super-cesium-timeline-main {
position: relative;
left: 0;
bottom: 0;
overflow: hidden;
box-sizing: border-box;
user-select: none;
border: solid 1px var(--color-border-1);
}
.super-cesium-timeline-trackContainer {
box-sizing: border-box;
width: 100%;
overflow: hidden;
border-top: solid 1px var(--color-border-1);
position: relative;
top: 0;
left: 0;
}
.super-cesium-timeline-tracks {
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.super-cesium-timeline-needle {
position: absolute;
left: 0;
top: 20px;
bottom: 0;
width: 1px;
background: #3b4a88;
}
.super-cesium-timeline-bar {
box-sizing: border-box;
position: relative;
left: 0;
top: 0;
overflow: hidden;
cursor: pointer;
width: 100%;
height: 2.4em;
background-color: rgba(0, 0, 0, 0);
}
.super-cesium-timeline-ruler {
/* NOTE: The label and the ruler must use the same font/size */
visibility: hidden;
white-space: nowrap;
font-size: 80%;
z-index: -200;
position: absolute;
right: 0;
bottom: 0;
}
.super-cesium-timeline-highlight {
position: absolute;
bottom: 0;
left: 0;
/*background: #08f;*/
}
.super-cesium-timeline-ticLabel {
position: absolute;
top: 2px;
left: 0;
white-space: nowrap;
font-size: 80%;
color: var(--color-text-2);
display: inline-block;
display: flex;
justify-content: center;
}
.super-cesium-timeline-ticMain {
position: absolute;
bottom: 0;
left: 0;
width: 1px;
/*height: 50%;*/
height: 40%;
background: var(--color-text-3);
}
.super-cesium-timeline-ticSub {
position: absolute;
bottom: 0;
left: 0;
width: 1px;
/*height: 33%;*/
height: 30%;
background: var(--color-text-3);
}
.super-cesium-timeline-ticTiny {
position: absolute;
bottom: 0;
left: 0;
width: 1px;
/*height: 25%;*/
height: 25%;
background: var(--color-text-3);
}
.super-cesium-timeline-icon16 {
box-sizing: border-box;
display: block;
position: absolute;
/* width: 0;
height: 0; */
border-top: 16px solid #3b4a88;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
/*width: 16px;*/
/*height: 16px;*/
/*background-image: url("data/images/TimelineIcons.png");*/
/*background-repeat: no-repeat;*/
}
.super-cesium-track-description {
display: none;
position: absolute;
bottom: 0;
left: 0;
transform: translateX(-50%);
}
.super-cesium-timeline-icon16-label {
position: absolute;
left: 20px;
top: 2px;
/* bottom: 22px; */
/* transform: translateX(-50%); */
box-sizing: border-box;
padding: 0 2px;
color: rgba(38, 38, 46, 1);
background: rgba(255, 255, 255, 1);
border-radius: 2px;
font-size: 10px;
white-space: nowrap;
}
.super-cesium-timeline-bar-tooltip {
position: absolute;
left: 0;
top: 0;
background: rgba(255, 255, 255, 1);
border-radius: 2px;
padding: 0 2px;
color: rgba(38, 38, 46, 1);
font-size: 10px;
display: none;
}