Skip to content

Commit a88f32e

Browse files
authored
Firefox support - minor style fixes (#167)
* Fix tabs margin * manifest - replace options_page with options_ui * Make options page more responsive
1 parent 379444a commit a88f32e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Diff for: rails_panel/assets/stylesheets/panel.css

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ ul {
1010
-webkit-margin-before: 0;
1111
-webkit-margin-after: 0;
1212
-webkit-margin-start: -30px;
13+
-moz-margin-start: -30px;
14+
margin-top: 0;
15+
margin-bottom: 0;
1316
}
1417

1518
.data-grid {

Diff for: rails_panel/manifest.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"manifest_version": 2,
55
"description": "Devtools panel for Rails development",
66
"devtools_page": "devtools.html",
7-
"options_page": "options.html",
7+
"options_ui": {
8+
"page": "options.html"
9+
},
810
"background": {
911
"scripts": [
1012
"vendor/assets/javascripts/jquery-1.8.3.min.js",

Diff for: rails_panel/options.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script src="assets/javascripts/options.js"></script>
99
</head>
1010
<body>
11-
<div class="container">
11+
<div>
1212
<h2>
1313
<img src="assets/images/Rails_Logo_48x48.png"/>
1414
RailsPanel

0 commit comments

Comments
 (0)