2016-05-01 19:56:30 +00:00
|
|
|
@import '../constants/colors';
|
|
|
|
@import '../constants/dimensions';
|
|
|
|
|
|
|
|
.urlbar {
|
|
|
|
width: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr auto;
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
align-items: stretch;
|
|
|
|
align-self: stretch;
|
|
|
|
|
|
|
|
& > .dropdown > button {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > button,
|
|
|
|
& > .dropdown {
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&:hover {
|
2016-07-09 04:49:09 +00:00
|
|
|
background-color: $hl-xs;
|
2016-05-01 19:56:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > *:first-child {
|
|
|
|
padding-left: $padding-md;
|
2016-07-09 04:49:09 +00:00
|
|
|
padding-right: $padding-md / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > *:nth-child(2) {
|
|
|
|
padding-left: $padding-md / 2;
|
2016-05-01 19:56:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
& > *:last-child {
|
|
|
|
padding-right: $padding-md;
|
|
|
|
padding-left: $padding-md;
|
|
|
|
}
|
|
|
|
}
|