From 4e171324ca2b67d2e6ac158719a3a44909b47c48 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 15 Sep 2017 18:12:25 +0200 Subject: [PATCH] css: get rid of CSS "initial" value. I thought this behaves like the "reset" value. It doesn't. And support for the "reset" value is poor. --- css/m-components.css | 4 ++-- css/m-grid.css | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/css/m-components.css b/css/m-components.css index 6f07324c..5d10f793 100644 --- a/css/m-components.css +++ b/css/m-components.css @@ -29,7 +29,7 @@ main p { } main p.m-noindent { text-indent: 0; - text-align: initial; + text-align: left; } blockquote { margin-top: 0; @@ -171,7 +171,7 @@ body > header > nav:target #m-navbar-show { display: none; } body > header > nav:target #m-navbar-hide { - display: initial; + display: inline-block; } /* Header navigation -- 768px and up (tablets, desktops) */ diff --git a/css/m-grid.css b/css/m-grid.css index fc0efe3c..5570563a 100644 --- a/css/m-grid.css +++ b/css/m-grid.css @@ -222,7 +222,7 @@ body { .m-clearfix-t::after { display: none; } .m-hide-s { display: none; } - .m-show-s { display: initial; } + .m-show-s { display: block; } .m-col-s-none { width: auto; @@ -314,7 +314,7 @@ body { .m-clearfix-s::after { display: none; } .m-hide-m { display: none; } - .m-show-m { display: initial; } + .m-show-m { display: block; } .m-col-m-none { width: auto; @@ -406,7 +406,7 @@ body { .m-clearfix-m::after { display: none; } .m-hide-l { display: none; } - .m-show-l { display: initial; } + .m-show-l { display: block; } .m-col-l-none { width: auto; -- 2.30.2