0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-10 04:12:53 +01:00
discourse-custom-wizard/assets/stylesheets/wizard_custom_admin.scss

137 Zeilen
1,8 KiB
SCSS

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