Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 72bedf8

Browse files
committed
Merge pull request #2990 from TomMalbran/tom/fix-issue-1399
Fix #1399: Make the update dialog text selectable
2 parents 4056886 + f8cd209 commit 72bedf8

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

src/styles/brackets_patterns_override.less

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,10 +401,19 @@
401401
.update-text {
402402
// Icon is 120px, so we need at least that much left padding/margin to avoid overlap
403403
margin: 0 10px 0 123px;
404-
404+
405405
.update-info {
406406
max-height: 200px;
407407
overflow: auto;
408+
409+
// Enable text selection
410+
cursor: auto;
411+
-webkit-user-select: text;
412+
-khtml-user-select: text;
413+
-moz-user-select: text;
414+
-ms-user-select: text;
415+
-o-user-select: text;
416+
user-select: text;
408417
}
409418
}
410419
}

0 commit comments

Comments
 (0)