mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
[ACA-2147] toolbar clean css - fix colors (#1114)
* [ACA-2147] toolbar clean css - fix colors * [ACA-1619] keep aspect properties config example * [ACA-2147] keep toolbar color setting in custom-theme * remove dist folder from travis cache * build dist folder before each suite * remove no longer needed 'Prepare dist cache' since dist cache was disabled
This commit is contained in:
committed by
Denys Vuika
parent
1928aa0b1b
commit
eb1e8c8fa1
@@ -36,7 +36,7 @@ import {
|
||||
template: `
|
||||
<button
|
||||
mat-icon-button
|
||||
[color]="(infoDrawerOpened$ | async) ? 'accent' : 'primary'"
|
||||
[color]="(infoDrawerOpened$ | async) ? 'primary' : ''"
|
||||
[attr.title]="'APP.ACTIONS.DETAILS' | translate"
|
||||
(click)="onClick()"
|
||||
>
|
||||
|
@@ -45,7 +45,7 @@ export class ToolbarActionComponent implements DoCheck {
|
||||
type = 'icon-button';
|
||||
|
||||
@Input()
|
||||
color = 'primary';
|
||||
color = '';
|
||||
|
||||
@Input()
|
||||
actionRef: ContentActionRef;
|
||||
|
@@ -43,7 +43,7 @@ export class ToolbarButtonComponent {
|
||||
type: ToolbarButtonType = ToolbarButtonType.ICON_BUTTON;
|
||||
|
||||
@Input()
|
||||
color = 'primary';
|
||||
color = '';
|
||||
|
||||
@Input()
|
||||
actionRef: ContentActionRef;
|
||||
|
@@ -37,7 +37,7 @@ export class ToolbarMenuComponent {
|
||||
actionRef: ContentActionRef;
|
||||
|
||||
@Input()
|
||||
color = 'primary';
|
||||
color = '';
|
||||
|
||||
get hasChildren(): boolean {
|
||||
return (
|
||||
|
Reference in New Issue
Block a user