Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 11:52:54 +01:00
Css updates
Dieser Commit ist enthalten in:
Ursprung
f6251ace06
Commit
18e93a84eb
1 geänderte Dateien mit 34 neuen und 0 gelöschten Zeilen
|
@ -102,11 +102,17 @@
|
|||
padding: 6px 12px;
|
||||
cursor: pointer;
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
|
||||
&:hover, &.selected {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
label {
|
||||
flex: 1 1 auto;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
i {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
@ -126,3 +132,31 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
|
|
Laden …
In neuem Issue referenzieren