merge with aung myo

This commit is contained in:
Yan
2017-10-30 18:52:48 +06:30
7 changed files with 73 additions and 18 deletions

View File

@@ -34,4 +34,33 @@
line-height: inherit;
padding:5px;
}
/*----- Order Processing Items -----*/
/*----- Order Processing Items -----*/
/* ========== Select Field ========== */
/* Remove focus */
select:focus {
outline: none}
/* Hide label */
.custom-selectfield label {display: none;}
/* Use custom arrow */
.custom-selectfield select {appearance: none}
.custom-selectfield {
position: relative;
&:after {
position: absolute;
top: 1em;
right: 0.5em;
/* Styling the down arrow */
width: 0;
height: 0;
padding: 0;
content: '';
border-left: .25em solid transparent;
border-right: .25em solid transparent;
border-top: .375em solid #111;
pointer-events: none;
}
}