Map: edit the number form buttons
This commit is contained in:
parent
1b5c5cdeaf
commit
1535927405
|
|
@ -471,7 +471,7 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: 15px ;
|
padding: 15px ;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
font-size: 12px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
.btn-primary-modal{
|
.btn-primary-modal{
|
||||||
background-color: #558B2F;
|
background-color: #558B2F;
|
||||||
|
|
@ -497,6 +497,16 @@
|
||||||
.btn-info-modal{
|
.btn-info-modal{
|
||||||
background-color: var(--color-sub);
|
background-color: var(--color-sub);
|
||||||
}
|
}
|
||||||
|
.blink {
|
||||||
|
animation: blink-animation 1s steps(5, start) infinite;
|
||||||
|
-webkit-animation: blink-animation 1s steps(5, start) infinite;
|
||||||
|
}
|
||||||
|
@keyframes blink-animation {
|
||||||
|
50% {
|
||||||
|
opacity: 0.3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*Sidebar filter*/
|
/*Sidebar filter*/
|
||||||
.pg-location .td-search td {
|
.pg-location .td-search td {
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
@ -714,3 +724,43 @@ bottom: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 34;
|
z-index: 34;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Map > Input > Sludge */
|
||||||
|
.number-input {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.number-input input {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.number-input button {
|
||||||
|
padding: 5px 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 기본 화살표 제거 */
|
||||||
|
.d_sludge::-webkit-inner-spin-button,
|
||||||
|
.d_sludge::-webkit-outer-spin-button {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.d_sludge {
|
||||||
|
-moz-appearance: textfield;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left, .right {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: #77B469;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
appearance: none;
|
||||||
|
box-shadow: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue