diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/general.js | 11 | ||||
-rw-r--r-- | public/stylesheets/main.css | 15 |
2 files changed, 22 insertions, 4 deletions
diff --git a/public/javascripts/general.js b/public/javascripts/general.js index ab74cf318..9ae10593c 100644 --- a/public/javascripts/general.js +++ b/public/javascripts/general.js @@ -12,7 +12,7 @@ $(document).ready(function() { } } }) - + } } @@ -33,7 +33,7 @@ $(document).ready(function() { at: "left bottom", of: this, collision: "fit" }); - + }); $('.close-button').click(function() { $(this).parent().hide() }); $('div#variety-filter a').each(function() { @@ -44,4 +44,9 @@ $(document).ready(function() { return false; }) }) -})
\ No newline at end of file + + if($.cookie('seen_foi2') == 1) { + $('#everypage').hide(); + } + +}) diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 31a8ba63c..decce951d 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -40,11 +40,24 @@ border-style:solid; border-width:1px; } +#navigation_search input#navigation_search_button { +background: url(/images/search-button.png) no-repeat center center; +width: 27px; +height: 26px; +color: transparent; +font-size: 0; +margin: 0; +padding: 0; +position: relative; +top: -4px; +left: -5px; +} + #navigation_search input#navigation_search_query { width:20.25em; font-size: 0.8em; padding: 5px; -margin: -1px -1px 0 0; +margin: 5px -1px 0 0; } |