X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=app%2FResources%2Fstatic%2Fthemes%2Fmaterial%2Fcss%2Fmedia_queries.scss;h=b50dd559706eb8ddb710f99621aa9147fb7f6fc0;hb=6bd8f626e4a87a500e7d7904916dc593052d49c9;hp=48f3aefc824f942d8333f85cb6a1d629d6d40c05;hpb=613a8ec3123de83013837bf97b59c3bd1af02548;p=github%2Fwallabag%2Fwallabag.git diff --git a/app/Resources/static/themes/material/css/media_queries.scss b/app/Resources/static/themes/material/css/media_queries.scss index 48f3aefc..b50dd559 100644 --- a/app/Resources/static/themes/material/css/media_queries.scss +++ b/app/Resources/static/themes/material/css/media_queries.scss @@ -14,6 +14,12 @@ } } +@media screen and (min-width: 993px) { + body.entry main #content { + padding-left: 70px; + } +} + @media only screen and (max-width: 992px) { header, main, @@ -22,12 +28,22 @@ padding-left: 0; } + table { + display: block; + overflow: auto; + } + + iframe { + max-width: 100%; + height: auto; + } + .nav-panels .action { padding-right: 0.75rem; } .nav-panel-buttom { - justify-content: space-around; + justify-content: space-between; } #article { @@ -153,4 +169,23 @@ .row .col { padding: 0; } + + .card-stacked div.metadata .reading-time { + display: none; + } +} + +@media screen and (max-width: 310px), + screen and (min-width: 601px) and (max-width: 660px), + screen and (min-width: 993px) and (max-width: 1050px), + screen and (min-width: 1201px) and (max-width: 1250px) { + .card .card-action .reading-time .card-created-at { + display: none; + } +} + +@media only print { + body { + display: block; + } }