Skip to content

XWIKI-22676: Implement UI improvements to the Search page #4314

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

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
602da4b
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Apr 16, 2025
b6aa640
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Apr 30, 2025
0555a8d
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Apr 30, 2025
570e42b
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 2, 2025
340f9cc
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 2, 2025
d98f574
Merge branch 'xwiki:master' into XWIKI-22676
Sereza7 May 6, 2025
838745b
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 6, 2025
6b3c02b
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 9, 2025
3644140
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 15, 2025
beee05d
Merge branch 'xwiki:master' into XWIKI-22676
Sereza7 May 26, 2025
c3d850d
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 26, 2025
a4d7656
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 26, 2025
2924d0b
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 26, 2025
b9ea32f
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 26, 2025
88931bc
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 May 27, 2025
5f32d73
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 2, 2025
d5b9c9b
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 4, 2025
6645eb0
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 4, 2025
0238992
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 5, 2025
6676c94
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 5, 2025
febc522
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 23, 2025
d3c7911
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 23, 2025
009fafd
XWIKI-22676: Implement UI improvements to the Search page
Sereza7 Jun 23, 2025
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 @@ -15,6 +15,10 @@ input[type="time"],
select,
textarea {
&:extend(.form-control all);
/* Bootstrap sets shadows on elements by default.
Since `XWIKI-20603: Updated XS Design (Minimalist Skin)`, XWiki has a more flat design,
and those elements should not come with a shadow. */
box-shadow: none;
display: inline-block;
max-width: 100%; /* Prevent resizing beyond the visible area in modern browsers */
width: auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,11 @@
subtypes.attr('aria-expanded', 'true');
}
subtypes.toggle(selected);
var togglerButton = category.find('.facet-value-toggler');
var toggleButton = category.find('.facet-value-toggle');
var dropdownID = category.attr('id') + '-dropdown';
subtypes.attr('id', dropdownID);
togglerButton.attr('aria-controls', dropdownID);
togglerButton.on('click', function() {
toggleButton.attr('aria-controls', dropdownID);
toggleButton.on('click', function() {
category.toggleClass('expanded');
subtypes.attr('aria-expanded', subtypes.attr('aria-expanded') === 'true' ? 'false' : 'true');
subtypes.toggle();
Expand Down Expand Up @@ -448,7 +448,7 @@
align-items: center;
}

.search-facet-body .facet-value-toggler:hover {
.search-facet-body .facet-value-toggle:hover {
background-color: $theme.highlightColor;
}

Expand Down
Loading