Skip to content

Commit

Permalink
More gradient fixes for firefox #9
Browse files Browse the repository at this point in the history
  • Loading branch information
ericduran committed Feb 9, 2014
1 parent 3258f7b commit d365103
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions css/generic.css
Original file line number Diff line number Diff line change
Expand Up @@ -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%);
Expand Down Expand Up @@ -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 */
Expand All @@ -58,4 +63,3 @@
.resource-timing-view {
position: relative;
}

0 comments on commit d365103

Please sign in to comment.