You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thanks for your great work.
There is a glitch in color selector button on RTL pages (e.g. RTL WP setups) that unfortunately causes to have two color layers seperated so we have no transparent preview on selector button and instead there are 2 squares, one empty and one with non-alpha color.
My simple solution was to use this CSS code: html[dir=rtl] .color-alpha { left: unset!important; right: 0!important; }
P.S. Since the style of that element implemented by JS, using this CSS code in an external CSS file may not work, I suggest using it as inline within HTML code after </form>.
The text was updated successfully, but these errors were encountered:
First of all thanks for your great work.
There is a glitch in color selector button on RTL pages (e.g. RTL WP setups) that unfortunately causes to have two color layers seperated so we have no transparent preview on selector button and instead there are 2 squares, one empty and one with non-alpha color.
My simple solution was to use this CSS code:
html[dir=rtl] .color-alpha { left: unset!important; right: 0!important; }
P.S. Since the style of that element implemented by JS, using this CSS code in an external CSS file may not work, I suggest using it as inline within HTML code after
</form>
.The text was updated successfully, but these errors were encountered: