Mercurial > libervia-templates
comparison sat_templates/templates/bulma/static/styles.css @ 381:387c8c5a3bee
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.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 18 Aug 2023 17:58:04 +0200 |
parents | a5a80d761e3e |
children | 941e4006ab6e |
comparison
equal
deleted
inserted
replaced
380:788729e741cc | 381:387c8c5a3bee |
---|---|
15 flex-direction: column; | 15 flex-direction: column; |
16 height: 100vh; | 16 height: 100vh; |
17 width: 100vw; | 17 width: 100vw; |
18 overflow: hidden; | 18 overflow: hidden; |
19 } | 19 } |
20 | |
21 | |
22 input[type="search"]::-webkit-search-cancel-button { | |
23 /* We disable cancel button on webkit based browser for consistency, as we add our */ | |
24 /* own when necessary */ | |
25 display: none; | |
26 } | |
27 | |
20 | 28 |
21 .is-full-below-menu { | 29 .is-full-below-menu { |
22 /* full viewport minus top menu height */ | 30 /* full viewport minus top menu height */ |
23 position:relative; | 31 position:relative; |
24 height: calc(100vh - 52px); | 32 height: calc(100vh - 52px); |