diff --git a/templates/zephyr/home.html b/templates/zephyr/home.html index bab1c7a878..0af5a74abf 100644 --- a/templates/zephyr/home.html +++ b/templates/zephyr/home.html @@ -2,6 +2,16 @@
+
×
@@ -32,6 +42,7 @@
+
diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index 34d24abf4a..42c0067d6e 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -358,6 +358,30 @@ input.send_message { visibility: hidden; /* so that we pass clicks through to underneath us */ } +#searchbox { + visibility: visible; + max-height: 30px; + padding: 5px 10px; + margin-left: 10px; + margin-right: 19px; + background-color: #DDD; + border: 1px solid black; +} + +#search { + width: 81%; +} + +.highlight { + background-color: #FCEA81; +} + +.search_button { + margin-bottom: 10px; + text-align: center; + padding: 4px 10px 4px 10px; +} + .narrowed_to_bar { /* We use display: to toggle whether or not this actually shows up, but we need visibility: visible because its parent, @@ -400,7 +424,13 @@ table.floating_recipient { #top_whitespace { display: block; - height: 35px; + height: 40px; +} + +#top_narrowed_whitespace { + visibility: hidden; + display: none; + height: 34px; /* Height of narrowlabel + floating indicator */ } #bottom_whitespace { @@ -469,4 +499,4 @@ table.floating_recipient { .hotkeys_table .hotkey_heading { padding-top: 1em; -} \ No newline at end of file +}