Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ defineExpose({ hideDrop })
max-width: 180px;
padding: var(--oc-space-xsmall) var(--oc-space-small) !important;
height: 100%;
min-height: 1.9591836735rem;
}
&-button-selected.oc-pill,
&-button-selected.oc-pill:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
v-if="icon"
v-oc-tooltip="$gettext('Search')"
:aria-label="$gettext('Search')"
class="oc-position-small oc-position-center-right oc-mt-rm"
class="btn-search-icon oc-position-small oc-position-center-right oc-mt-rm"
appearance="raw"
@click.prevent.stop="$emit('advancedSearch', $event)"
>
Expand Down Expand Up @@ -326,4 +326,9 @@ const loadingAccessibleLabelValue = computed(() => {
}
}
}

.btn-search-icon {
height: 1.9591836735rem;
width: 1.9591836735rem;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ function getSharedWithAvatarItems(resource: Resource) {
&-edit-name,
&-activity-indicator {
display: inline-flex;
margin-left: var(--oc-space-xsmall);
margin-left: var(--oc-space-small);

svg {
fill: var(--oc-color-text-muted);
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/support/objects/a11y/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const selectors = {
appSidebar: '#app-sidebar'
}

const a11yRuleTags = ['wcag2a', 'wcag2aa', 'wcag21a', 'wcag21aa', 'best-practice']
const a11yRuleTags = ['wcag2a', 'wcag2aa', 'wcag21a', 'wcag21aa', 'best-practice', 'wcag22aa']
// decide which tags should be included in the default configuration of axebuilder

export const analyzeAccessibilityConformityViolations = async (args: {
Expand Down