forked from bennet0496/nextcloud_attachments
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.css
More file actions
35 lines (30 loc) · 643 Bytes
/
client.css
File metadata and controls
35 lines (30 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* From https://dev.to/dcodeyt/create-a-button-with-a-loading-spinner-in-html-css-1c0h
*/
.button--loading .button__text {
visibility: hidden;
opacity: 0;
}
.button--loading::after {
content: "";
display: block;
position: relative;
width: 16px;
height: 16px;
margin: auto;
border: 4px solid transparent;
border-top-color: #ffffff;
border-radius: 50%;
animation: button-loading-spinner 1s ease infinite;
}
@keyframes button-loading-spinner {
from {
transform: rotate(0turn);
}
to {
transform: rotate(1turn);
}
}
div.hint {
display: none !important;
}