insomnia/app/ui/css/components/urlbar.less

67 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-05-01 19:56:30 +00:00
@import '../constants/colors';
@import '../constants/dimensions';
.urlbar {
width: 100%;
2016-09-10 01:51:49 +00:00
display: flex;
flex-direction: row;
2016-05-01 19:56:30 +00:00
align-items: stretch;
align-self: stretch;
& > .dropdown > button {
height: 100%;
2016-07-20 21:15:11 +00:00
min-width: 4.5em;
display: flex;
justify-content: space-between;
2016-07-20 21:15:11 +00:00
// Pad the method name on the right
& > *:first-child {
padding-left: 0.5em;
}
2016-07-20 21:15:11 +00:00
// Make everything the same height
&,
& > i.fa {
line-height: @line-height-sm;
2016-07-20 21:15:11 +00:00
}
}
2016-11-28 07:12:17 +00:00
.urlbar__send-btn {
2016-08-29 17:58:59 +00:00
padding-right: @padding-md;
padding-left: @padding-md;
2016-11-28 07:12:17 +00:00
min-width: 5em;
text-align: center;
}
input {
display: block;
2016-09-10 01:51:49 +00:00
width: 100%;
height: 100%;
min-width: 0;
}
form {
width: 100%;
display: flex;
flex-direction: row;
}
2016-11-28 07:12:17 +00:00
.urlbar__send-btn,
2016-05-01 19:56:30 +00:00
& > .dropdown {
height: 100%;
}
2016-05-01 19:56:30 +00:00
button:hover {
background-color: @hl-xs;
2016-05-01 19:56:30 +00:00
}
2016-11-28 07:12:17 +00:00
& > .dropdown > button {
2016-08-29 17:58:59 +00:00
padding-left: @padding-md;
padding-right: @padding-md / 2;
2016-07-09 04:49:09 +00:00
}
& > *:nth-child(2) {
2016-08-29 17:58:59 +00:00
padding-left: @padding-md / 2;
2016-05-01 19:56:30 +00:00
}
}