diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-07-01 20:46:27 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-07-21 20:47:16 +0200 |
commit | 17ef8a0369042ee8bf714c94ba74e23b4a9c3b5d (patch) | |
tree | e7ff18f5d4d5f9ab613dae65e5a17e376c5e48a0 /phpBB/styles/prosilver | |
parent | 9e9bdb69b5e00a4993b7ff9a6021044c9ec0c4dc (diff) | |
download | forums-17ef8a0369042ee8bf714c94ba74e23b4a9c3b5d.tar forums-17ef8a0369042ee8bf714c94ba74e23b4a9c3b5d.tar.gz forums-17ef8a0369042ee8bf714c94ba74e23b4a9c3b5d.tar.bz2 forums-17ef8a0369042ee8bf714c94ba74e23b4a9c3b5d.tar.xz forums-17ef8a0369042ee8bf714c94ba74e23b4a9c3b5d.zip |
[ticket/16093] Do not display attach-row-tpl
PHPBB3-16093
Diffstat (limited to 'phpBB/styles/prosilver')
-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; } |