[ADF-1975] Fixing missing style mixin invocations (#2685)

* Fixing missing theme mixin inclusion for forms

* Fix missing style mixins in core

* Make process-services' scss mixins' naming conventional
This commit is contained in:
Popovics András
2017-11-21 12:41:47 +00:00
committed by Eugenio Romano
parent a2ee8dbfcf
commit 4f651ab868
9 changed files with 38 additions and 37 deletions

View File

@@ -1,6 +1,6 @@
@import '../form';
@mixin mat-dynamic-table-theme($theme) {
@mixin adf-dynamic-table-theme($theme) {
$foreground: map-get($theme, foreground);
$dynamic-table-font-size: 14px !default;
$dynamic-table-header-font-size: 12px !default;

View File

@@ -1,13 +1,9 @@
@import './hyperlink/hyperlink.widget';
@import './container/container.widget';
@import './people/people.widget';
@mixin adf-form-theme($theme) {
$primary: map-get($theme, primary);
$accent: map-get($theme, accent);
$warn: map-get($theme, warn);
@include mat-hyperlink-widget-theme($theme);
@include adf-hyperlink-widget-theme($theme);
ul > li > form-field > .adf-focus {
.adf-label {

View File

@@ -1,4 +1,4 @@
@mixin mat-hyperlink-widget-theme($theme) {
@mixin adf-hyperlink-widget-theme($theme) {
$primary: map-get($theme, primary);
.adf-hyperlink-widget {