diff options
author | Jonas Smedegaard <dr@jones.dk> | 2015-05-23 09:41:16 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2015-05-23 09:41:16 +0200 |
commit | 73f6b71a4a8a5abf5e5fa61f00e3e2373043c50b (patch) | |
tree | 83046af42646f90f4e1fa1e8187d9146ee91a7bd /actiontabs | |
parent | 5afc74f749a0f84840f246b01737b6ae6a15a428 (diff) | |
parent | 33269f63275936b2f20cc856721c536cf8ff9c17 (diff) |
Merge branch 'ikiwiki' into fixup
Diffstat (limited to 'actiontabs')
-rw-r--r-- | actiontabs/style.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/actiontabs/style.css b/actiontabs/style.css index b688ba3..bedc562 100644 --- a/actiontabs/style.css +++ b/actiontabs/style.css @@ -548,6 +548,51 @@ a.openid_large_btn:focus { .trailsep { display: none; } + +/* mobile/small-screen-friendly layout */ +@media (max-width: 600px) { + .sidebar { + width: auto; + float: none; + margin-top: 0; + border: none; + } + + /* if the mobile browser is new enough, use flex layout to shuffle + * the sidebar to the end */ + .page { + display: -webkit-box; + display: -webkit-flexbox; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-flex-direction: tb; + -webkit-flex-direction: column; + -webkit-flex-flow: column; + -ms-flex-direction: column; + flex-direction: column; + } + #pageheader { + -webkit-box-ordinal-group: -1; + -webkit-order: -1; + -ms-box-ordinal-group: -1; + -ms-flex-order: -1; + order: -1; + } + .sidebar, #footer { + -webkit-box-ordinal-group: 1; + -webkit-order: 1; + -ms-box-ordinal-group: 1; + -ms-flex-order: 1; + order: 1; + } + + .blogform, #blogform { + padding: 4px 4px; + } +} /* actiontabs theme for ikiwiki * * by svend @@ -697,3 +742,13 @@ div.recentchanges { /* allow space for the action tabs */ margin-bottom: 2em; } + +@media (max-width: 600px) { + #content, #enclosure, #comments, #footer { + margin: 0.5em; + } + .pageheader .actions ul li { + padding: .1em .2em 0 .2em; + font-size: 0.8em; + } +} |