aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/css/style.css
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-09-09 04:55:56 -0700
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-09-09 04:55:56 -0700
commitef6051b95e2e289bb32107b75594406db2801653 (patch)
tree1210fefbff6604e6039191a0f7ba7334ddf5a49f /tpl/css/style.css
parent3eb049036e601c1978cf5f7f0d5be8c577933b72 (diff)
parent7f9f5281e5fe6dd92c810f7945c7761ca17fd2e6 (diff)
downloadwallabag-ef6051b95e2e289bb32107b75594406db2801653.tar.gz
wallabag-ef6051b95e2e289bb32107b75594406db2801653.tar.zst
wallabag-ef6051b95e2e289bb32107b75594406db2801653.zip
Merge pull request #199 from NumEricR/nb-results
Add the number of results next to pager
Diffstat (limited to 'tpl/css/style.css')
-rw-r--r--tpl/css/style.css21
1 files changed, 18 insertions, 3 deletions
diff --git a/tpl/css/style.css b/tpl/css/style.css
index 7633534c..f07072a7 100644
--- a/tpl/css/style.css
+++ b/tpl/css/style.css
@@ -98,6 +98,10 @@ a, a:hover, a:visited {
98#main #content .entrie { 98#main #content .entrie {
99 border-bottom: 1px dashed #222; 99 border-bottom: 1px dashed #222;
100} 100}
101/* First entry */
102#main #content .results + .entrie {
103 clear: both;
104}
101 105
102#main .entrie .tools { 106#main .entrie .tools {
103 list-style-type: none; 107 list-style-type: none;
@@ -189,11 +193,22 @@ a, a:hover, a:visited {
189} 193}
190 194
191 195
192/* Pagination */ 196.results {
193.pagination { 197 overflow: hidden;
194 clear: both;
195 padding-bottom: 20px; 198 padding-bottom: 20px;
196 padding-top: 10px; 199 padding-top: 10px;
200}
201
202.nb-results {
203 float: left;
204 font-size: 0.9em;
205 line-height: 24px;
206 vertical-align: middle;
207}
208
209/* Pagination */
210.pagination {
211 float: right;
197 text-align: right; 212 text-align: right;
198} 213}
199.pagination a { 214.pagination a {