Skip to content

Commit

Permalink
Uncomment --color-text-selection and change to --color-hover-blue to …
Browse files Browse the repository at this point in the history
…keep amount of colours low. Unset border in Deck description when editing. Fixes #191
  • Loading branch information
mwalbeck committed Dec 13, 2020
1 parent 00ce89b commit 97a264c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

## [Unreleased]

### Fixed

- [#191](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/191) Uncomment --color-text-selection and change to --color-hover-blue to keep amount of colours low. Unset border in Deck description when editing.

## 20.0.1 - 2020-11-07

### Added

- [#161](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/164) Add thumbnail image in personal settings
- [#161](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/161) Add thumbnail image in personal settings
- [#170](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/170) Define background and text color for select options to prevent white text on white background
- Add weather_status app icon and notes app icon
- [#173](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/173) Add support for Forms
Expand Down
7 changes: 4 additions & 3 deletions css/apps/_apps.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@

/* CodeMirror --------------------------------------------------------------- */

.CodeMirror {
background-color: var(--color-main-background) !important;
color: var(--color-main-text) !important;
.EasyMDEContainer .CodeMirror {
background-color: var(--color-main-background);
border: unset !important;
color: var(--color-main-text);

.cm-formatting {
opacity: 0.5;
Expand Down
1 change: 1 addition & 0 deletions css/guest.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
--color-text-light: var(--color-main-text) !important;
--color-text-lighter: var(--color-text-maxcontrast) !important;
--color-text-dark: rgba(0, 0, 0, 1) !important;
--color-text-selection: var(--color-hover-blue) !important;

--color-loading-light: var(--color-alternate-gray) !important;
--color-loading-dark: var(--color-coastal-fog) !important;
Expand Down
2 changes: 1 addition & 1 deletion css/variables/_color-variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
--color-text-light: var(--color-main-text) !important;
--color-text-lighter: var(--color-text-maxcontrast) !important;
--color-text-dark: rgba(0, 0, 0, 1) !important;
--color-text-selection: var(--color-hover-blue) !important;

--color-loading-light: var(--color-alternate-gray) !important;
--color-loading-dark: var(--color-coastal-fog) !important;
Expand All @@ -82,7 +83,6 @@
// --color-text-inactive: rgba(189, 195, 199, 1);
// --color-text-link: rgba(41, 128, 185, 1);
// --color-text-background: rgba(189, 195, 199, 0.6);
// --color-text-selection: rgba(61, 174, 233, 0.5);

// --color-border-active: var(--color-primary-element);
}
Expand Down

0 comments on commit 97a264c

Please sign in to comment.