From: Go MAEDA Date: Wed, 11 Sep 2019 02:06:56 +0000 (+0000) Subject: Don't use ^= operator to target the wrapper elements (#30467). X-Git-Tag: 4.1.0~633 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cf8232b4ca44c66fa4685ee205c8c51af9a2fe03;p=redmine.git Don't use ^= operator to target the wrapper elements (#30467). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@18446 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 76363d9a3..45bcc3d39 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -11,7 +11,7 @@ h4 {border-bottom: 1px solid #ccc; font-weight:normal;} pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;} /***** Layout *****/ -div[id^="wrapper"] { min-height: inherit; } +div#wrapper, div#wrapper2, div#wrapper3 { min-height: inherit; } #wrapper {background: white;overflow: hidden;} #wrapper3 { display: flex; flex-direction: column; }