-
Notifications
You must be signed in to change notification settings - Fork 771
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
browser: accessibility: remove 'div' container for dropdown button #9753
Open
hcvcastro
wants to merge
23
commits into
CollaboraOnline:master
Choose a base branch
from
hcvcastro:pr/master/78
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
4033845
browser: accessibility: remove 'div' container for dropdown button
hcvcastro e59884b
browser: accessibility: remove more 'div' dropdown button
hcvcastro 0aa95ae
browser: accessibility: fixup color dropdown button container
hcvcastro 39c4a01
browser: accessibility: set up all dropdown buttons to display 'flex'
hcvcastro 93f23db
browser: accessibility: button group image and label
hcvcastro eac8b86
browser: accessibility: fix notebookbar button display
hcvcastro 0b07ece
browser: accessibility: fix inline label button
hcvcastro 5e23e34
browser: accessibility: fix inline label button with no command
hcvcastro 3228827
browser: accessibility: remove button parent container
hcvcastro cc18a07
browser: accessibility: fix arrow click button
hcvcastro 71a5f22
cypress: fix prettier builddir != srcdir
a85b402
cypress: remove '.arrowbackground' class selector
1f03737
cypress: remove '-button' suffix
6b30ef5
cypress: remove 'button' class selector
a3896bb
cypress: fix 'button' class selector
fdf319c
cypress: add listener protocol function
hcvcastro 6cceada
cypress: fix 'clickOnFirstCell' function
hcvcastro e1a1b1a
cypress: fix "selectEntireSheet" function
b3178ef
cypress: fix "selectTextShape" function
c09931a
cypress: fix "selectFullTable" function
daf7015
cypress: fix impress table selections
d9bf4b5
cypress: fix "selectOptionNotebookbar" function
hcvcastro bfec81c
browser: accessibility: replace jquery 'addClass' function
hcvcastro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -1784,6 +1784,20 @@ input[type='number']:hover::-webkit-outer-spin-button { | |
align-items: center; | ||
} | ||
|
||
.jsdialog:not(.menubutton)..jsdialog:not(.dropdown) { | ||
width: var(--btn-size); | ||
} | ||
|
||
.jsdialog .ui-content.unobutton.no-label.dropdown { | ||
width: calc(var(--btn-size) + var(--btn-dropdown-size)) | ||
} | ||
|
||
.jsdialog .ui-content.unobutton:not(.dropdown) { | ||
height: var(--btn-size); | ||
min-width: var(--btn-size); | ||
padding: 0px; | ||
} | ||
|
||
.has-dropdown > .ui-content.unobutton { | ||
width: auto; | ||
} | ||
|
@@ -1804,13 +1818,36 @@ input[type='number']:hover::-webkit-outer-spin-button { | |
background-color: var(--color-background-darker); | ||
} | ||
|
||
.dropdown { | ||
display: flex; | ||
} | ||
|
||
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. below 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. yes, I forgot to remove it. |
||
.unotoolbutton.has-dropdown { | ||
display: grid; | ||
align-items: center; | ||
grid-auto-flow: column; | ||
grid-template-rows: auto 0px; | ||
} | ||
|
||
.unobutton.dropdown::after { | ||
content: ''; | ||
height: 0px; | ||
border: 4px solid transparent; | ||
border-top: 5px solid var(--color-main-text); | ||
display: inline-block; | ||
margin: auto; | ||
} | ||
|
||
.container-button, | ||
.container-color-inline { | ||
display: inline-block; | ||
pointer-events: none; | ||
} | ||
|
||
.unotoolbutton.jsdialog.sidebar.ui-content > .arrowbackground { | ||
width: auto; | ||
} | ||
|
||
/* handling show/hide state */ | ||
.hidden { | ||
display: none !important; | ||
|
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
typo
..
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.
Thanks