Skip to content

Commit

Permalink
Hide the drupal "Apply" button in search-full-text form
Browse files Browse the repository at this point in the history
The "Apply" button in the Drupal form cannot be removed directly in the view, so it is hidden using CSS to prevent it from displaying.
  • Loading branch information
kasperbirch1 committed Oct 24, 2024
1 parent 1434326 commit b24bbb6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/stories/Library/search-full-text/search-full-text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@
display: grid;
place-items: center;
}

// Hide the submit button from the Drupal form with CSS
// The button cannot be removed directly in the Drupal view, so we hide it using CSS
.search-full-text input[value="Apply"] {
display: none;
}

0 comments on commit b24bbb6

Please sign in to comment.