diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-07-21 22:24:52 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-07-21 22:24:52 +0200 |
commit | 6fc269b62a0f312a577228c077b2d1b58a9df12f (patch) | |
tree | 90c492a64952cec81905c6471b81db8c5feb77d9 | |
parent | 348979c13d284c7e81cae3c1cb18a88fed8494c1 (diff) | |
parent | 0e2c927551b88e9552f76f79b6e2f2ba7b41fdee (diff) | |
download | forums-6fc269b62a0f312a577228c077b2d1b58a9df12f.tar forums-6fc269b62a0f312a577228c077b2d1b58a9df12f.tar.gz forums-6fc269b62a0f312a577228c077b2d1b58a9df12f.tar.bz2 forums-6fc269b62a0f312a577228c077b2d1b58a9df12f.tar.xz forums-6fc269b62a0f312a577228c077b2d1b58a9df12f.zip |
Merge branch '3.2.x' into 3.3.x
-rw-r--r-- | phpBB/styles/prosilver/template/posting_attach_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/plupload.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html index b46e9c9175..ff5bfe1b55 100644 --- a/phpBB/styles/prosilver/template/posting_attach_body.html +++ b/phpBB/styles/prosilver/template/posting_attach_body.html @@ -34,7 +34,7 @@ </tr> </thead> <tbody class="responsive-skip-empty file-list" id="file-list"> - <tr class="attach-row" id="attach-row-tpl"> + <tr class="attach-row attach-row-tpl" id="attach-row-tpl"> <td class="attach-name"> <span class="file-name ellipsis-text"></span> <span class="attach-controls"> diff --git a/phpBB/styles/prosilver/theme/plupload.css b/phpBB/styles/prosilver/theme/plupload.css index f466803964..b1f3ae2da8 100644 --- a/phpBB/styles/prosilver/theme/plupload.css +++ b/phpBB/styles/prosilver/theme/plupload.css @@ -3,6 +3,10 @@ margin-bottom: 1em; } +.attach-row-tpl { + display: none; +} + .file-list td { vertical-align: middle; } |