From: Ian Weller Date: Wed, 5 Apr 2017 15:13:36 +0000 (-0400) Subject: I changed the search in the header a bit X-Git-Tag: v1.0.0^2~18 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=ef5a21589908f6b4778b4b135395f840711cbf39;p=WP-Themes%2Fcharlevoixlibrary.git I changed the search in the header a bit I removed the side padding and reduced the max width of the search input field. --- diff --git a/css/app.css b/css/app.css index 61ad3af..e030490 100644 --- a/css/app.css +++ b/css/app.css @@ -6337,11 +6337,11 @@ header.main { #nav-search { position: relative; } #nav-search form.searchform { - padding: 0 20px 0; + padding: 0; position: absolute; top: 35px; right: 0; - max-width: 582px; + max-width: 435px; width: 100%; } #nav-search form.searchform input[type="text"].search-input { height: 30px; @@ -6356,7 +6356,7 @@ header.main { border-color: #3b76c4; } #nav-search form.searchform input[type="image"] { position: absolute; - right: 30px; + right: 15px; top: 2px; } #nav-search form.searchform .radio-area { float: right; } diff --git a/scss/_page.header.scss b/scss/_page.header.scss index 0a47056..4bc3753 100644 --- a/scss/_page.header.scss +++ b/scss/_page.header.scss @@ -123,11 +123,11 @@ header.main { // height: 212px; form.searchform { // background: $teal; - padding: 0 20px 0; + padding: 0; position: absolute; top: 35px; right: 0; - max-width: 582px; + max-width: 435px; width: 100%; input[type="text"] { &.search-input { @@ -145,7 +145,7 @@ header.main { } input[type="image"] { position: absolute; - right: 30px; + right: 15px; top: 2px; } .radio-area {