2020-08-04 13:56:37 -06:00
@ keyframes isloadingspin {
2020-08-25 13:48:53 -06:00
0 % { transform : translate ( -50 % , -50 % ) rotate ( 0 deg ) ; }
100 % { transform : translate ( -50 % , -50 % ) rotate ( 360 deg ) ; }
2020-08-04 13:56:37 -06:00
}
. is-loading {
2020-08-25 13:48:53 -06:00
pointer-events : none ! important ;
position : relative ! important ;
overflow : hidden ! important ;
2020-08-04 13:56:37 -06:00
}
2023-06-14 02:01:37 -06:00
. is-loading > * {
opacity : 0 . 3 ;
}
2020-11-10 11:28:07 -07:00
. is-loading :: after {
2020-08-25 13:48:53 -06:00
content : "" ;
position : absolute ;
display : block ;
left : 50 % ;
top : 50 % ;
2023-06-28 22:16:04 -06:00
height : min ( 4em , 66 . 6 % ) ;
2024-03-14 16:04:33 -06:00
width : fit-content ; /* compat: safari - https://bugs.webkit.org/show_bug.cgi?id=267625 */
2023-06-28 22:16:04 -06:00
aspect-ratio : 1 ;
2020-08-25 13:48:53 -06:00
transform : translate ( -50 % , -50 % ) ;
2024-01-27 05:27:37 -07:00
animation : isloadingspin 1000ms infinite linear ;
2020-08-25 13:48:53 -06:00
border-width : 4px ;
border-style : solid ;
2022-10-12 10:26:27 -06:00
border-color : var ( --color-secondary ) var ( --color-secondary ) var ( --color-secondary-dark-8 ) var ( --color-secondary-dark-8 ) ;
2023-08-28 13:43:59 -06:00
border-radius : var ( --border-radius-circle ) ;
2020-08-04 13:56:37 -06:00
}
2023-06-14 02:01:37 -06:00
. is-loading . small-loading-icon :: after {
border-width : 2px ;
}
2023-06-28 22:16:04 -06:00
/* for single form button, the loading state should be on the button, but not go semi-transparent, just replace the text on the button with the loader. */
form . single-button-form . is-loading > * {
opacity : 1 ;
}
form . single-button-form . is-loading . button {
color : transparent ;
}
2021-05-07 02:43:41 -06:00
. markup pre . is-loading ,
2023-05-29 06:10:00 -06:00
. editor-loading . is-loading ,
. pdf-content . is-loading {
2022-02-15 20:28:29 -07:00
height : var ( --height-loading ) ;
2020-08-04 13:56:37 -06:00
}
2021-11-16 01:16:05 -07:00
2023-06-19 02:00:18 -06:00
. markup . is-loading > * {
visibility : hidden ;
}
. markup . is-loading {
color : transparent ;
background : transparent ;
}
2023-06-14 02:01:37 -06:00
/* TODO: not needed, use "is-loading small-loading-icon" instead */
2022-09-13 10:33:37 -06:00
code . language-math . is-loading :: after {
padding : 0 ;
border-width : 2px ;
width : 1 . 25rem ;
height : 1 . 25rem ;
}
2021-11-16 01:16:05 -07:00
@ keyframes fadein {
0 % {
opacity : 0 ;
}
100 % {
opacity : 1 ;
}
}
@ keyframes fadeout {
0 % {
opacity : 1 ;
}
100 % {
opacity : 0 ;
}
}
2022-05-06 23:35:12 -06:00
@ keyframes pulse {
0 % {
transform : scale ( 1 ) ;
}
50 % {
transform : scale ( 1 . 8 ) ;
}
100 % {
transform : scale ( 1 ) ;
}
}
. pulse {
animation : pulse 2s linear ;
}
2023-08-16 16:12:40 -06:00
2023-08-28 17:49:21 -06:00
. ui . modal ,
. ui . dimmer . transition {
2023-08-16 16:12:40 -06:00
animation-name : fadein ;
2023-08-28 17:49:21 -06:00
animation-duration : 100ms ;
2023-08-16 16:12:40 -06:00
animation-timing-function : ease-in-out ;
}