Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 .tab-switcher-view * { | |
|
arv (Not doing code reviews)
2010/12/08 19:52:37
You should be able to do
.tab-switcher-view {
| |
| 2 font-family: sans-serif; | |
| 3 } | |
| 4 | |
| 5 .tab-switcher-view ul { | |
| 6 list-style: none; | |
| 7 padding: 0; | |
| 8 margin: 0; | |
| 9 } | |
| 10 | |
| 11 .tab-switcher-view { | |
| 12 border-bottom: 1px solid #555; | |
| 13 background: #aaa; | |
| 14 overflow: hidden; | |
| 15 } | |
| 16 | |
| 17 .tab-switcher-view li { | |
| 18 float: left; | |
| 19 -webkit-margin-start: 5px; | |
| 20 direction: rtl; | |
|
arv (Not doing code reviews)
2010/12/08 17:55:19
I don't know why this is here. Can you add a comme
nduca
2010/12/08 19:08:22
Umm, in a previous review you asked me to add it?
arv (Not doing code reviews)
2010/12/08 19:52:37
Anytime I see a hardcoded left/right and no handli
| |
| 21 } | |
| 22 | |
| 23 .tab-switcher-view a { | |
| 24 text-decoration: none; | |
| 25 text-align: center; | |
| 26 display: inline-block; | |
| 27 margin-top: 4px; | |
| 28 padding: 5px 10px 3px 10px; | |
| 29 -webkit-border-top-right-radius: 8px; | |
|
arv (Not doing code reviews)
2010/12/08 17:55:19
Remove -webkit- prefix for border radius
nduca
2010/12/08 19:08:22
Done.
| |
| 30 -webkit-border-top-left-radius: 8px; | |
| 31 background-clip: border-box; | |
| 32 background: #ccc; | |
| 33 } | |
| 34 | |
| 35 .tab-switcher-view a:hover { | |
| 36 background: #eee; | |
| 37 } | |
| 38 | |
| 39 | |
| 40 .tab-switcher-view a:visited, | |
| 41 .tab-switcher-view a { | |
| 42 color: blue; | |
| 43 } | |
| 44 | |
| 45 .tab-switcher-view .selected { | |
| 46 background: white; | |
| 47 } | |
| 48 | |
| 49 .tab-switcher-view a.selected { | |
| 50 position:relative; | |
|
arv (Not doing code reviews)
2010/12/08 17:55:19
whitespace after :
nduca
2010/12/08 19:08:22
Done.
| |
| 51 top: 3px; | |
| 52 color: black; | |
| 53 } | |
| OLD | NEW |