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
29 changes: 28 additions & 1 deletion client/src/css/Modal.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ input[type='file'] {
.modal input[type='submit'],
.modal button,
.modal .file-upload-button {
border: none;
color: var(--vscode-button-foreground);
background: var(--vscode-button-background);
border: 1px solid var(--vscode-button-border);
cursor: pointer;
padding: 0.5rem 1rem;
border-radius: 0.2rem;
Expand All @@ -84,6 +84,33 @@ input[type='file'] {
margin: 1rem auto;
}

.modal input[type='text'],
.modal select {
padding: 10px 12px;

border: 1px solid var(--vscode-dropdown-border);
border-radius: 6px;
background-color: var(--vscode-input-background);
color: var(--vscode-input-foreground);

/* outline: none;
transition: all 0.2s ease-in-out;
box-sizing: border-box; */
}

.modal input[type='text'] {
font-family: 'JuliaMono';
}

.modal #abbreviationCharacter {
width: 15px;
margin-left: 4px;
}

.modal .MuiSwitch-track {
background-color: var(--vscode-input-foreground);
}

.modal .flex {
display: flex;
justify-content: space-between;
Expand Down
11 changes: 6 additions & 5 deletions client/src/css/Navigation.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@ nav select {
.tooltip .tooltiptext {
visibility: hidden;
min-width: 300px;
background-color: var(--vscode-input-foreground);
color: var(--vscode-input-background);
background-color: var(--vscode-editorHoverWidget-background);
color: var(--vscode-editorHoverWidget-foreground);
border: 1px solid var(--vscode-editorHoverWidget-border);
text-align: left;
border-radius: 5px;
padding: 10px;
Expand Down Expand Up @@ -139,14 +140,14 @@ nav select {

.tooltip .tooltiptext .commit-author {
font-style: italic;
color: #bbb;
opacity: 0.6;
}

.tooltip .tooltiptext .commit-date {
color: #bbb;
opacity: 0.6;
}

.tooltip .tooltiptext .commit-sha {
font-style: italic;
color: #5cb6de;
color: var(--vscode-textLink-foreground);
}
2 changes: 1 addition & 1 deletion client/src/settings/SettingsPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
handleClose: () => void
closeNav: () => void
}) {
const [settings, setSettings] = useAtom(settingsAtom)

Check warning on line 22 in client/src/settings/SettingsPopup.tsx

View workflow job for this annotation

GitHub Actions / Lint

'setSettings' is assigned a value but never used. Allowed unused vars must match /^_/u

Check warning on line 22 in client/src/settings/SettingsPopup.tsx

View workflow job for this annotation

GitHub Actions / Lint

'setSettings' is assigned a value but never used. Allowed unused vars must match /^_/u
const [, applySettings] = useAtom(applySettingsAtom)
const [newSettings, setNewSettings] = useState<Settings>(settings)

Expand Down Expand Up @@ -57,7 +57,7 @@
<h2>Editor settings</h2>
<p>
<label htmlFor="abbreviationCharacter">
Lead character to trigger unicode input mode
Lead character to trigger unicode input mode:
</label>
<input
id="abbreviationCharacter"
Expand Down
Loading