File tree Expand file tree Collapse file tree 2 files changed +34
-3
lines changed
Expand file tree Collapse file tree 2 files changed +34
-3
lines changed Original file line number Diff line number Diff line change 4949 v-if =" showText"
5050 class =" annotation-textfield"
5151 :label =" t('annotation.text')"
52- v-model.lazy =" props.annotation.text"
52+ v-model =" props.annotation.text"
5353 ></s-text-field >
5454 </Transition >
5555 </div >
Original file line number Diff line number Diff line change 66 slot =" trigger"
77 @click =" emitter.emit('require-full-update', 'manual')"
88 >
9- <SIconRefresh />
9+ <SIconRefresh class = " spin " />
1010 </s-icon-button >
1111 {{ t("buttons.reset") }}
1212 </s-tooltip >
1313 <s-tooltip align =" right" v-if =" errorMsg !== undefined" >
1414 <s-icon-button slot =" trigger" style =" color : var (--s-color-warning )" >
15- <SIconWarn />
15+ <SIconWarn class = " bouncein " />
1616 </s-icon-button >
1717 <pre class =" tooltipMsgPre" >{{ errorMsg }}</pre >
1818 </s-tooltip >
@@ -158,4 +158,35 @@ s-page.dark #graphRender {
158158#graphRender .title {
159159 font-weight : bold ;
160160}
161+
162+ s-icon .spin {
163+ animation : rotate var (--s-motion-duration-medium4 )
164+ var (--s-motion-easing-emphasized );
165+ }
166+
167+ s-icon .bouncein {
168+ animation : bouncein var (--s-motion-duration-medium4 )
169+ var (--s-motion-easing-emphasized );
170+ }
171+
172+ @keyframes rotate {
173+ 0% {
174+ transform : rotate (0deg );
175+ }
176+ 100% {
177+ transform : rotate (360deg );
178+ }
179+ }
180+
181+ @keyframes bouncein {
182+ 0% {
183+ transform : scale (1 );
184+ }
185+ 50% {
186+ transform : scale (1.3 );
187+ }
188+ 100% {
189+ transform : scale (1 );
190+ }
191+ }
161192 </style >
You can’t perform that action at this time.
0 commit comments