-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix(modal): a11y retire la liste dans la zone d'actions [DS-1257] (#…
…720) - le groupe de bouton peut désormais être une `div` à la place d'un `ul``li` - retrait de la liste non ordonnée dans le footer de la modale
- Loading branch information
1 parent
3057c20
commit 151acd7
Showing
3 changed files
with
31 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ | |
} | ||
|
||
@mixin vertical-btns-group() { | ||
> li { | ||
> li, | ||
> div { | ||
width: 100%; | ||
max-width: 100%; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<%- include('../../../../button/example/sample/buttons-group', {buttonsGroup: {sizes:{md : {size:'md'}}, hierarchy: true, label: 'Label bouton', iconPlace:'left', align:'right', reverse: true, inline:'lg', icon :'checkbox-circle-line', group: true, groupCount: 2}}) %> | ||
<%- include('../../../../button/example/sample/buttons-group', {buttonsGroup: {groupMarkup: 'div', sizes:{md : {size:'md'}}, hierarchy: true, label: 'Label bouton', iconPlace:'left', align:'right', reverse: true, inline:'lg', icon :'checkbox-circle-line', group: true, groupCount: 2}}) %> |