?
avatar PhilETaylor
PhilETaylor
20 Sep 2020

Steps to reproduce the issue

Login to frontend of Joomla 4.0.0b4 as super admin
Edit any article
Select the publishing Tab
Note the dropdown for Category
Note the X next to the arrows down selector - far too close

Expected result

X to be somewhere else and not so close to the dropdown

Actual result

Screenshot 2020-09-20 at 15 41 18

System information (as much as possible)

Safari on Mac
Screenshot 2020-09-20 at 15 41 10

Additional comments

avatar PhilETaylor PhilETaylor - open - 20 Sep 2020
avatar joomla-cms-bot joomla-cms-bot - change - 20 Sep 2020
Labels Added: ?
avatar joomla-cms-bot joomla-cms-bot - labeled - 20 Sep 2020
avatar infograf768
infograf768 - comment - 20 Sep 2020

Macintosh, whatever the browser, I confirm.

avatar infograf768
infograf768 - comment - 20 Sep 2020

this is due to this css

.choices__button_joomla::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    text-align: center;
    text-indent: 0;
    content: "\00d7";
}

If I correct with

.choices__button_joomla::before {
    position: absolute;
    top: 0;
    right: 2rem;
    bottom: 0;
    left: auto;
    display: block;
    text-align: center;
    text-indent: 0;
    content: "\00d7";
}

it displays fine
(Evidently for RTL it would be the opposite)

Screen Shot 2020-09-20 at 18 48 12

Will look if no unwanted consequence and make PR if not.

avatar infograf768 infograf768 - change - 21 Sep 2020
Status New Closed
Closed_Date 0000-00-00 00:00:00 2020-09-21 07:43:47
Closed_By infograf768
avatar infograf768
infograf768 - comment - 21 Sep 2020

Please test #30710
Change is a bit different from proposed above as it was concerning choices[data-type*="select-one"]

Closing as we have a patch.

avatar infograf768 infograf768 - close - 21 Sep 2020

Add a Comment

Login with GitHub to post a comment