# HG changeset patch # User Goffi # Date 1692374284 -7200 # Node ID 387c8c5a3bee7a481e499060be64a1fae4a752d5 # Parent 788729e741cc478f0d8d8f36b7e6ead1eaeed1ed bulma (styles): disable the delete cross on search input: on webkit/chromium based browsers, a delete cross is added automatically to search input. This patch remove it as we use our own when necessary, and to keep the cross consistent between browsers. diff -r 788729e741cc -r 387c8c5a3bee sat_templates/templates/bulma/static/styles.css --- a/sat_templates/templates/bulma/static/styles.css Fri Aug 18 11:19:40 2023 +0200 +++ b/sat_templates/templates/bulma/static/styles.css Fri Aug 18 17:58:04 2023 +0200 @@ -18,6 +18,14 @@ overflow: hidden; } + +input[type="search"]::-webkit-search-cancel-button { + /* We disable cancel button on webkit based browser for consistency, as we add our */ + /* own when necessary */ + display: none; +} + + .is-full-below-menu { /* full viewport minus top menu height */ position:relative;