From 5b1457835be6c00a7d108537ecc88d3d85d48d51 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Tue, 28 Apr 2020 18:08:35 +0200 Subject: feat: select all for code inputs This enable the "select all" feature for `input.select-all` element. input elements are used because these are the only one with the `select()` method. To obtain the same rendering as before the readonly attribute and the class `code` have been added to these elements. @vincent-peugnet: make sure to use this element for future select-all Closes #107 --- assets/css/home.css | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'assets/css') diff --git a/assets/css/home.css b/assets/css/home.css index e06165b..2451f9b 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -125,7 +125,7 @@ div#deepsearchbar { -aside .submenu code, main.user li code { +aside .submenu input.code, main.user li code { overflow: auto; display: block; white-space: nowrap; @@ -479,9 +479,10 @@ main.media table#medialist .thumbnail:hover img { -main.media code { +main.media code, input.code { color: #9cbfe8; background-color: darkslategrey; + font-family: monospace; font-size: small; padding: 1px; } @@ -492,11 +493,9 @@ nav.media span#currentdir { -td.code { - background-color: darkslategrey; - max-width: 250px; - white-space: nowrap; - overflow: hidden; +input.code { + width: 100%; + border: none; } @@ -599,7 +598,7 @@ main.timeline li.event { main section { display: flex; flex-direction: column; - max-width: calc(100% - 160px); + overflow: hidden; } main nav { -- cgit v1.2.3