Agriculture-front-end/dist/Cesium/Widgets/Animation/Animation.css

177 lines
3.6 KiB
CSS
Raw Normal View History

2023-04-23 09:41:12 +08:00
.cesium-animation-theme {
2023-09-11 21:56:39 +08:00
visibility: hidden;
display: block;
position: absolute;
z-index: -100;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeNormal {
2023-09-11 21:56:39 +08:00
color: #222;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeHover {
2023-09-11 21:56:39 +08:00
color: #4488B0;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeSelect {
2023-09-11 21:56:39 +08:00
color: #242;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeDisabled {
2023-09-11 21:56:39 +08:00
color: #333;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeKnob {
2023-09-11 21:56:39 +08:00
color: #222;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themePointer {
2023-09-11 21:56:39 +08:00
color: #2E2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeSwoosh {
2023-09-11 21:56:39 +08:00
color: #8AC;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-themeSwooshHover {
2023-09-11 21:56:39 +08:00
color: #AEF;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-svgText {
2023-09-11 21:56:39 +08:00
fill: #edffff;
font-family: Sans-Serif;
font-size: 15px;
text-anchor: middle;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-blank {
2023-09-11 21:56:39 +08:00
fill: #000;
fill-opacity: 0.01; /* This must be clickable, so it can't be 'fill: none'. */
stroke: none;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton {
2023-09-11 21:56:39 +08:00
cursor: pointer;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton .cesium-animation-buttonGlow {
2023-09-11 21:56:39 +08:00
fill: #fff;
stroke: none;
/* Widget will add: filter: url(#animation_blurred); */
display: none;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton:hover .cesium-animation-buttonGlow {
2023-09-11 21:56:39 +08:00
display: block;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton .cesium-animation-buttonPath {
2023-09-11 21:56:39 +08:00
fill: #edffff;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton .cesium-animation-buttonMain {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_buttonNormal); */
stroke: #444;
stroke-width: 1.2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton:hover .cesium-animation-buttonMain {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_buttonHovered); */
stroke: #AEF;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-rectButton:active .cesium-animation-buttonMain {
2023-09-11 21:56:39 +08:00
fill: #ABD6FF;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonDisabled {
2023-09-11 21:56:39 +08:00
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonDisabled .cesium-animation-buttonMain {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_buttonDisabled); */
stroke: #555;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonDisabled .cesium-animation-buttonPath {
2023-09-11 21:56:39 +08:00
fill: #818181;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonDisabled .cesium-animation-buttonGlow {
2023-09-11 21:56:39 +08:00
display: none;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonToggled .cesium-animation-buttonGlow {
2023-09-11 21:56:39 +08:00
display: block;
fill: #2E2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonToggled .cesium-animation-buttonMain {
2023-09-11 21:56:39 +08:00
stroke: #2E2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow {
2023-09-11 21:56:39 +08:00
fill: #fff;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-buttonToggled:hover .cesium-animation-buttonMain {
2023-09-11 21:56:39 +08:00
stroke: #2E2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-shuttleRingG {
2023-09-11 21:56:39 +08:00
cursor: pointer;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
/* Widget will add:
.cesium-animation-shuttleRingG .cesium-animation-shuttleRingSwoosh {
fill: url(#animation_shuttleRingSwooshGradient);
}
.cesium-animation-shuttleRingG:hover .cesium-animation-shuttleRingSwoosh {
fill: url(#animation_shuttleRingSwooshHovered);
}
*/
2023-04-23 09:41:12 +08:00
.cesium-animation-shuttleRingPointer {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_shuttleRingPointerGradient); */
cursor: pointer;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-shuttleRingPausePointer {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_shuttleRingPointerPaused); */
cursor: pointer;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-shuttleRingBack {
2023-09-11 21:56:39 +08:00
fill: #181818;
fill-opacity: 0.8;
stroke: #333;
stroke-width: 1.2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-shuttleRingSwoosh line {
2023-09-11 21:56:39 +08:00
stroke: #8AC;
stroke-width: 3;
stroke-opacity: 0.2;
stroke-linecap: round;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-knobOuter {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_knobOuter); */
cursor: pointer;
stroke: #444;
stroke-width: 1.2;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-animation-knobInner {
2023-09-11 21:56:39 +08:00
/* Widget will add: fill: url(#animation_knobInner); */
cursor: pointer;
2023-04-23 09:41:12 +08:00
}