insomnia/app/ui/css/components/urlbar.less
Gregory Schier c1e9e718e9 Perf/one line input hybrid (#100)
* Fixed duplication kve bug

* one-line-input now defaults to <input>

* Fixed urlbar width

* Removed all boolean flags

* Fixed some edge cases

* I think it's good

* A bunch more fixes too

* Fixed querystring with hashes
2017-03-01 13:15:56 -08:00

60 lines
994 B
Plaintext

@import '../constants/colors';
@import '../constants/dimensions';
.urlbar {
width: 100%;
display: flex;
flex-direction: row;
align-items: stretch;
align-self: stretch;
& > .dropdown > button {
height: 100%;
min-width: 4.5em;
display: flex;
justify-content: space-between;
// Pad the method name on the right
& > *:first-child {
padding-left: 0.5em;
}
// Make everything the same height
&,
& > i.fa {
line-height: @line-height-sm;
}
}
.urlbar__send-btn {
padding-right: @padding-md;
padding-left: @padding-md;
min-width: 5em;
text-align: center;
}
form {
width: 100%;
display: flex;
flex-direction: row;
* {
font-size: @font-size-md;
}
}
.urlbar__send-btn,
& > .dropdown {
height: 100%;
}
button:focus,
button:hover {
background-color: @hl-xs;
}
& > .dropdown > button {
padding-left: @padding-md;
padding-right: @padding-md / 2;
}
}