119 lines
2.1 KiB
SCSS
119 lines
2.1 KiB
SCSS
.form-holder {
|
|
min-width: 686px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
align-self: stretch;
|
|
|
|
form {
|
|
max-width: 434px;
|
|
}
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
align-self: stretch;
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
align-self: stretch;
|
|
width: 100%;
|
|
flex: 1;
|
|
margin-bottom: 20px;
|
|
|
|
|
|
label {
|
|
flex: 1;
|
|
font-size: 12px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
color: #666666;
|
|
}
|
|
|
|
.widget {
|
|
margin-top: 10px;
|
|
align-self: stretch;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
select,
|
|
input,
|
|
textarea {
|
|
outline: none;
|
|
padding: 8px 0 5px 8px;
|
|
border-radius: 2px;
|
|
border: 1px solid rgba($white, .05);
|
|
flex: 1;
|
|
background: #555;
|
|
box-shadow: 0 2px 1px #444, 0 4px 2px #333 inset;
|
|
color: #DDD;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
|
|
&.tab-select {
|
|
border-bottom: 1px solid #444;
|
|
display: flex;
|
|
flex-direction: row;
|
|
position: relative;
|
|
height: 48px;
|
|
padding: 48px 0 0 0;
|
|
flex: 0;
|
|
|
|
.widget {
|
|
height: 49px;
|
|
margin-top: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
background: rgba($seaBlue, .05);
|
|
border-bottom: 2px solid $seaBlue;
|
|
|
|
select {
|
|
border: none;
|
|
background: none;
|
|
box-shadow: none;
|
|
padding: 10px 10px 10px 10px;
|
|
margin: 0;
|
|
appearance: none;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
text-align: left;
|
|
color: $seaBlue;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
border-top-left-radius: 2px;
|
|
border-top-right-radius: 2px;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 200px;
|
|
}
|
|
|
|
i {
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
color: $seaBlue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|