-
Notifications
You must be signed in to change notification settings - Fork 33
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(ePlatform): adjust ul list style and wrapper style (max-width
and padding
)
#4552
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
@@ -504,6 +504,11 @@ | |||
ul { | |||
list-style: initial; | |||
} | |||
ul.quickMenuList, |
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've found that Upload
was affected by this as well, and we had to add
ul.dnb-upload__file-list,
Might be more potential ul
use in Eufemia that is not covered by these selectors.
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 think we can rather take care of the Eufemia classes, instead going globally in. So instead of using ul
we can target .dnb-ul
. So then we don't need to find all other possible lists to reverse it again.
54b2cf8
to
d3af587
Compare
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.
Let's see if this improves it🤞
## [10.64.0](v10.63.4...v10.64.0) (2025-02-17) ### ✨ Features * **Field.Expiry:** add month and year validation ([#4571](#4571)) ([bc4fff9](bc4fff9)) * **Forms:** add `createMinimumAgeVerifier` to Field.NationalIdentityNumber ([#4542](#4542)) ([ceb8c2d](ceb8c2d)) * **Forms:** add `insertAt` to Iterate.PushContainer ([#4555](#4555)) ([6160d78](6160d78)) * **Forms:** add `reverse` to Iterate.Array ([#4556](#4556)) ([0b9ba79](0b9ba79)) * **Forms:** add Bring API connector for postal code validation and autofill city ([#4554](#4554)) ([f2ccd5d](f2ccd5d)) * **Forms:** add feature fields Field.Address.Street & Field.Address.Postal ([#4562](#4562)) ([c546009](c546009)) * **Forms:** provide `{ props }` to the second `onChange`, `onFocus` and `onBlur` event parameter ([#4550](#4550)) ([374ff0e](374ff0e)), closes [#4344](#4344) * **Forms:** show field indicator inline without shifting content below ([#4553](#4553)) ([45347a3](45347a3)) * **icons:** add digipass_corporate, digipass_private, calendar_add, investor, goal, layout_grid, table, show_pin ([#4522](#4522)) ([c5db964](c5db964)), closes [#4527](#4527) * **PostalCodeAndCity:** deprecate `country` in favor of `countryCode` ([#4572](#4572)) ([8d0d980](8d0d980)) ### 📝 Documentation * **InfoOverlay:** display fallback content when `undefined` ([#4580](#4580)) ([9879149](9879149)) * link to base fields from their respective value components ([#4564](#4564)) ([3d71c19](3d71c19)) * link to feature fields from their respective value components ([#4563](#4563)) ([45d0e3d](45d0e3d)) * removes duplicated docs for help prop ([#4568](#4568)) ([ae46e71](ae46e71)) ### 🐛 Bug Fixes * **DatePicker:** compare `date` and `maxDate` at same time of day so `is_valid_end_date` is `true` when `date` and `maxDate` are the same date ([#4565](#4565)) ([c52a40b](c52a40b)) * **Drawer:** ensure content on very small screen sizes doesn't get cut off ([#4567](#4567)) ([1dd405f](1dd405f)) * **ePlatform:** adjust ul list style and wrapper style (`max-width` and `padding`) ([#4552](#4552)) ([44f551e](44f551e)) * **Forms:** ensure city in PostalCodeAndCity accepts non-Norwegian characters when using other country ([#4569](#4569)) ([af1bdc8](af1bdc8)) * **Forms:** reveal error only when onChangeValidator is actually the initiator ([#4570](#4570)) ([4d962df](4d962df)) * **Name:** support spacing props ([eb6a412](eb6a412)) * **TextArea:** ResizeObserver loop completed with undelivered notifications ([#4582](#4582)) ([f2f97e3](f2f97e3)) * **Wizard.Step:** use `title` as aria-label when wrapped in `Wizard.Container` ([#4573](#4573)) ([de095e7](de095e7))
🎉 This PR is included in version 10.64.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Fixes #4524