How to custom property type radio StyleManager #4044
Unanswered
alemenciones
asked this question in
Q&A
Replies: 1 comment 2 replies
-
you can use |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want add to the styleManager a radio group like "text-align", but to change margin-left|right properties
radio button "left": margin-left: 0 !important;
radio button "center": margin-left: auto !important; and margin-right: auto !important;
radio button "right": margin-left: auto !important; and margin-right: 0 !important;
maybe the way is setting just margin, but I need to keep the values that the user has set for top and bottom (n)
radio button "left": margin: n 0 n n !important;
radio button "center": margin: n auto n auto !important;
radio button "right": margin: n auto n 0 !important;
Beta Was this translation helpful? Give feedback.
All reactions