0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 15:21:11 +02:00
Dieser Commit ist enthalten in:
Angus McLeod 2017-10-25 09:23:51 +08:00
Ursprung f6251ace06
Commit 18e93a84eb

Datei anzeigen

@ -102,11 +102,17 @@
padding: 6px 12px; padding: 6px 12px;
cursor: pointer; cursor: pointer;
background-color: #fff; background-color: #fff;
display: flex;
&:hover, &.selected { &:hover, &.selected {
background-color: #eee; background-color: #eee;
} }
label {
flex: 1 1 auto;
cursor: pointer;
}
i { i {
margin-right: 5px; margin-right: 5px;
} }
@ -126,3 +132,31 @@
color: #919191; color: #919191;
} }
} }
.spinner {
margin: 20px auto 20px auto;
position: relative;
-webkit-animation: rotate-forever 1s infinite linear;
animation: rotate-forever 1s infinite linear;
height: 30px;
width: 30px;
border: 4px solid #ccc;
border-right-color: transparent;
border-radius: 50%;
&.small {
width: 10px;
height: 10px;
margin: 0;
display: inline-block;
}
}
@keyframes rotate-forever {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}