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
4 changes: 3 additions & 1 deletion src/components/NcCounterBubble/NcCounterBubble.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ export default {
line-height: 1em;
padding: 4px 6px;
border-radius: var(--border-radius-pill);
background-color: var(--color-background-darker);
// since -lighter is not present in the new version it will only apply to the old one and -light for the newer
background-color: var(--color-primary-element-lighter, var(--color-primary-element-light));
font-weight: bold;
color: var(--color-primary-element);

&--highlighted {
color: var(--color-primary-text);
Expand Down
2 changes: 1 addition & 1 deletion styleguide/assets/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
--color-primary-text-dark: #ededed;
--color-primary-element: #0082c9;
--color-primary-element-hover: #339bd4;
--color-primary-element-light: #17adff;
--color-primary-element-light: #e6f3fa;
--color-primary-element-lighter: #d9ecf7;
--color-error: #e9322d;
--color-error-hover: #ed5b57;
Expand Down