Last active
August 29, 2015 14:21
-
-
Save vnctaing/f4b6b91879cce769e4a2 to your computer and use it in GitHub Desktop.
This file contains 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
/* select-style une div qui entoure le select */ | |
.select-style{ | |
border: 1px solid #ccc; | |
width: 120px; | |
overflow: hidden; | |
background: #fff url("https://github.com/google/material-design-icons/blob/master/hardware/1x_web/ic_keyboard_arrow_down_black_18dp.png?raw=true") no-repeat 90% 50%; | |
} | |
.select-style select{ | |
background: transparent; | |
width: 268px; | |
padding: 5px; | |
line-height: 1; | |
border: 0; | |
border-radius: 0; | |
height: 34px; | |
-webkit-appearance: none; | |
} | |
.select-style select:focus { | |
outline: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment