diff options
author | plegall <plg@piwigo.org> | 2014-09-11 12:50:39 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2014-09-11 12:50:39 +0000 |
commit | 8b4fa61135fe5c60f8a820fde30a74dd27509427 (patch) | |
tree | 86ce4b14151f7ba4bd0a742d3c971158228e8159 /admin/themes | |
parent | 0ffdff9439969bc845b4060e0743e12e000fd9e4 (diff) |
feature 3139: add details about search on id: in the help
Move CSS outside the help file
bug fixed: fallback on en_UK in case of missing help file
git-svn-id: http://piwigo.org/svn/trunk@29485 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes')
-rw-r--r-- | admin/themes/default/theme.css | 26 | ||||
-rw-r--r-- | admin/themes/roma/theme.css | 4 |
2 files changed, 29 insertions, 1 deletions
diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 1e644f585..a483a0485 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -1242,4 +1242,28 @@ a.group_perm { } .preview-box.icon-search:hover img { opacity:0.5; -}
\ No newline at end of file +} + +/* table in help/quick_search.html */ +table.qsearch_help_table { + border-collapse:collapse; + text-align:left; + margin:1em; +} +table.qsearch_help_table q { + font-family: Courier, Fixed; + font-weight: bold; +} +table.qsearch_help_table q:before { + content: '\''; + color: green; +} +table.qsearch_help_table q:after { + content: '\''; + color: green; +} +table.qsearch_help_table td { + border: 1px solid #ccc; + padding:5px; + vertical-align:top; +} diff --git a/admin/themes/roma/theme.css b/admin/themes/roma/theme.css index c543981f4..088d18912 100644 --- a/admin/themes/roma/theme.css +++ b/admin/themes/roma/theme.css @@ -353,3 +353,7 @@ table.dataTable thead th { .userPropertiesContainer {border-color:#333;} .userPrefs {border-color:#333;} + +table.qsearch_help_table td { + border-color: #444; +}
\ No newline at end of file |