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;
|
2016-09-18 22:58:50 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2016-07-20 21:15:11 +00:00
|
|
|
|
2016-09-18 22:58:50 +00:00
|
|
|
// Pad the method name on the right
|
|
|
|
& > *:first-child {
|
|
|
|
padding-left: 0.5em;
|
|
|
|
}
|
2016-07-20 21:15:11 +00:00
|
|
|
|
2016-09-18 22:58:50 +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;
|
2016-08-15 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
2016-11-29 20:55:31 +00:00
|
|
|
input {
|
|
|
|
display: block;
|
2016-09-10 01:51:49 +00:00
|
|
|
width: 100%;
|
2016-08-15 17:04:36 +00:00
|
|
|
height: 100%;
|
2016-11-29 20:55:31 +00:00
|
|
|
min-width: 0;
|
2016-08-15 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
2016-09-10 02:40:35 +00:00
|
|
|
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-09-18 22:58:50 +00:00
|
|
|
}
|
2016-05-01 19:56:30 +00:00
|
|
|
|
2016-09-18 22:58:50 +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
|
|
|
}
|
|
|
|
}
|