39 lines
961 B
CSS
39 lines
961 B
CSS
.areaSelectorBox {
|
|
position:absolute;
|
|
background-color:#ffffff;
|
|
padding:10px;
|
|
border-radius:4px;
|
|
z-index:9999;
|
|
}
|
|
.areaSelectorBox ul {
|
|
display: flex;
|
|
height:auto;
|
|
flex-direction: row;
|
|
/* justify-content: center; */
|
|
flex-wrap: wrap;
|
|
overflow-y:auto;
|
|
}
|
|
.areaSelectorBox ul li {
|
|
list-style-type: none;
|
|
padding: 3px;
|
|
width: 110px;
|
|
border-radius: 3px;
|
|
overflow:hidden;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
.areaSelectorBox ul li:hover {
|
|
background-color: #e6e6e6;
|
|
}
|
|
.footbox {
|
|
display:flex;
|
|
flex-direction:row;
|
|
justify-content:right;
|
|
}
|
|
.footbox input[type='button'] {
|
|
border: 1px solid rgb(128 128 128);
|
|
padding: 5px 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
color: rgb(74 74 74);
|
|
} |