Fixed problem with Webkit.

pull/3/head
yhirose 9 years ago
parent 85932059b9
commit f70da10d79
  1. 13
      lint/playground/www/index.html

@ -12,18 +12,24 @@
} }
body { body {
display: flex; display: flex;
display: -webkit-flex;
flex-direction: column; flex-direction: column;
-webkit-flex-direction: column;
height: 100vh; height: 100vh;
} }
#main { #main {
flex: 1; flex: 1;
-webkit-flex: 1;
display: none; display: none;
} }
.editor-container { .editor-container {
flex: 1; flex: 1;
-webkit-flex: 1;
width: 100%; width: 100%;
display: flex; display: flex;
display: -webkit-flex;
flex-direction: column; flex-direction: column;
-webkit-flex-direction: column;
margin: 8px; margin: 8px;
} }
.editor-container:first-child { .editor-container:first-child {
@ -31,6 +37,7 @@ body {
} }
.editor-header { .editor-header {
display: flex; display: flex;
display: -webkit-flex;
height: 48px; height: 48px;
padding: 4px 8px; padding: 4px 8px;
} }
@ -61,6 +68,7 @@ body {
} }
.editor-area { .editor-area {
flex: 1; flex: 1;
-webkit-flex: 1;
border: 1px solid lightgray; border: 1px solid lightgray;
} }
.editor-info { .editor-info {
@ -183,7 +191,10 @@ NUMBER <- < [0-9]+ > _
$('#code-info').on('click', 'li', makeOnClickInInfo(code)); $('#code-info').on('click', 'li', makeOnClickInInfo(code));
// Show page // Show page
$('#main').css('display', 'flex'); $('#main').css({
'display': 'flex',
'display': '-webkit-flex'
});
// Initial parse // Initial parse
parse(); parse();

Loading…
Cancel
Save