Created
May 8, 2018 11:18
-
-
Save hwkdev/a85a802fb76836b6dcd7ab5351c61865 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.filter_date_range_wrapper{ | |
position:relative; | |
display:inline-block; | |
vertical-align:bottom; | |
} | |
.filter_date_range_wrapper > span{ | |
position:absolute; | |
top:8px; | |
right:6px; | |
color:#ccc; | |
} | |
.filter_date_range_wrapper > span:after{ | |
content: "\f145"; | |
font-size: 16px; | |
line-height: 1; | |
font-family: dashicons; | |
font-weight: 400; | |
font-style: normal; | |
text-align: center; | |
} | |
.filter_date_range_wrapper.active > span{ | |
cursor:pointer; | |
} | |
.filter_date_range_wrapper.active > span:after{ | |
content: "\f158"; | |
} | |
.filter_date_range_wrapper.active > span:hover{ | |
color:#555; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment