diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-17 21:12:45 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-17 21:12:45 +0300 |
| commit | 118b66534eb72e8748ca27f842beedb898645244 (patch) | |
| tree | b244fd9445a37ff147207ae3c4f3240dc560d2c3 /phpBB/styles/prosilver/theme | |
| parent | 5d999e008c6f5882480761bac71956c949819599 (diff) | |
| download | forums-118b66534eb72e8748ca27f842beedb898645244.tar forums-118b66534eb72e8748ca27f842beedb898645244.tar.gz forums-118b66534eb72e8748ca27f842beedb898645244.tar.bz2 forums-118b66534eb72e8748ca27f842beedb898645244.tar.xz forums-118b66534eb72e8748ca27f842beedb898645244.zip | |
[ticket/11552] Add search link to responsive header
PHPBB3-11552
Diffstat (limited to 'phpBB/styles/prosilver/theme')
| -rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 2 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 18 |
2 files changed, 19 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 89cb396416..35deb0d548 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -706,7 +706,7 @@ a.sendemail { .icon-subscribe { background-image: url("./images/icon_subscribe.gif"); } .icon-unsubscribe { background-image: url("./images/icon_unsubscribe.gif"); } .icon-pages { background-image: url("./images/icon_pages.gif"); } -.icon-search { background-image: url("./images/icon_search.gif"); } +.icon-search, .responsive-search a { background-image: url("./images/icon_search.gif"); } .icon-notification { background-image: url("./images/icon_notification.gif"); } .icon-pm { background-image: url("./images/icon_pm.gif"); } diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index c62cd7a0b2..df96b00401 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -1,6 +1,10 @@ /* Responsive Design ---------------------------------------- */ +.responsive-hide { display: none !important; } +.responsive-show { display: block !important; } +.responsive-show-inline { display: inline !important; } + /* Content wrappers ----------------------------------------*/ html { @@ -56,6 +60,20 @@ body { margin-top: -5px; } +/* Search +----------------------------------------*/ +.responsive-search { display: block !important; } +.responsive-search a { + display: block; + width: 16px; + height: 18px; + text-indent: 99px; + overflow: hidden; + background-position: 50% 50%; + background-repeat: no-repeat; + text-decoration: none; +} + /* .topiclist lists ----------------------------------------*/ li.header dt { |
