Skip to content

Commit edd1e18

Browse files
authored
Merge pull request #3251 from nextcloud/bugfix/3227/use-primary-element-color
Use the primary element color in case it primary color is too bright
2 parents 212d6cf + 6d87739 commit edd1e18

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/LeftSidebar/ConversationsList/AppContentListItem/AppContentListItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export default {
167167
&.active,
168168
&:active,
169169
&:active ~ .app-navigation-entry__utils {
170-
background-color: var(--color-primary-light);
170+
background-color: var(--color-primary-element-light);
171171
}
172172

173173
&__content {

src/components/LeftSidebar/ConversationsList/Conversation.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,6 @@ export default {
386386
}
387387

388388
.forced-active {
389-
box-shadow: inset 4px 0 var(--color-primary);
389+
box-shadow: inset 4px 0 var(--color-primary-element);
390390
}
391391
</style>

src/views/RoomSelector.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
background-color: var(--color-background-dark);
7676
}
7777
li.selected {
78-
box-shadow: inset 4px 0 var(--color-primary);
78+
box-shadow: inset 4px 0 var(--color-primary-element);
7979
}
8080
.avatar.icon {
8181
border-radius: 50%;

0 commit comments

Comments
 (0)