1
0
Fork 0
discourse-custom-wizard-unl.../assets/stylesheets/wizard/wizard_custom.scss

205 Zeilen
2,9 KiB
SCSS

2017-10-13 15:02:34 +02:00
.custom-wizard {
background-color: initial;
.wizard-step-description {
line-height: 1.7;
2017-10-17 09:18:53 +02:00
ul {
margin: 0;
padding: 0;
list-style: none;
}
i {
margin-right: 7px;
}
2017-11-06 10:06:53 +01:00
.image-container {
margin: 10px 0;
}
2017-11-06 10:06:53 +01:00
img.large {
width: 250;
padding: 25px;;
}
img.small {
width: 120;
padding: 10px;
}
2017-10-13 15:02:34 +02:00
}
.wizard-column .wizard-step-banner {
width: initial;
max-width: 660px;
2017-11-06 10:06:53 +01:00
max-height: 300px;
2017-10-13 15:02:34 +02:00
}
.control-group {
display: inline-block;
vertical-align: top;
margin-right: 20px;
.controls {
margin: 5px 0;
}
input {
width: 200px;
line-height: 24px;
}
2017-10-22 05:37:58 +02:00
ul {
padding: 0;
}
2017-10-13 15:02:34 +02:00
}
.wizard-step-form .wizard-btn {
display: block;
margin: 10px 0;
}
.wizard-column .wizard-field .input-area {
margin: 0.5em 0;
}
2017-11-02 03:22:13 +01:00
img.emoji {
width: 20px;
height: 20px;
vertical-align: middle;
}
2017-11-08 09:52:50 +01:00
.combo-box ul {
padding: 0;
}
2017-11-09 03:50:48 +01:00
.wizard-buttons > a, .wizard-buttons > button {
display: inline-block;
vertical-align: middle;
}
2017-10-13 15:02:34 +02:00
}
2017-10-17 09:18:53 +02:00
.step-message {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 0;
line-height: 0;
text-align: center;
transition: all .2s;
&.success {
height: 60px;
line-height: 60px;
background-color: #009900;
color: #ffffff;
}
&.error {
height: 60px;
line-height: 60px;
background-color: #e45735;
color: #ffffff;
}
}
2017-10-13 15:02:34 +02:00
.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;
2017-10-25 03:23:51 +02:00
display: flex;
2017-10-13 15:02:34 +02:00
&:hover, &.selected {
background-color: #eee;
}
2017-10-25 03:23:51 +02:00
label {
flex: 1 1 auto;
cursor: pointer;
}
2017-10-13 15:02:34 +02:00
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;
}
}
2017-10-25 03:23:51 +02:00
.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);
}
}
// 3rd party styles TO BE REMOVED / REFACTORED
#custom-wizard-main.place-petition {
.wizard-step.intro .image-container {
margin: 30px 0;
img {
padding: 20px 40px;
}
}
}