74 lines
1.4 KiB
CSS
74 lines
1.4 KiB
CSS
.modal-header {
|
|
padding: 10px 15px 0;
|
|
background-color: #FFF;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 22px;
|
|
font-weight: bold !important;
|
|
color: #444;
|
|
}
|
|
|
|
.modal-body {
|
|
background-color: #FAFAFA;
|
|
margin: 0 15px;
|
|
}
|
|
|
|
.modal-body label {
|
|
font-size: 19px;
|
|
font-family: THSarabunNew;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.modal-footer {
|
|
border: none;
|
|
justify-content: center;
|
|
}
|
|
|
|
select:disabled {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
text-indent: 1px;
|
|
text-overflow: '';
|
|
}
|
|
|
|
/*=================My Auto Complete==================*/
|
|
|
|
/*the container must be positioned relative:*/
|
|
.autocomplete {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
|
|
|
|
.my_autocomplete-items {
|
|
position: absolute;
|
|
border: 1px solid #d4d4d4;
|
|
border-bottom: none;
|
|
border-top: none;
|
|
z-index: 99;
|
|
/*position the autocomplete items to be the same width as the container:*/
|
|
top: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.my_autocomplete-items div {
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
background-color: #fff;
|
|
border-bottom: 1px solid #d4d4d4;
|
|
}
|
|
|
|
/*when hovering an item:*/
|
|
.my_autocomplete-items div:hover {
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
/*when navigating through the items using the arrow keys:*/
|
|
.my_autocomplete-active {
|
|
background-color: DodgerBlue !important;
|
|
color: #ffffff;
|
|
}
|