mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:56:36 +08:00
202 lines
3.4 KiB
SCSS
202 lines
3.4 KiB
SCSS
@import "vendor/normalize";
|
|
@import "vendor/font_awesome/font-awesome";
|
|
@import "vendor/select2";
|
|
|
|
body.wizard {
|
|
background-color: #fff;
|
|
background-image: url('/images/wizard/bubbles.png');
|
|
background-repeat: repeat;
|
|
background-position: left top;
|
|
|
|
color: #444;
|
|
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
.select {
|
|
width: 400px;
|
|
}
|
|
|
|
.wizard-column {
|
|
background-color: white;
|
|
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
|
|
box-sizing: border-box;
|
|
margin: 1.5em auto;
|
|
padding: 0;
|
|
max-width: 700px;
|
|
min-width: 280px;
|
|
width: 100%;
|
|
border: 1px solid #ccc;
|
|
|
|
.wizard-column-contents {
|
|
padding: 1.2em;
|
|
|
|
h1 {
|
|
margin: 0 0 1em 0;
|
|
}
|
|
}
|
|
|
|
.wizard-step-description {
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.wizard-footer {
|
|
border-top: 1px solid #ccc;
|
|
background-color: #eee;
|
|
padding: 0.5em;
|
|
img.logo {
|
|
height: 30px;
|
|
}
|
|
}
|
|
|
|
.wizard-progress {
|
|
.text {
|
|
font-size: 0.8em;
|
|
}
|
|
.bar-container {
|
|
border: 1px solid #ff6600;
|
|
border-radius: 3px;
|
|
height: 0.5em;
|
|
width: 15em;
|
|
|
|
.bar-contents {
|
|
background-color: #ff6600;
|
|
width: 0;
|
|
height: 0.5em;
|
|
transition: width .3s;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.wizard-step-footer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
button.wizard-btn {
|
|
border-radius: 2px;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
|
|
font-size: 1.0em;
|
|
background-color: #6699ff;
|
|
color: white;
|
|
border: 0px;
|
|
padding: 0.5em;
|
|
outline: 0;
|
|
transition: background-color .3s;
|
|
margin-right: 0.5em;
|
|
|
|
&:hover {
|
|
background-color: #80B3FF;
|
|
}
|
|
|
|
&:active {
|
|
background-color: #4D80E6;
|
|
}
|
|
|
|
&:disabled {
|
|
background-color: #000167;
|
|
}
|
|
|
|
i.fa-chevron-right {
|
|
margin-left: 0.25em;
|
|
font-size: 0.8em;
|
|
}
|
|
i.fa-chevron-left {
|
|
margin-right: 0.25em;
|
|
font-size: 0.8em;
|
|
}
|
|
}
|
|
|
|
button.wizard-btn.next {
|
|
min-width: 70px;
|
|
|
|
i.fa-chevron-right {
|
|
margin-left: 0.25em;
|
|
font-size: 0.8em;
|
|
}
|
|
}
|
|
|
|
button.wizard-btn.back {
|
|
background-color: #fff;
|
|
color: #333;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
|
|
|
|
&:hover {
|
|
background-color: #eee;
|
|
}
|
|
|
|
&:active {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
&:disabled {
|
|
background-color: #ccc;
|
|
}
|
|
}
|
|
|
|
button.wizard-btn:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
button.wizard-btn.done {
|
|
background-color: #33B333;
|
|
|
|
&:hover {
|
|
background-color: #4DCD4D;
|
|
}
|
|
|
|
&:active {
|
|
background-color: #66E666;
|
|
}
|
|
|
|
&:disabled {
|
|
background-color: #006700;
|
|
}
|
|
}
|
|
}
|
|
|
|
.wizard-field {
|
|
label .label-value {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.input-area {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.field-error-description {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.field-description {
|
|
color: #999;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
&.text-field {
|
|
input {
|
|
width: 100%;
|
|
font-size: 1.2em;
|
|
padding: 6px;
|
|
border: 1px solid #ccc;
|
|
transition: border-color .5s;
|
|
outline: none;
|
|
}
|
|
|
|
&.invalid {
|
|
input {
|
|
padding: 3px;
|
|
border: 4px solid red;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|
|
|
|
margin-bottom: 2em;
|
|
}
|
|
}
|
|
|