From e728530b669fc14cd48aa5640fde9f44fc090d95 Mon Sep 17 00:00:00 2001 From: wesruv Date: Tue, 24 Aug 2021 09:01:44 -0400 Subject: [PATCH] CCS-4579: Allow xref-ids to wrap so they can be copied (#622) * CCS-4579: Allow xref-ids to wrap so they can be copied * CCS-4579: Add user-select to tree view button to make highlighting easier --- pantheon-bundle/frontend/src/app/app.css | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pantheon-bundle/frontend/src/app/app.css b/pantheon-bundle/frontend/src/app/app.css index 237402541..9e748613d 100644 --- a/pantheon-bundle/frontend/src/app/app.css +++ b/pantheon-bundle/frontend/src/app/app.css @@ -132,4 +132,21 @@ color: var(--pf-global--success-color--100) .repo-list-container{ height: 500px; overflow-y: auto; -} \ No newline at end of file +} + +.pf-c-tree-view__node-text[class] { + overflow:visible; + white-space:break-spaces; + overflow-wrap: break-word; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} + +.pf-c-tree-view__node { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +}