Custom Material2 Style variables and theming (#2146)

* ADF theming Material2

* login style primary buttons and input

* fix color breadcrumb based on the material color
This commit is contained in:
Eugenio Romano
2017-07-28 10:31:53 +01:00
parent ee4ada3e2b
commit fb838c4252
5 changed files with 137 additions and 8 deletions

View File

@@ -5,6 +5,18 @@ $breadcrumb-chevron-spacer: 2px;
.adf-breadcrumb {
display: flex;
&.mat-primary {
color: mat-color($primary);
}
&.mat-accent {
color: mat-color($accent);
}
&.mat-warn {
color: mat-color($warn);
}
&-container {
margin: 0;
padding: 0;
@@ -17,7 +29,6 @@ $breadcrumb-chevron-spacer: 2px;
&-item {
padding-right: $breadcrumb-chevron-spacer;
color: $alfresco-secondary-text-color;
overflow: hidden;
display: flex;
line-height: 24px;
@@ -32,10 +43,6 @@ $breadcrumb-chevron-spacer: 2px;
overflow: hidden;
}
&-anchor:hover, &.active {
color: $alfresco-primary-text-color;
}
&.active {
display: block;
}