45 lines
577 B
SCSS
45 lines
577 B
SCSS
.sheet_window{
|
|
@include border-radius(5px);
|
|
overflow:auto;
|
|
@include box-shadow(0px 0px 10px rgba(0,0,0,0.8));
|
|
position:fixed;
|
|
top:20px;
|
|
left:20px;
|
|
right:20px;
|
|
bottom:20px;
|
|
background:white;
|
|
padding:10px;
|
|
}
|
|
|
|
#sheet_show{
|
|
|
|
@extend .sheet_window;
|
|
|
|
}
|
|
|
|
#sheets_selecteds{
|
|
height: 300px;
|
|
overflow : auto;
|
|
border : 1px solid #C5C5C5;
|
|
|
|
}
|
|
|
|
#cities{
|
|
height :200px;
|
|
overflow :auto;
|
|
border :1px solid #C5C5C5;
|
|
}
|
|
|
|
#sheet_years_search_years{
|
|
height :200px;
|
|
overflow :auto;
|
|
border :1px solid #C5C5C5;}
|
|
|
|
.sheet_search{
|
|
width :100%;
|
|
|
|
td{
|
|
width :33%;
|
|
vertical-align :top;}
|
|
|
|
} |