diff options
author | friendica <info@friendica.com> | 2013-01-19 00:43:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-19 00:43:05 -0800 |
commit | 9725dcf41dce7b03828a29b7f6def11ef120a88f (patch) | |
tree | 34a697e6dc276bde2fbc18540f7d64af26bc00c6 /view | |
parent | 33b6d916611f6b9ec214fff38f60df128fbc940a (diff) | |
download | volse-hubzilla-9725dcf41dce7b03828a29b7f6def11ef120a88f.tar.gz volse-hubzilla-9725dcf41dce7b03828a29b7f6def11ef120a88f.tar.bz2 volse-hubzilla-9725dcf41dce7b03828a29b7f6def11ef120a88f.zip |
distributed directory search from the navbar
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 7 | ||||
-rw-r--r-- | view/tpl/nav.tpl | 1 | ||||
-rw-r--r-- | view/tpl/smarty3/nav.tpl | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 21704e21c..fd989554b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2569,6 +2569,13 @@ aside input[type='text'] { margin-top: 4px; } +#nav-search-spinner { + float: right; + margin-top: 8px; + margin-left: 5px; + margin-right: 5px; +} + #nav-search-text:hover { background-color: #FFF; color: #000; diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index b0eb098aa..b0c2393cd 100644 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -133,6 +133,7 @@ <input id="nav-search-text" type="text" value="" placeholder="$nav.search.1" name="search" title="$nav.search.3" onclick="this.submit();" /> </form> </li> + <img src="images/rotator.gif" id="nav-search-spinner" style="display: none;" alt="$pleasewait" /> </ul> </nav> diff --git a/view/tpl/smarty3/nav.tpl b/view/tpl/smarty3/nav.tpl index da50bc7bb..0b8344b07 100644 --- a/view/tpl/smarty3/nav.tpl +++ b/view/tpl/smarty3/nav.tpl @@ -133,6 +133,7 @@ <input id="nav-search-text" type="text" value="" placeholder="{{$nav.search.1}}" name="search" title="{{$nav.search.3}}" onclick="this.submit();" /> </form> </li> + <img src="images/rotator.gif" id="nav-search-spinner" style="display: none;" alt="{{$pleasewait}}" /> </ul> </nav> |