aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2019-03-03 02:16:19 +0100
committerKevin Decherf <kevin@kdecherf.com>2019-03-03 19:22:32 +0100
commit246cc9ac939f076fb7b2453e1b616a8b3500e1d1 (patch)
tree37029730ba8aa7201a1ab37c4974ad8d91874685
parentf1f1efb5def331721e03bc55ac3be81fbae8fd01 (diff)
downloadwallabag-246cc9ac939f076fb7b2453e1b616a8b3500e1d1.tar.gz
wallabag-246cc9ac939f076fb7b2453e1b616a8b3500e1d1.tar.zst
wallabag-246cc9ac939f076fb7b2453e1b616a8b3500e1d1.zip
material: add media queries to hide creation date from card actions
Hide the creation date from card actions on specific sizes when there's not enough space for all parts. Fixes #3851 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
-rw-r--r--app/Resources/static/themes/material/css/media_queries.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/media_queries.scss b/app/Resources/static/themes/material/css/media_queries.scss
index 1626365e..32d8c484 100644
--- a/app/Resources/static/themes/material/css/media_queries.scss
+++ b/app/Resources/static/themes/material/css/media_queries.scss
@@ -174,3 +174,12 @@
174 padding: 0; 174 padding: 0;
175 } 175 }
176} 176}
177
178@media screen and (max-width: 310px),
179 screen and (min-width: 601px) and (max-width: 660px),
180 screen and (min-width: 993px) and (max-width: 1050px),
181 screen and (min-width: 1201px) and (max-width: 1250px) {
182 .card .card-action .reading-time .card-created-at {
183 display: none;
184 }
185}