From d365103a9de82997275c00c4d96adc55af27f354 Mon Sep 17 00:00:00 2001 From: "Eric J. Duran" Date: Sun, 9 Feb 2014 02:54:10 -0500 Subject: [PATCH] More gradient fixes for firefox #9 --- css/generic.css | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/css/generic.css b/css/generic.css index d7b2b1e..b9d41f1 100644 --- a/css/generic.css +++ b/css/generic.css @@ -4,15 +4,6 @@ } #toolbar { - position: absolute; - top: 0; - left: 0; - right: 0; - height: 56px; - padding: 0 5px; - border-bottom: 1px solid rgb(80, 80, 80); - - background-image: -moz-linear-gradient(top, #bfbfbf 0%, #979797 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151))); background-image: linear-gradient(to bottom, #bfbfbf 0%,#979797 100%); @@ -46,6 +37,20 @@ display: -webkit-box; } +.network-item-view .tabbed-pane-header { + background: -moz-linear-gradient(top, #ececec 0%, #d9d9d9 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(236, 236, 236)), to(rgb(217, 217, 217))); + background: -ms-linear-gradient(top, #ececec 0%,#d9d9d9 100%); /* IE10+ */ + background: linear-gradient(to bottom, #ececec 0%,#d9d9d9 100%); /* W3C */ +} + +.status-bar { + background-image: -moz-linear-gradient(top, #fdfdfd 0%, #e6e6e6 75%, #e6e6e6 100%); /* FF3.6+ */ + background-image: -webkit-linear-gradient(rgb(253,253,253), rgb(230,230,230) 75%, rgb(230,230,230)); + background-image: -ms-linear-gradient(top, #fdfdfd 0%,#e6e6e6 75%,#e6e6e6 100%); /* IE10+ */ + background-image: linear-gradient(to bottom, #fdfdfd 0%,#e6e6e6 75%,#e6e6e6 100%); /* W3C */ +} + .tabbed-pane-content { -moz-box-flex:1.0; /* Firefox */ -webkit-box-flex:1.0; /* Safari and Chrome */ @@ -58,4 +63,3 @@ .resource-timing-view { position: relative; } -