Skip to content

Commit

Permalink
Merge pull request #57 from doki-theme/usabilityIssueThread
Browse files Browse the repository at this point in the history
Usability Fixes
  • Loading branch information
Unthrottled authored Apr 6, 2021
2 parents bafc435 + a3cb66b commit bf137a6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

# 11.1.0 [Usability Updates]

- Fixed all theme usability issues found in [#46](https://github.com/doki-theme/doki-theme-vscode/issues/46).

# 11.0.0 [Astolfo, Maika, Rias, & Rei]

## 4 New Themes
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/assets/templates/base.laf.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"peekViewResult.background": "&secondaryBackground&",
"list.focusBackground": "&selectionBackground&",
"quickInput.list.focusBackground": "&selectionBackground&AA",
"selection.background": "&selectionBackground&",
"selection.background": "&accentColor&",
"list.activeSelectionBackground": "&selectionBackground&",
"peekViewResult.selectionBackground": "&selectionBackground&",
"list.hoverBackground": "&selectionBackground&2A",
Expand Down Expand Up @@ -55,8 +55,8 @@
"titleBar.border": "&borderColor&",
"notificationCenter.border": "&borderColor&",
"notifications.border": "&borderColor&",
"editorCursor.background": "&caretForeground&",
"terminalCursor.background": "&caretForeground&",
"editorCursor.background": "&editorBackground&",
"terminalCursor.background": "&editorBackground&",
"editorSuggestWidget.border": "&editorBackground&",
"panel.background": "&editorBackground&",
"sideBar.background": "&editorBackground&",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "The Doki Theme",
"description": "A bunch of themes with cute anime girls. Code with your waifu!",
"publisher": "unthrottled",
"version": "11.0.0",
"version": "11.1.0",
"license": "MIT",
"icon": "Doki-Theme.png",
"galleryBanner": {
Expand Down
2 changes: 1 addition & 1 deletion src/NotificationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { VSCodeGlobals } from "./VSCodeGlobals";
import { attemptToGreetUser } from "./WelcomeService";

const SAVED_VERSION = "doki.theme.version";
const DOKI_THEME_VERSION = "v11.0.0";
const DOKI_THEME_VERSION = "v11.1.0";

export function attemptToNotifyUpdates(context: vscode.ExtensionContext) {
const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION);
Expand Down
9 changes: 8 additions & 1 deletion src/StickerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ function buildWallpaperCss({
.minimap-decorations-layer,
.xterm-cursor-layer,
.decorationsOverviewRuler,
.monaco-breadcrumbs,
.monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-breadcrumbs .breadcrumbs-control,
.ref-tree, /* find usages */
.head, /* find usages */
.monaco-split-view2>.monaco-scrollable-element>.split-view-container>.split-view-view .monaco-list-rows,
.monaco-workbench .part.editor>.content .editor-group-container>.title .editor-actions
{
Expand All @@ -50,6 +52,11 @@ function buildWallpaperCss({
background-size: cover !important;
}
.monaco-breadcrumbs {
background-color: #00000000 !important;
}
.monaco-icon-label-container {
background: none !important;
}
Expand Down

0 comments on commit bf137a6

Please sign in to comment.