50 lines
657 B
SCSS
50 lines
657 B
SCSS
@import "client/common";
|
|
|
|
#change-search-location-dialog {
|
|
|
|
height:300px;
|
|
min-height:300px;
|
|
width:390px;
|
|
min-width:390px;
|
|
|
|
form {
|
|
width:100%;
|
|
@include border_box_sizing;
|
|
|
|
.column {
|
|
|
|
float:left;
|
|
@include border_box_sizing;
|
|
|
|
&:nth-of-type(1) {
|
|
width:100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.field{
|
|
margin-bottom:5px;
|
|
}
|
|
a.reset-location {
|
|
margin: 5px 0 0 130px;
|
|
font-size:12px;
|
|
}
|
|
|
|
label {
|
|
display:inline-block;
|
|
width:130px;
|
|
line-height:26px;
|
|
vertical-align:top;
|
|
}
|
|
|
|
.hint {
|
|
font-size:16px;
|
|
line-height:18px;
|
|
margin-bottom:20px;
|
|
}
|
|
|
|
.easydropdown {
|
|
width:150px;
|
|
}
|
|
}
|