You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
502 B
23 lines
502 B
/* === Down Arrow Button ==*/ |
|
.mblDomButtonWhiteDownArrow { |
|
position: relative; |
|
width: 29px; |
|
height: 29px; |
|
} |
|
.mblDomButtonWhiteDownArrow div { |
|
position: absolute; |
|
left: 0px; |
|
clip: rect(7px 50px 40px 0px); |
|
} |
|
.mblDomButtonWhiteDownArrow > div > div { |
|
top: -10px; |
|
left: 2px; |
|
width: 25px; |
|
height: 25px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: white; |
|
border-top: 1px solid #4a5a71; |
|
-webkit-transform: scaleX(0.6) rotate(45deg); |
|
transform: scaleX(0.6) rotate(45deg); |
|
}
|
|
|