Skip to content

Commit

Permalink
Merge branch 'release-10.1' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed Jan 28, 2025
2 parents 83e0e2f + 5f1ba2d commit 6b1ac1e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,14 @@ public function testBulkControls(int $windowWidth, int $windowHeight, array $con

// Test visibility of search result bulk items and checkbox:
$shouldBeVisible = $controlVisibility['bulk'];
$this->assertEquals($shouldBeVisible, $this->findCss($page, '.bulkActionButtons')->isVisible());
$this->assertEquals(
$shouldBeVisible,
$this->findCss($page, '#search-cart-form .bulkActionButtons')->isVisible()
);
$this->assertEquals(
$shouldBeVisible,
$this->findCss($page, '.mainbody > .bulkActionButtons')->isVisible()
);
$this->assertEquals($shouldBeVisible, $this->findCss($page, '.checkbox-select-item')->isVisible());

// Add a favorite:
Expand Down
2 changes: 1 addition & 1 deletion themes/bootstrap5/css/compiled.css

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions themes/bootstrap5/scss/components/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ $thumbnail-width-large: 160px !default;
#datevispublishDatexWrapper,
// Bulk action checkboxes:
#search-cart-form .result .checkbox,
// Search result bulk action buttons:
#search-cart-form .bulkActionButtons,
// Favorites bulk action buttons:
form[name="bulkActionForm"] .bulkActionButtons { display: none; }
// Search result and favorites bulk action buttons:
.bulkActionButtons { display: none; }
}

.searchHomeContent { @include clearfix(); }
Expand Down
2 changes: 1 addition & 1 deletion themes/local_theme_example/css/compiled.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/sandal5/css/compiled.css

Large diffs are not rendered by default.

0 comments on commit 6b1ac1e

Please sign in to comment.