-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Captcha styles, fix subscribe to product alignment, prevent custom styles from interfering with predefined widgets #2734
base: fui/master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,31 @@ | |
@import "fui/operation-details.scss"; | ||
@import "fui/apis-products-lists.scss"; | ||
@import "fui/reports.scss"; | ||
|
||
/** | ||
* If you need to make sure that custom defined styles do not interfere with widgets, | ||
* this is a good place to do it. | ||
* Note: selector is duplicated to increase its weight. Do not use !important as it will break | ||
* some widgets that rely on inline styles. | ||
*/ | ||
.fui-FluentProvider.fui-FluentProvider.fui-FluentProvider { | ||
.button { | ||
margin: 10px 20px 10px 0; | ||
padding: 9px 50px; | ||
} | ||
|
||
.form-group { | ||
margin: 5px 10px 20px 0; | ||
padding: 0; | ||
|
||
label { | ||
margin: 0 0 0.5em; | ||
padding: 0; | ||
} | ||
|
||
.form-control { | ||
margin: 0; | ||
padding: 7px 10px 5px; | ||
} | ||
} | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please, move all this to another file. Let's keep this for just imports. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why? This seems as an appropriate file to import all specific widget styles as well as defining global widget styles as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is not redesign specific. Please, create a new one and place it there. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Where do we put
Read a comment I written to it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There is a folder named fui right next to this file.
Ok. My bad. Let's leave like this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am still sure this 50px value is wrong for the redesign. I know you took it from old widgets. Please, check designs and come up with proper spacing. For everything you specify here, not just this padding.