1
0

Fix editor css to prevent keys from wrapping

This commit is contained in:
Jun Wako 2016-01-13 15:11:17 +09:00
parent 29c37de437
commit f88fe046ef

View File

@ -8,7 +8,6 @@ html * {
border-radius:6px; border-radius:6px;
border:2px solid #dcdcdc; border:2px solid #dcdcdc;
display:inline-block; display:inline-block;
float: left;
color:#777777; color:#777777;
font-family:helvetica, arial, sans-serif; font-family:helvetica, arial, sans-serif;
font-size:16px; font-size:16px;
@ -86,14 +85,15 @@ html * {
.keyboard-row { .keyboard-row {
width: auto; width: auto;
display: inline-block; white-space: nowrap;
} }
.keyboard-outline { .keyboard-outline {
/* stop displaying whitespace between keys */
font-size: 0;
} }
.keyboard-pane { .keyboard-pane {
width: 750px;
font-size: 14px; font-size: 14px;
font-weight:bold; font-weight:bold;
} }