Index: chrome/browser/resources/net_internals/tabswitcherview.css |
=================================================================== |
--- chrome/browser/resources/net_internals/tabswitcherview.css (revision 0) |
+++ chrome/browser/resources/net_internals/tabswitcherview.css (revision 0) |
@@ -0,0 +1,47 @@ |
+.tab-switcher-view ul { |
+ list-style: none; |
+ padding: 0; |
+ margin: 0; |
+} |
+ |
+.tab-switcher-view { |
+ border-bottom: 1px solid #555; |
+ background: #aaa; |
+ overflow: hidden; |
+} |
+ |
+.tab-switcher-view li { |
+ float: left; |
arv (Not doing code reviews)
2010/12/06 19:45:57
rtl
nduca
2010/12/07 01:03:40
Done.
|
+ margin-left: 5px; |
arv (Not doing code reviews)
2010/12/06 19:45:57
-webkit-margin-start
nduca
2010/12/07 01:03:40
Done.
|
+} |
+ |
+.tab-switcher-view a { |
+ text-decoration: none; |
+ text-align: center; |
+ display: inline-block; |
+ margin-top: 4px; |
+ padding: 5px 10px 3px 10px; |
+ -webkit-border-top-right-radius: 8px; |
+ -webkit-border-top-left-radius: 8px; |
+ background-clip: border-box; |
+ background: #ccc; |
+} |
+ |
+.tab-switcher-view a:hover { |
+ background: #eee; |
+} |
+ |
+.tab-switcher-view a:visited, |
+.tab-switcher-view a { |
+ color: blue; |
+} |
+ |
+.tab-switcher-view .selected { |
+ background: white; |
+} |
+ |
+.tab-switcher-view a.selected { |
+ position:relative; |
+ top: 3px; |
+ color: black; |
+} |