Added some flex-box styling for the edit input fields. Some ugly things going on here with box-sizing and such.
parent
b2fae72a73
commit
b90e66fd9d
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue