diff options
-rw-r--r-- | ext/bg/js/templates.js | 4 | ||||
-rw-r--r-- | ext/fg/frame.html | 2 | ||||
-rw-r--r-- | ext/mixed/css/frame.css | 2 | ||||
-rw-r--r-- | tmpl/kanji.html | 2 | ||||
-rw-r--r-- | tmpl/terms.html | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/ext/bg/js/templates.js b/ext/bg/js/templates.js index d2e5435e..f10134ee 100644 --- a/ext/bg/js/templates.js +++ b/ext/bg/js/templates.js @@ -404,7 +404,7 @@ templates['kanji.html'] = template({"1":function(container,depth0,helpers,partia },"23":function(container,depth0,helpers,partials,data) { return "<hr>"; },"25":function(container,depth0,helpers,partials,data) { - return "<p>No results found.</p>\n"; + return "<p class=\"note\">No results found.</p>\n"; },"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data,blockParams,depths) { var stack1; @@ -586,7 +586,7 @@ templates['terms.html'] = template({"1":function(container,depth0,helpers,partia },"39":function(container,depth0,helpers,partials,data) { return "<hr>"; },"41":function(container,depth0,helpers,partials,data) { - return "<p>No results found.</p>\n"; + return "<p class=\"note\">No results found.</p>\n"; },"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data,blockParams,depths) { var stack1; diff --git a/ext/fg/frame.html b/ext/fg/frame.html index 43f46d33..c20745af 100644 --- a/ext/fg/frame.html +++ b/ext/fg/frame.html @@ -7,7 +7,7 @@ <link rel="stylesheet" href="/mixed/lib/bootstrap/css/bootstrap-theme.min.css"> <link rel="stylesheet" href="/mixed/css/frame.css"> <style type="text/css"> - .entry { + .entry, .note { padding-left: 10px; padding-right: 10px; } diff --git a/ext/mixed/css/frame.css b/ext/mixed/css/frame.css index a425aca8..a0b45fa4 100644 --- a/ext/mixed/css/frame.css +++ b/ext/mixed/css/frame.css @@ -51,7 +51,7 @@ hr { * Entries */ -.entry { +.entry, .note { padding-top: 10px; padding-bottom: 10px; } diff --git a/tmpl/kanji.html b/tmpl/kanji.html index a2f78aff..28e4b8a4 100644 --- a/tmpl/kanji.html +++ b/tmpl/kanji.html @@ -63,5 +63,5 @@ {{> kanji debug=../debug addable=../addable source=../source root=../root}} {{/each}} {{else}} -<p>No results found.</p> +<p class="note">No results found.</p> {{/if}} diff --git a/tmpl/terms.html b/tmpl/terms.html index 80735974..bf656cfb 100644 --- a/tmpl/terms.html +++ b/tmpl/terms.html @@ -72,5 +72,5 @@ {{> term debug=../debug grouped=../grouped addable=../addable playback=../playback}} {{/each}} {{else}} -<p>No results found.</p> +<p class="note">No results found.</p> {{/if}} |