Skip to content

Commit

Permalink
Mitigating #9 - Tons of firefox fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ericduran committed Feb 9, 2014
1 parent d145afd commit 03bb858
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
43 changes: 43 additions & 0 deletions css/generic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/* Overrite Webkit specific css properties with generic ones */
* {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

#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%);

-moz-box-orient: horizontal;
-webkit-box-orient: horizontal;
box-orient: horizontal;

-moz-background-origin: padding;
-webkit-background-origin: padding;
background-origin: padding;

-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding;
}

.toolbar-item.network .toolbar-icon {
background-position: -64px 0;
}

.network-log-grid.data-grid th, .network-log-grid.data-grid th.sort-descending, .network-log-grid.data-grid th.sort-ascending {
background: -moz-linear-gradient(top, #ececec 0%, #d9d9d9 100%);
background: -ms-linear-gradient(top, #ececec 0%,#d9d9d9 100%);
background: -webkit-gradient(linear, left top, left bottom, from(rgb(236, 236, 236)), to(rgb(217, 217, 217)));
background: linear-gradient(to bottom, #ececec 0%,#d9d9d9 100%);
}

8 changes: 8 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

.tabbed-pane-content a {
border-bottom: 1px solid #def;
color: #0074d9;
Expand Down Expand Up @@ -37,8 +41,12 @@

.toolbar-controls {
float: right;
display:-moz-box;
display: -webkit-box;
-ms-flex-pack:center;
-moz-box-align:center;
-webkit-box-align: center;
box-align:center;
height: 100%;
padding-right: 120px;
}
Expand Down
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
<link rel="stylesheet" type="text/css" href="chrome/networkPanel.css">
<link rel="stylesheet" type="text/css" href="chrome/networkLogView.css">

<link rel="stylesheet" type="text/css" href="css/generic.css">

<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/libs/modernizr.custom.min.js"></script>
</head>
Expand Down

0 comments on commit 03bb858

Please sign in to comment.