Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 select { | |
|
Evan Stade
2011/06/07 03:25:46
need license header
have you made sure that gener
Nikita (slow)
2011/06/07 17:03:36
Done.
Nikita (slow)
2011/06/07 17:03:36
I've extracted select style from options_page.css
| |
| 2 -webkit-appearance: button; | |
| 3 -webkit-border-radius: 2px; | |
| 4 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | |
|
Evan Stade
2011/06/07 03:25:46
no px after 0
Nikita (slow)
2011/06/07 17:03:36
Done.
| |
| 5 -webkit-padding-end: 20px; | |
| 6 -webkit-padding-start: 2px; | |
| 7 -webkit-user-select: none; | |
| 8 background-image: url("../images/select.png"), -webkit-linear-gradient(#fafafa , #f4f4f4 40%, #e5e5e5); | |
|
Evan Stade
2011/06/07 03:25:46
80
Nikita (slow)
2011/06/07 17:03:36
Done.
| |
| 9 background-position: center right; | |
| 10 background-repeat: no-repeat; | |
| 11 border: 1px solid #aaa; | |
| 12 color: #555; | |
| 13 font-size: inherit; | |
| 14 margin: 0; | |
| 15 overflow: hidden; | |
| 16 padding-top: 2px; | |
| 17 padding-bottom: 2px; | |
| 18 text-overflow: ellipsis; | |
| 19 white-space: nowrap; | |
| 20 } | |
| 21 | |
| 22 select:disabled { | |
| 23 color: graytext; | |
| 24 } | |
| 25 | |
| 26 html[dir='rtl'] select { | |
| 27 background-position: center left; | |
| 28 } | |
| 29 | |
| 30 select:enabled:hover { | |
| 31 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 32 background-image: url("../images/select.png"), -webkit-linear-gradient(#fefefe , #f8f8f8 40%, #e9e9e9); | |
| 33 color: #333; | |
| 34 } | |
| 35 | |
| 36 select:enabled:active { | |
| 37 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 38 background-image: url("../images/select.png"), -webkit-linear-gradient(#f4f4f4 , #efefef 40%, #dcdcdc); | |
| 39 color: #444; | |
| 40 } | |
| OLD | NEW |