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

Fix #1399: Make the update dialog text selectable #2990

Merged
merged 3 commits into from
Mar 1, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/styles/brackets_patterns_override.less
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,19 @@
.update-text {
// Icon is 120px, so we need at least that much left padding/margin to avoid overlap
margin: 0 10px 0 123px;

.update-info {
max-height: 200px;
overflow: auto;

// Enable text selection
cursor: auto;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}
}
}
Expand Down