Commit e561ff3d authored by Robert Knight's avatar Robert Knight

Fix search bar pushing group name when expanded

Override the browser default styling on the search
input's width property so that its maximum
width will be limited by the available space
in the top bar when expanded. Previously it
was inflexible due to the browser default styling
with the group name being pushed off the left side
of the top bar as a result.

There is still an issue at the moment in Firefox
where the share icon gets covered by the search bar
when expanded.

T-90
parent 0a3465d6
......@@ -25,9 +25,12 @@
order: 1;
color: $text-color;
// disable the default browser styling for the input
border: none;
outline: none;
padding: 0;
padding: 0px;
width: 100%;
max-width: 0px;
transition: max-width .3s ease-out, padding-left .3s ease-out;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment