Merge pull request #3004 from evazion/fix-responsive-taglist

Fix tag list for responsive layout.
This commit is contained in:
Albert Yi
2017-05-01 14:51:53 -07:00
committed by GitHub
2 changed files with 15 additions and 19 deletions

View File

@@ -13,8 +13,21 @@
display: none; display: none;
} }
aside { div#page {
font-size: 18pt; > div /* div#c-$controller */ {
> div /* div#a-$action */ {
display: flex;
flex-direction: column;
/* Move #sidebar below #content. */
> aside#sidebar {
font-size: 1.5em;
float: none;
width: auto;
order: 2;
}
}
}
} }
#maintoggle { #maintoggle {
@@ -109,13 +122,6 @@
} }
} }
section#responsive-tag-list {
display: block;
h1 {
font-size: 1em;
}
}
div#page { div#page {
div.comments-for-post div.list-of-comments article.comment div.content { div.comments-for-post div.list-of-comments article.comment div.content {
clear: both; clear: both;
@@ -166,10 +172,6 @@
} }
@media screen and (max-width: 440px) { @media screen and (max-width: 440px) {
#responsive-tag-list {
display: block;
}
input#expand-search { input#expand-search {
display: none; display: none;
} }

View File

@@ -299,12 +299,6 @@ div#c-posts {
font-size: $h4_size; font-size: $h4_size;
} }
aside#sidebar > section#pool-sidebar {
span.ui-icon {
color: #666;
}
}
aside#sidebar > section > ul { aside#sidebar > section > ul {
margin-bottom: 1em; margin-bottom: 1em;
} }