Skip to content
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
5 changes: 3 additions & 2 deletions src/web/canvas-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@ export const CANVAS_PAGE: string = `<!doctype html>
#dSendText { flex: 1; min-width: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: #f5f5f7; padding: 8px 10px; font-size: 12.5px; font-family: inherit; }
#dSendText:focus { outline: none; border-color: rgba(255,255,255,0.3); }
#dSendText:disabled { opacity: 0.4; }
#dSendBtn { border: 1px solid rgba(255,255,255,0.14); background: rgba(10,132,255,0.25); color: #f5f5f7; border-radius: 10px; padding: 8px 12px; cursor: pointer; font-family: inherit; font-size: 12.5px; }
#dSendBtn:disabled { opacity: 0.4; cursor: default; }
#dSendBtn, #dArchive { border: 1px solid rgba(255,255,255,0.14); background: rgba(10,132,255,0.25); color: #f5f5f7; border-radius: 10px; padding: 8px 12px; cursor: pointer; font-family: inherit; font-size: 12.5px; }
#dSendBtn:disabled, #dArchive:disabled { opacity: 0.4; cursor: default; }
#dArchive { width: 100%; margin-top: 8px; }
#dSendMsg { font-size: 11.5px; color: #98989f; margin: 6px 0 0; min-height: 15px; }
.node { position: absolute; width: 196px; background: #13161c; border: 1px solid rgba(255,255,255,.09);
border-radius: 14px; padding: 11px 13px; pointer-events: auto; cursor: grab; user-select: none;
Expand Down
Loading