0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/assets/stylesheets/wizard_custom_admin.scss
Angus McLeod e859e3efa2 various
2017-10-13 21:02:34 +08:00

136 Zeilen
1,8 KiB
SCSS

.wizards-nav-button {
@extend .nav-pills;
float: left;
}
.wizard-list {
float: left;
width: 250px;
}
.new-wizard {
margin-top: 15px;
}
.wizard-header {
font-size: 1.4em;
margin-bottom: 15px;
&.medium {
font-size: 1.2em;
}
&.small {
font-size: 1em;
text-decoration: underline;
margin-bottom: 5px;
}
}
.content-list + .content {
overflow: hidden;
}
.admin-wizard.settings {
margin-left: 30px;
margin-right: 30px;
.setting {
display: inline-block;
vertical-align: top;
width: 49%;
.setting-label {
width: 90px;
}
.setting-value span {
font-size: 0.929em;
}
&.full {
width: 100%;
}
label {
margin: 5px 0;
}
}
.buttons .error {
color: $danger;
.fa {
margin-right: 5px;
}
}
.buttons .remove {
float: right;
}
}
.wizard-links {
margin-bottom: 20px;
.remove {
margin-right: 10px;
}
}
.wizard-column-contents {
position: relative;
}
.wizard-custom-step {
display: inline-block;
margin-bottom: 20px;
padding: 15px;
background-color: dark-light-diff($primary, $secondary, 96%, -65%);
}
.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: $success;
color: $secondary;
}
&.error {
height: 60px;
line-height: 60px;
background-color: $danger;
color: $secondary;
}
}
.wizard-dropdown-choices {
padding: 15px 15px 0 15px;
margin-bottom: 20px;
background-color: $secondary;
}
.setting .custom-input {
display: inline-block;
}
.wizard-submissions {
padding: 0 20px;
display: inline-block;
overflow: scroll;
}
.wizard-field-composer textarea {
width: 100%;
min-height: 150px;
}