eddiesigner / liebling

Beautiful and clean Ghost theme that is easy and comfortable to use. To get the latest version please head over the releases page 👉🏼
https://github.com/eddiesigner/liebling/releases
MIT License
1.26k stars 603 forks source link

CSS problems with several input types #501

Closed Nemental closed 1 year ago

Nemental commented 1 year ago

I created a page and inserted custom HTML for a form, but the rendered result is unusable. You can see an example in the screenshots below.

With the following CSS snippet I was able to fix the width and padding a bit, but appearance doesn't work because it's not overridable.

input[type='radio'], input[type='checkbox'], label>input
{
    width: auto !important;
    padding: 0px !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}
Screenshots ![Bildschirmfoto 2023-01-12 um 16 43 04](https://user-images.githubusercontent.com/15136847/212113132-73b19e5c-e21e-46aa-9ea3-51bfc27f3b69.png) ![Bildschirmfoto 2023-01-12 um 16 43 25](https://user-images.githubusercontent.com/15136847/212113140-c23e98b1-1f35-47ff-872b-11641a9873c0.png)
eddiesigner commented 1 year ago

Thanks for the heads up! This is already fixed in the latest version.

Nemental commented 1 year ago

Great! I'll try it out, thank you 👍