280 lines
6.0 KiB
CSS
280 lines
6.0 KiB
CSS
.modal-dialog-scrollable .modal-content {
|
|
overflow: visible;
|
|
}
|
|
|
|
.modal-dialog-scrollable .modal-body {
|
|
overflow-y: visible;
|
|
}
|
|
|
|
.scroll-container-amount {
|
|
font-size: 12px;
|
|
color: #4f4f4f;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
cursor: grab;
|
|
user-select: none;
|
|
}
|
|
|
|
.scroll-container-amount:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.errored {
|
|
animation: shake 300ms;
|
|
color: #eb3434 !important;
|
|
background-color: #fef2f2 !important;
|
|
border: 1px solid #eb3434 !important;
|
|
}
|
|
|
|
.textLFontColor,
|
|
.form-control {
|
|
color: #797979;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/*.form-control-number {
|
|
border: 1px solid #C6C6C6;
|
|
border-radius: 6px;
|
|
width: 40px;
|
|
}
|
|
|
|
.form-control-currency {
|
|
border: 1px solid #C6C6C6;
|
|
border-radius: 6px;
|
|
width: 120px;
|
|
}
|
|
|
|
.form-control-select {
|
|
border: 1px solid #C6C6C6;
|
|
border-radius: 6px;
|
|
width: 80px;
|
|
}*/
|
|
|
|
.textLFontColor span {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btnCreateNew {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background-color: #84CC16;
|
|
color: #FFFFFF;
|
|
border-radius: 8px;
|
|
padding: 10px 70px;
|
|
}
|
|
|
|
.btnCreateNew:hover {
|
|
background-color: #5f9213;
|
|
}
|
|
|
|
.btnCreateNew,
|
|
.btn-cancel2 {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.spanTitleText {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: #454545;
|
|
}
|
|
|
|
@media (max-width:1366px) {
|
|
.spanTitleText {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width:768px) {
|
|
.form-control {
|
|
margin: 0 !important;
|
|
}
|
|
.spanTitleText {
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
@media (max-width:576px) {
|
|
.btnCreateNew, .btn-cancel2 {
|
|
width: 100% !important;
|
|
padding: 10px 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
|
|
/*select option*/
|
|
|
|
select {
|
|
display: none !important;
|
|
}
|
|
|
|
.dropdown-select {
|
|
background-image: linear-gradient( to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100% );
|
|
background-repeat: repeat-x;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
|
|
background-color: #fff;
|
|
border-radius: 6px;
|
|
border: 1px solid #DADADA;
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
display: block;
|
|
float: right;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
outline: none;
|
|
padding-left: 18px;
|
|
padding-right: 20px;
|
|
position: relative;
|
|
text-align: right !important;
|
|
transition: all 0.2s ease-in-out;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
width: auto;
|
|
background-color:
|
|
}
|
|
|
|
.dropdown-select:focus {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.dropdown-select:hover {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.dropdown-select:active,
|
|
.dropdown-select.open {
|
|
background-color: #fff !important;
|
|
border-color: #bbb;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
|
|
}
|
|
|
|
.dropdown-select:after {
|
|
height: 0;
|
|
width: 0;
|
|
border-left: 4px solid transparent;
|
|
border-right: 4px solid transparent;
|
|
border-top: 4px solid #777;
|
|
-webkit-transform: origin(50% 20%);
|
|
transform: origin(50% 20%);
|
|
transition: all 0.125s ease-in-out;
|
|
content: "";
|
|
display: block;
|
|
margin-top: -2px;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 50%;
|
|
}
|
|
|
|
.dropdown-select.open:after {
|
|
-webkit-transform: rotate(-180deg);
|
|
transform: rotate(-180deg);
|
|
}
|
|
|
|
.dropdown-select.open .list {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.dropdown-select.open .option {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dropdown-select.wide {
|
|
width: 100%;
|
|
}
|
|
|
|
.dropdown-select.wide .list {
|
|
left: 0 !important;
|
|
right: 0 !important;
|
|
}
|
|
|
|
.dropdown-select .list {
|
|
box-sizing: border-box;
|
|
transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
|
|
-webkit-transform: scale(0.75);
|
|
transform: scale(0.75);
|
|
-webkit-transform-origin: 50% 0;
|
|
transform-origin: 50% 0;
|
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
|
|
background-color: #fff;
|
|
border-radius: 6px;
|
|
margin-top: 4px;
|
|
padding: 3px 0;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
z-index: 999222222;
|
|
max-height: 250px;
|
|
overflow: auto;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.dropdown-select .list:hover .option:not(:hover) {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.dropdown-select .list ul {
|
|
padding: 0;
|
|
padding: 5px;
|
|
}
|
|
|
|
.dropdown-select .option {
|
|
cursor: default;
|
|
font-weight: 400;
|
|
outline: none;
|
|
padding: 0 15px;
|
|
text-align: right;
|
|
transition: all 0.2s;
|
|
list-style: none;
|
|
border-radius: 6px;
|
|
margin: 2px auto;
|
|
height: 35px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.dropdown-select .option:hover,
|
|
.dropdown-select .option:focus {
|
|
/* background-color: #f6f6f6 !important;*/
|
|
background: linear-gradient(180deg, #41D1D1 0%, #2CD0D0 100%) !important;
|
|
color: white;
|
|
}
|
|
|
|
.dropdown-select .option.selected {
|
|
/* color: #12cbc4;*/
|
|
background: linear-gradient(180deg, #41D1D1 0%, #2CD0D0 100%);
|
|
color: white;
|
|
}
|
|
|
|
.dropdown-select .option.selected:focus {
|
|
background: #f6f6f6;
|
|
}
|
|
|
|
.dropdown-select a {
|
|
color: #aaa;
|
|
text-decoration: none;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
.dropdown-select a:hover {
|
|
color: #666;
|
|
}
|
|
|
|
dl, ol, ul {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
} |