Theme bugfixes (#7186)

* fix core bugs

* use proper pallettes
This commit is contained in:
Denys Vuika
2021-07-23 12:09:55 +01:00
committed by GitHub
parent 03caaafc6d
commit 3c5da169b2
6 changed files with 13 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
@mixin adf-image-viewer-theme($theme) {
$accent: map-get($theme, accent);
$background: map-get($theme, background);
$viewer-image-outline: 1px solid mat-color($alfresco-ecm-blue, A200) !default;
$viewer-image-outline: 1px solid mat-color($accent, A200) !default;
.adf-image-viewer {
width: 100%;

View File

@@ -1,4 +1,5 @@
@mixin adf-pdf-thumbnails-theme($theme) {
$accent: map-get($theme, accent);
$background: map-get($theme, background);
.adf-pdf-thumbnails {
@@ -28,7 +29,7 @@
}
&__thumb--selected {
border: 2px solid mat-color($alfresco-ecm-blue, A200);
border: 2px solid mat-color($accent, A200);
}
}
}