Skip to content

Commit e728530

Browse files
authored
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
1 parent 2f6ca9b commit e728530

File tree

1 file changed

+18
-1
lines changed
  • pantheon-bundle/frontend/src/app

1 file changed

+18
-1
lines changed

pantheon-bundle/frontend/src/app/app.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,21 @@ color: var(--pf-global--success-color--100)
132132
.repo-list-container{
133133
height: 500px;
134134
overflow-y: auto;
135-
}
135+
}
136+
137+
.pf-c-tree-view__node-text[class] {
138+
overflow:visible;
139+
white-space:break-spaces;
140+
overflow-wrap: break-word;
141+
-webkit-user-select: text;
142+
-moz-user-select: text;
143+
-ms-user-select: text;
144+
user-select: text;
145+
}
146+
147+
.pf-c-tree-view__node {
148+
-webkit-user-select: text;
149+
-moz-user-select: text;
150+
-ms-user-select: text;
151+
user-select: text;
152+
}

0 commit comments

Comments
 (0)