-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make links in markdown note bolder #3530
Make links in markdown note bolder #3530
Conversation
This comment has been minimized.
This comment has been minimized.
Regarding the screenshot at #3443 (comment), what would be ideal is:
|
Deck is not yet using text
@luka-nextcloud Could you adjust that accordingly? Using CSS variables will have the benefit that the coolers will adjust properly when using the dark theme which can be toggled in the users accessibility settings. |
6588f9b
to
cebb3b1
Compare
src/components/card/Description.vue
Outdated
.vue-easymde .cm-s-easymde .cm-link, .cm-image-marker { | ||
color: var(--color-text-maxcontrast); | ||
} | ||
|
||
.vue-easymde .cm-s-easymde .cm-image.cm-image-alt-text.cm-link{ | ||
color: var(--color-main-text); | ||
} | ||
|
||
.vue-easymde .cm-s-easymde .cm-formatting.cm-formatting-image.cm-image.cm-image-alt-text.cm-link{ | ||
color: var(--color-text-maxcontrast); | ||
} | ||
|
||
.vue-easymde .cm-s-easymde .cm-url { | ||
color: #767676 !important; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The image link color was ok but the basic link color wasn't.
@luka-nextcloud Are you ok with those changes?
.vue-easymde .cm-s-easymde .cm-link, .cm-image-marker { | |
color: var(--color-text-maxcontrast); | |
} | |
.vue-easymde .cm-s-easymde .cm-image.cm-image-alt-text.cm-link{ | |
color: var(--color-main-text); | |
} | |
.vue-easymde .cm-s-easymde .cm-formatting.cm-formatting-image.cm-image.cm-image-alt-text.cm-link{ | |
color: var(--color-text-maxcontrast); | |
} | |
.vue-easymde .cm-s-easymde .cm-url { | |
color: #767676 !important; | |
} | |
.vue-easymde .cm-s-easymde .cm-link { | |
color: var(--color-main-text); | |
} | |
.vue-easymde .cm-s-easymde .cm-string.cm-url, | |
.vue-easymde .cm-s-easymde .cm-formatting.cm-link, | |
.vue-easymde .cm-s-easymde .cm-formatting.cm-url, | |
.vue-easymde .cm-s-easymde .cm-formatting.cm-image { | |
color: var(--color-text-maxcontrast); | |
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, it looks better.
cebb3b1
to
0fa9c90
Compare
0fa9c90
to
5276bff
Compare
src/components/card/Description.vue
Outdated
|
||
.vue-easymde .cm-s-easymde .cm-url { | ||
color: #767676 !important; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.vue-easymde .cm-s-easymde .cm-url { | |
color: #767676 !important; | |
} |
This is already done upper with .vue-easymde .cm-s-easymde .cm-string.cm-url,
.
Signed-off-by: Luka Trovic <luka@nextcloud.com>
5276bff
to
4e31332
Compare
Signed-off-by: Luka Trovic luka@nextcloud.com
Summary
Improve contrast link in Markdown note
TODO
Checklist