Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
7 changes: 7 additions & 0 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
border: 0;
list-style: none;
outline: none;
user-select: none;
-webkit-user-drag: none;
-webkit-app-region: no-drag;
}

html, body {
Expand Down Expand Up @@ -871,6 +874,10 @@ input[type="number"]::-webkit-inner-spin-button {
bottom: 0;
}

#log .wrapper > *, #log .wrapper > * > *{
user-select: text;
}

#log a {
font-weight: normal;
color: #ffbb00;
Expand Down
6 changes: 5 additions & 1 deletion src/css/tabs/cli.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,14 @@
font-family: monospace;
color: white;
box-sizing: border-box;
-webkit-user-select: text;
float: left;
}


.tab-cli .window .wrapper, .tab-cli .window .wrapper > * {
user-select: text;
}

.tab-cli textarea[name='commands'] {
-webkit-box-sizing: border-box;
width: 100%;
Expand Down