summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-11 00:58:24 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-11 00:58:24 +0000
commit2bd19d9bed3338ae3da1f76c15c428895bed3828 (patch)
tree9796ff9d95a90b3c1b1ec6bef919ed9082b5847b
parentc215ed3f9c8f47ae4fe19f682e914b6964f4245a (diff)
downloadchromium_src-2bd19d9bed3338ae3da1f76c15c428895bed3828.zip
chromium_src-2bd19d9bed3338ae3da1f76c15c428895bed3828.tar.gz
chromium_src-2bd19d9bed3338ae3da1f76c15c428895bed3828.tar.bz2
Aesthetic changes to the tabstrip at the top of about:net-internals (make the tabs smaller so it doesn't overflow all the time).
BUG=37421 Review URL: http://codereview.chromium.org/2050006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46881 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/net_internals/main.css13
1 files changed, 8 insertions, 5 deletions
diff --git a/chrome/browser/resources/net_internals/main.css b/chrome/browser/resources/net_internals/main.css
index b5bc670..a831ca8 100644
--- a/chrome/browser/resources/net_internals/main.css
+++ b/chrome/browser/resources/net_internals/main.css
@@ -147,6 +147,7 @@ body {
#categoryTabHandles {
border-bottom: 1px solid #555;
background: #aaa;
+ overflow: hidden;
}
#categoryTabHandles li {
@@ -157,9 +158,12 @@ body {
#categoryTabHandles a {
text-decoration: none;
text-align: center;
- display: block;
- width: 9em;
- padding: 5px;
+ 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;
}
@@ -178,8 +182,7 @@ body {
#categoryTabHandles a.selected {
position:relative;
- top: 1px;
- font-weight: bold;
+ top: 3px;
color: black;
}