1
0
Fork 0
discourse-custom-wizard-unl.../assets/stylesheets/wizard/wizard_custom.scss
2017-11-22 18:35:43 +08:00

231 Zeilen
3,3 KiB
SCSS

.custom-wizard {
background-color: initial;
.wizard-step-contents {
position: relative;
}
.wizard-step-description {
line-height: 1.7;
ul {
margin: 0;
padding: 0;
list-style: none;
}
i {
margin-right: 7px;
}
.image-container {
margin: 50px 0;
padding: 0 40px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
&.group {
padding: 0;
margin: 0;
width: 140px;
height: 140px;
}
}
img.large {
width: 250;
padding: 25px;;
}
img.small {
width: 120;
padding: 10px;
}
img.x-small {
width: 60px;
height: 60px;
padding: 3px;
}
label {
display: block;
text-align: center;
}
.tip {
position: absolute;
bottom: 0;
font-style: italic;
img {
width: 30px;
height: 30px;
vertical-align: middle;
}
}
}
.wizard-column .wizard-step-banner {
width: initial;
max-width: 660px;
max-height: 300px;
}
.control-group {
display: inline-block;
vertical-align: top;
margin-right: 20px;
.controls {
margin: 5px 0;
}
input {
width: 200px;
line-height: 24px;
}
ul {
padding: 0;
}
}
.wizard-step-form .wizard-btn {
display: block;
margin: 10px 0;
}
.wizard-column .wizard-field .input-area {
margin: 0.5em 0;
}
img.emoji {
width: 20px;
height: 20px;
vertical-align: middle;
}
.combo-box ul {
padding: 0;
}
.wizard-buttons > a, .wizard-buttons > button {
display: inline-block;
vertical-align: middle;
}
}
.step-message {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 0;
line-height: 0;
text-align: center;
transition: all .2s;
z-index: 2;
&.success {
height: 60px;
line-height: 60px;
background-color: #009900;
color: #ffffff;
}
&.error {
height: 60px;
line-height: 60px;
background-color: #e45735;
color: #ffffff;
}
}
.p-list-box {
max-width: 550px;
position: relative;
margin: 10px 0;
.spinner {
position: absolute;
right: 50%;
top: 50%;
}
.p-text {
margin-bottom: 5px;
}
ul {
border: 1px solid #e9e9e9;
padding: 0;
margin: 0;
list-style: none;
height: 95px;
overflow: scroll;
}
li {
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;
}
}
.no-results {
padding: 15px;
}
.default {
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
position: absolute;
width: 100%;
text-align: center;
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);
}
}