update adminbsbs

This commit is contained in:
Aung Myo
2017-10-30 12:14:11 +06:30
parent 5bdc8e25c8
commit a687b45193
7 changed files with 76 additions and 17 deletions

View File

@@ -32,4 +32,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;
}
}