OLD | NEW |
(Empty) | |
| 1 .tab-switcher-view ul { |
| 2 list-style: none; |
| 3 padding: 0; |
| 4 margin: 0; |
| 5 } |
| 6 |
| 7 .tab-switcher-view { |
| 8 border-bottom: 1px solid #555; |
| 9 background: #aaa; |
| 10 overflow: hidden; |
| 11 } |
| 12 |
| 13 .tab-switcher-view li { |
| 14 float: left; |
| 15 margin-left: 5px; |
| 16 } |
| 17 |
| 18 .tab-switcher-view a { |
| 19 text-decoration: none; |
| 20 text-align: center; |
| 21 display: inline-block; |
| 22 margin-top: 4px; |
| 23 padding: 5px 10px 3px 10px; |
| 24 -webkit-border-top-right-radius: 8px; |
| 25 -webkit-border-top-left-radius: 8px; |
| 26 background-clip: border-box; |
| 27 background: #ccc; |
| 28 } |
| 29 |
| 30 .tab-switcher-view a:hover { |
| 31 background: #eee; |
| 32 } |
| 33 |
| 34 .tab-switcher-view a:visited, |
| 35 .tab-switcher-view a { |
| 36 color: blue; |
| 37 } |
| 38 |
| 39 .tab-switcher-view .selected { |
| 40 background: white; |
| 41 } |
| 42 |
| 43 .tab-switcher-view a.selected { |
| 44 position:relative; |
| 45 top: 3px; |
| 46 color: black; |
| 47 } |
OLD | NEW |