Merge pull request #5335 from betagouv/fix-disclosure-indicator

Usager : le triangle à côté de la date de clôture de la démarche est maintenant correctement masqué
This commit is contained in:
Pierre de La Morinerie 2020-07-07 10:37:24 +02:00 committed by GitHub
commit 38bc85d8d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View file

@ -227,7 +227,7 @@ GEM
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
faraday (0.15.4) faraday (0.15.4)
multipart-post (>= 1.2, < 3) multipart-post (>= 1.2, < 3)
ffi (1.12.2) ffi (1.13.1)
ffi-geos (2.1.0) ffi-geos (2.1.0)
ffi (>= 1.0.0) ffi (>= 1.0.0)
flipper (0.17.2) flipper (0.17.2)
@ -525,9 +525,9 @@ GEM
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0) thor (>= 0.19.0, < 2.0)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.3) rake (13.0.1)
rake-progressbar (0.0.5) rake-progressbar (0.0.5)
rb-fsevent (0.10.3) rb-fsevent (0.10.4)
rb-inotify (0.10.1) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
react-rails (2.4.7) react-rails (2.4.7)
@ -620,8 +620,7 @@ GEM
sprockets (> 3.0) sprockets (> 3.0)
sprockets-rails sprockets-rails
tilt tilt
scss_lint (0.57.1) scss_lint (0.59.0)
rake (>= 0.9, < 13)
sass (~> 3.5, >= 3.5.5) sass (~> 3.5, >= 3.5.5)
selectize-rails (0.12.6) selectize-rails (0.12.6)
selenium-webdriver (3.141.0) selenium-webdriver (3.141.0)

View file

@ -51,7 +51,10 @@ $procedure-description-line-height: 22px;
summary { summary {
font-size: 20px; font-size: 20px;
&:-webkit-details-marker { // Hide the default triangle details marker
list-style: none;
// (using the non-standard way for Chrome.)
&::-webkit-details-marker {
display: none; display: none;
} }
} }