131 lines
2.2 KiB
SCSS
131 lines
2.2 KiB
SCSS
// Variables
|
|
@import 'variables';
|
|
// Bootstrap
|
|
//@import '~bootstrap/scss/bootstrap';
|
|
//@import 'bootstrap-datepicker.min.css';
|
|
@import '~jquery-confirm/css/jquery-confirm.css';
|
|
|
|
.login {
|
|
margin-top: 95px;
|
|
.title {
|
|
font-size: 21px;
|
|
background: #FF9900;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
margin-bottom: 50px;
|
|
font-weight: bold;
|
|
}
|
|
.note {
|
|
margin-bottom: 35px;
|
|
}
|
|
}
|
|
|
|
.page .row button {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.scroll {
|
|
overflow: auto;
|
|
}
|
|
|
|
//.scroll::-webkit-scrollbar {
|
|
// width: 5px;
|
|
// height: 5px;
|
|
//}
|
|
//
|
|
///* Track */
|
|
//.scroll::-webkit-scrollbar-track {
|
|
// background: #f1f1f1;
|
|
//}
|
|
//
|
|
///* Handle */
|
|
//.scroll::-webkit-scrollbar-thumb {
|
|
// background: #888;
|
|
//}
|
|
//
|
|
///* Handle on hover */
|
|
//.scroll::-webkit-scrollbar-thumb:hover {
|
|
// background: #555;
|
|
//}
|
|
|
|
.table th span, .table td span {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.table label {
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
.table td .btn_action {
|
|
display: inline-block;
|
|
}
|
|
|
|
.error_input {
|
|
border: 1px solid #dc3545;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.table_left {
|
|
padding-right: 0 !important;
|
|
table thead th {
|
|
padding-left: 9px;
|
|
}
|
|
table tr td {
|
|
padding: 9px;
|
|
background-color: #fff0dc;
|
|
}
|
|
}
|
|
|
|
.table_right {
|
|
padding-left: 0 !important;
|
|
table tr td {
|
|
height: 30px;
|
|
}
|
|
}
|
|
|
|
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
|
|
bottom: 8px;
|
|
}
|
|
|
|
.no_padding_right {
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
.pagination {
|
|
margin: 0 !important;
|
|
float: right;
|
|
}
|
|
|
|
.container-fluid.mb20 .btn{
|
|
height: 38px;
|
|
}
|
|
|
|
a.btn.add_new{
|
|
line-height: 29px;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.table_left {
|
|
flex: 0 0 40%;
|
|
max-width: 40%;
|
|
|
|
}
|
|
.table_right {
|
|
flex: 0 0 60%;
|
|
max-width: 60%;
|
|
}
|
|
}
|
|
.form-group .required:after {
|
|
content:"*";
|
|
color:red;
|
|
}
|
|
|
|
.image{
|
|
width: 200px;
|
|
height: auto;
|
|
}
|
|
.sorting span{
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
} |