Follow-ups D&D of multiple files results in uploading only one [1.1.3] attachment details June 21, 2018, 07:47:40 am Oops, what happened here?Here's a link too: https://forum-alternative-antriebe.de/index.php/topic,6805.msg135491.html#msg135491Of course with my IE11. ETA: moved the second report to https://www.elkarte.net/community/index.php?topic=5314.0 Last Edit: June 21, 2018, 08:51:44 am by emanuele
Re: [1.1.3] attachment details Reply #1 – June 21, 2018, 11:54:48 am It seems I'm the one with problems! Strange, attachments from another user look okay.
Re: [1.1.3] attachment details Reply #2 – June 21, 2018, 12:29:09 pm It depends on the width of the image (actually on the ratio I guess).
Re: [1.1.3] attachment details Reply #3 – June 21, 2018, 12:39:11 pm You mean when it's wider then the text box below?
Re: [1.1.3] attachment details Reply #5 – June 21, 2018, 01:31:38 pm I think you are right. In the meantime I've seen the same behaviour with other images wider then the text box.
Re: [1.1.3] attachment details Reply #6 – June 21, 2018, 03:48:37 pm Could you try changing the css for a test .... findCode: [Select].attachment_name, .attachment_details {and change from display: block to display: inline-block ... that may help
Re: [1.1.3] attachment details Reply #7 – June 22, 2018, 02:31:45 pm Didn't found the "display: block;" line in the default theme's light CSS. I only had this:Code: [Select].attachment_name { border-bottom: none;}.attachment_details { border-top: none; border-radius: 0 0 .5em .5em;}I changed it to:Code: [Select].attachment_name { border-bottom: none; display: inline-block;}.attachment_details { border-top: none; border-radius: 0 0 .5em .5em; display: inline-block;}Still looks the same. No difference. My custom CSS file doesn't have this code at all, so that should not be a problem, right?
Re: [1.1.3] attachment details Reply #8 – June 22, 2018, 11:21:18 pm It should have been in your main index.css, undo whatever you did and see if that line is in that main css file
Re: [1.1.3] attachment details Reply #9 – June 23, 2018, 06:21:56 am Oh okay, found it in themes/default/css/index.css. But I am using the light variant, shouldn't it be in the light css file then?Anyway, I changed it in the main theme css (my theme hasn't one, only a light css file) and nothing changes.
Re: [1.1.3] attachment details Reply #10 – June 23, 2018, 08:14:41 am Quote from: Jorin - June 23, 2018, 06:21:56 amOh okay, found it in themes/default/css/index.css. But I am using the light variant, shouldn't it be in the light css file then?Variants change colors, main theme defines structure.Display is not a color, but is structure, so main theme.