diff options
| author | 2013-06-15 16:42:50 +0200 | |
|---|---|---|
| committer | 2013-06-15 16:42:50 +0200 | |
| commit | fafddf2a20748cdbda1f974338528c8e488f4b11 (patch) | |
| tree | a81d7ff4049a8d2a54f9d125e0e91d7ab26ac507 /public/theme | |
| parent | 1863153b966af00078869b6634df1daa22cdcbfe (diff) | |
Fix issue #73 : ajout d'une page pour visualiser les logs
Diffstat (limited to 'public/theme')
| -rw-r--r-- | public/theme/freshrss.css | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/public/theme/freshrss.css b/public/theme/freshrss.css index f5d4f6a83..4919639af 100644 --- a/public/theme/freshrss.css +++ b/public/theme/freshrss.css @@ -349,14 +349,29 @@ } .pagination .item { display: table-cell; - border-top: 1px solid #aaa; line-height: 40px; } + .pagination .item.pager-current { + font-weight: bold; + font-size: 140%; + } + .pagination .item.pager-first, + .pagination .item.pager-previous, + .pagination .item.pager-next, + .pagination .item.pager-last { + width: 100px; + } .pagination .item a { display: block; color: #333; font-style: italic; } + .pagination:first-child .item { + border-bottom: 1px solid #aaa; + } + .pagination:last-child .item { + border-top: 1px solid #aaa; + } .loading { background: url("loader.gif") center center no-repeat; font-size: 0; @@ -421,6 +436,33 @@ vertical-align: middle; } +.logs { + border: 1px solid #aaa; +} + .logs .log { + padding: 5px 2%; + overflow: auto; + background: #fafafa; + border-bottom: 1px solid #999; + color: #333; + font-size: 90%; + } + .logs .log .date { + display: block; + } + .logs .log.error { + background: #fdd; + color: #844; + } + .logs .log.warning { + background: #ffe; + color: #c95; + } + .logs .log.notice { + background: #f4f4f4; + color: #aaa; + } + @media(max-width: 840px) { .header, .aside .btn-important, |
