1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 19:39:14 +00:00

add some media queries to improve main UI on small-width devices

This commit is contained in:
Andrew Dolgov
2021-03-11 19:26:19 +03:00
parent a4da2f1e62
commit f67d2623b7
10 changed files with 137 additions and 8 deletions

View File

@@ -887,6 +887,12 @@ body.ttrss_main {
.feed_title, .cancel_search {
margin-left : 4px;
}
@media (max-width: @breakpoint-md) {
.feed_title, i.icon-syndicate {
display : none;
}
}
}
.right {
@@ -907,11 +913,19 @@ body.ttrss_main {
color : @color-accent;
}
@media (max-width: 992px) {
@media (max-width: @breakpoint-md) {
#selected_prompt {
display : none;
}
}
@media (max-width: @breakpoint-sm) {
.select-articles-dropdown,
.catchup-button {
display : none;
}
}
}
}