Missing Buttons

DrWizzle

Verified User
Joined
Aug 8, 2021
Messages
28
Evening guys,

Just updated my DA and realised there's now buttons missing in the Evo skin (I use the icons grid variation) and the save / ok / update buttons are missing. Well, I say missing, they still work but in the light theme, there's no visible button, even though you can click where it would be to submit.

I'm running the latest version of DA on all of my servers.

1.677 (72f26fc420cdcb53e32c96b483f5b2b89c50766e)


1747775733535.png


Code:
Seems like it's this piece of CSS that's causing the issue.

1747776046634.png


To temporarily fix this i've added this to the custom CSS in the theme. I don't know if anyone wants to fix this bug in the next DA Hotfix/Update?
Code:
html.vue-app:dir(ltr) .inputGroup .inputGroup-wrap.inputGroup-wrap>.inputGroup-right .button, html.vue-app:dir(ltr) .inputGroup .inputGroup-wrap.inputGroup-wrap>.inputGroup-right input[type=text], html.vue-app:dir(ltr) .inputGroup .inputGroup-wrap.inputGroup-wrap>.inputGroup-right input[type=password] {
    border-left-color: transparent;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--bg);
}
 
Back
Top