Skip to content

Commit

Permalink
Fix display issues on older Firefox (#252)
Browse files Browse the repository at this point in the history
Regression introduced in f9de007.

Tested on Firefox 45 (old, was broken), 49 (previous, still works), 50
(latest, still works) and Chrome 54 (current, still works).

Closes: #250
  • Loading branch information
wincent authored and asiandrummer committed Dec 13, 2016
1 parent f2ab1fe commit 8b4fe78
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
color: #141823;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
Expand All @@ -28,7 +29,7 @@
.graphiql-container .editorWrap {
display: -webkit-flex;
display: -ms-flexbox;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
Expand All @@ -49,6 +50,7 @@
.graphiql-container .topBarWrap {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
Expand All @@ -64,6 +66,7 @@
cursor: default;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 34px;
padding: 7px 14px 6px;
-webkit-flex: 1;
Expand Down Expand Up @@ -113,6 +116,7 @@
.graphiql-container .editorBar {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
Expand All @@ -124,6 +128,7 @@
.graphiql-container .queryWrap {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
Expand All @@ -135,7 +140,8 @@
.graphiql-container .resultWrap {
border-left: solid 1px #e0e0e0;
display: -webkit-flex;
display: flex;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-flex: 1;
-ms-flex: 1;
Expand Down

0 comments on commit 8b4fe78

Please sign in to comment.