Added some flex-box styling for the edit input fields. Some ugly things going on here with box-sizing and such.

master
kts of kettek 2015-10-12 01:59:43 -07:00
parent b2fae72a73
commit b90e66fd9d
1 changed files with 12 additions and 0 deletions

View File

@ -255,9 +255,21 @@ textarea:focus,input:focus {
-webkit-flex-flow: row wrap;
justify-content: flex-start;
align-items: center;
overflow-x: hidden;
}
.edit div {
margin-right: 2em;
flex: 1;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0.5em;
}
.edit input[type="text"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
}
/* prompt styling */
.prompt {