aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy/css
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-27 15:20:01 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-27 15:20:01 +0100
commit61e79d934495ee24bb824e4c26b534ef9cd7fec3 (patch)
tree66f57690221a5ba3077d06d8553b8f1074b12171 /themes/baggy/css
parenta8464c97197c1ea9c4b3c35d7cec6a5398b7a522 (diff)
parent36a733af8dee1de5a0f81f1efe70e96a435b6a17 (diff)
downloadwallabag-61e79d934495ee24bb824e4c26b534ef9cd7fec3.tar.gz
wallabag-61e79d934495ee24bb824e4c26b534ef9cd7fec3.tar.zst
wallabag-61e79d934495ee24bb824e4c26b534ef9cd7fec3.zip
Merge pull request #510 from mariroz/dev
some baggy theme fixes and enhancement: issue #479
Diffstat (limited to 'themes/baggy/css')
-rwxr-xr-xthemes/baggy/css/main.css67
1 files changed, 65 insertions, 2 deletions
diff --git a/themes/baggy/css/main.css b/themes/baggy/css/main.css
index 9a65dbee..fe77a967 100755
--- a/themes/baggy/css/main.css
+++ b/themes/baggy/css/main.css
@@ -177,7 +177,7 @@ h2:after {
177 left: 0; 177 left: 0;
178 text-align: right; 178 text-align: right;
179 background: #333; 179 background: #333;
180 padding-top: 9em; 180 padding-top: 9.5em;
181 height: 100%; 181 height: 100%;
182 box-shadow:inset -4px 0 20px rgba(0,0,0,0.6); 182 box-shadow:inset -4px 0 20px rgba(0,0,0,0.6);
183 z-index: 10; 183 z-index: 10;
@@ -188,6 +188,7 @@ h2:after {
188 position: relative; 188 position: relative;
189 z-index: 10; 189 z-index: 10;
190 padding-right: 5%; 190 padding-right: 5%;
191 padding-bottom: 1em;
191} 192}
192 193
193 #links a { 194 #links a {
@@ -237,6 +238,61 @@ h2:after {
237 } 238 }
238 239
239 240
241#sort {
242 padding: 0;
243 list-style-type: none;
244 opacity: 0.5;
245 display: inline-block;
246}
247
248#sort li {
249 display: inline;
250 font-size: 0.9em;
251}
252
253#sort li + li {
254 margin-left: 10px;
255}
256
257#sort a {
258 padding: 2px 2px 0;
259 vertical-align: middle;
260}
261
262#sort img {
263 vertical-align: baseline;
264}
265#sort img:hover {
266 cursor: pointer;
267}
268
269#display-mode {
270 float: right;
271 vertical-align: middle;
272 margin-top: 10px;
273 margin-bottom: 10px;
274 opacity: 0.5;
275}
276#listmode {
277 width: 16px;
278 display: inline-block;
279 text-decoration: none;
280}
281#listmode a:hover {
282 opacity: 1;
283}
284.tablemode {
285 background-image: url("../img/baggy/table.png");
286 background-repeat: no-repeat;
287 background-position: bottom;
288}
289.listmode {
290 background-image: url("../img/baggy/list.png");
291 background-repeat: no-repeat;
292 background-position: bottom;
293}
294
295
240/* ========================================================================== 296/* ==========================================================================
241 2 = Layout 297 2 = Layout
242 ========================================================================== */ 298 ========================================================================== */
@@ -248,7 +304,7 @@ h2:after {
248 304
249footer { 305footer {
250 text-align: right; 306 text-align: right;
251 position: fixed; 307 position: relative;
252 bottom: 0; 308 bottom: 0;
253 right: 5em; 309 right: 5em;
254 color: #999; 310 color: #999;
@@ -732,6 +788,9 @@ blockquote {
732 width: 100%; 788 width: 100%;
733 margin-left: 0; 789 margin-left: 0;
734 } 790 }
791 #display-mode {
792 display: none;
793 }
735} 794}
736 795
737@media screen and (max-width: 500px) { 796@media screen and (max-width: 500px) {
@@ -821,4 +880,8 @@ blockquote {
821 #article_toolbar a { 880 #article_toolbar a {
822 padding: 0.3em 0.4em 0.2em; 881 padding: 0.3em 0.4em 0.2em;
823 } 882 }
883
884 #display-mode {
885 display: none;
886 }
824} 887}