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