From 92214ace100af7f407372aebc1190a931398eae4 Mon Sep 17 00:00:00 2001 From: ouidade Date: Wed, 23 Jul 2025 16:39:26 +0200 Subject: [PATCH] autoriser copier coller click droit --- .../quartiers_de_demain/dist/assets/css/bundle.css | 7 +++++++ .../src/assets/scss/global/_layout.scss | 10 +++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css b/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css index 412b723..44ed101 100644 --- a/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css +++ b/web/themes/custom/quartiers_de_demain/dist/assets/css/bundle.css @@ -217,6 +217,13 @@ h2, h3 { width: 100vw; } +body, html, * { + user-select: text !important; + -webkit-user-select: text !important; /* pour Safari */ + -moz-user-select: text !important; /* pour Firefox */ + -ms-user-select: text !important; /* pour IE/Edge */ +} + /* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */ ul { list-style-type: none; diff --git a/web/themes/custom/quartiers_de_demain/src/assets/scss/global/_layout.scss b/web/themes/custom/quartiers_de_demain/src/assets/scss/global/_layout.scss index 03abfa5..71d3379 100644 --- a/web/themes/custom/quartiers_de_demain/src/assets/scss/global/_layout.scss +++ b/web/themes/custom/quartiers_de_demain/src/assets/scss/global/_layout.scss @@ -60,4 +60,12 @@ $width-menu-slidedown : 550px; .layout--threecol-25-50-25{ width: 100vw; -} \ No newline at end of file +} + +body, html, * { + user-select: text !important; + -webkit-user-select: text !important; /* pour Safari */ + -moz-user-select: text !important; /* pour Firefox */ + -ms-user-select: text !important; /* pour IE/Edge */ + } + \ No newline at end of file