Skip to content

Commit

Permalink
CCS-4579: Allow xref-ids to wrap so they can be copied (#622)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
wesruv committed Aug 24, 2021
1 parent 2f6ca9b commit e728530
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion pantheon-bundle/frontend/src/app/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,21 @@ color: var(--pf-global--success-color--100)
.repo-list-container{
height: 500px;
overflow-y: auto;
}
}

.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;
}

0 comments on commit e728530

Please sign in to comment.