Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 0 additions & 8 deletions packages/repl/src/lib/Input/ComponentSelector.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,6 @@
cursor: pointer;
}

.remove:hover {
color: var(--sk-theme-3);
}

.file-tabs .button.active .editable {
cursor: text;
}
Expand All @@ -428,10 +424,6 @@
text-align: center;
}

.add-new:hover {
color: var(--sk-theme-3) !important;
}

.runes {
flex: 1;
display: flex;
Expand Down
4 changes: 1 addition & 3 deletions packages/repl/src/lib/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ const svelteThemeStyles = EditorView.theme(
'.cm-content': {
// ensure no gap between top of editor and highlighted first/last line
paddingTop: '0px',
paddingBottom: '0px',
caretColor: 'var(--sk-theme-3)'
paddingBottom: '0px'
},

'.cm-content .cm-line:first-child': {
Expand All @@ -52,7 +51,6 @@ const svelteThemeStyles = EditorView.theme(
alignItems: 'end'
},

'.cm-cursor, .cm-dropCursor': { borderLeftColor: 'var(--sk-theme-3)' },
'&.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground, .cm-selectionBackground, .cm-content ::selection':
{ backgroundColor: 'var(--sk-selection-color)' },

Expand Down
Loading