File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,43 @@ export default {
83
83
border-bottom: 0;
84
84
margin-left: -10px;
85
85
margin-bottom: -10px;
86
+ }
87
+ .loading-indicator {
88
+ top: unset;
89
+ bottom: 0.5em !important;
90
+ left: 0.5em !important;
91
+ height: 22px;
92
+ pointer-events: none !important;
93
+ }
94
+
95
+ .loading-indicator.hidden {
96
+ display: none;
97
+ }
98
+
99
+ @keyframes spinner {
100
+ to {
101
+ transform: rotate(360deg);
102
+ }
103
+ }
104
+
105
+ .spinner:after {
106
+ content: "";
107
+ box-sizing: border-box;
108
+ position: absolute;
109
+ top: 50%;
110
+ left: 50%;
111
+ width: 18px;
112
+ height: 18px;
113
+ margin-top: -9px;
114
+ margin-left: -9px;
115
+ border-radius: 50%;
116
+ border: 5px solid rgba(180, 180, 180, 0.6);
117
+ border-top-color: rgba(0, 0, 0, 0.6);
118
+ animation: spinner 0.6s linear infinite;
119
+ }
120
+ .theme--dark .spinner:after {
121
+ border: 5px solid rgba(180, 180, 180, 0.6);
122
+ border-top-color: rgba(255, 255, 255, 0.6);
86
123
}` ;
87
124
if (' mapContainer' in this .$parent .$refs && this .$parent .$refs .mapContainer .shadowRoot ) {
88
125
this .$parent .$refs .mapContainer .shadowRoot .appendChild (style);
You can’t perform that action at this time.
0 commit comments