Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CSS-mixins NOT working in production build [FINAL] #22

Merged
merged 2 commits into from
Jun 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/message/input/message-input.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
box-shadow: 0px 0px 12px 0px var(--primary-color);
}

.message-input-field {
paper-textarea {
--paper-input-container-input-color: var(--app-color-green);
--paper-input-container-underline: {
display: none;
}
};
--paper-input-container-underline-focus: {
display: none;
}
};
@apply --app-word-wrapping;
}
12 changes: 6 additions & 6 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@
--app-border-normal: {
border-width: var(--app-border-width-normal);
border-style: var(--app-border-style-normal);
}
};
--app-border-thin: {
border-width: var(--app-border-width-thin);
border-style: var(--app-border-style-normal);
}
};
--app-border-thick: {
border-width: var(--app-border-width-thick);
border-style: var(--app-border-style-normal);
}
};

/*misc*/
--app-radius-normal: 2px;
Expand All @@ -111,7 +111,7 @@
-webkit-hyphens: none;
-ms-hyphens: none;
-moz-hyphens: none;
}
};
}

@media (min-width: 640px) {
Expand Down Expand Up @@ -148,10 +148,10 @@
height: var(--app-header-height);
--app-header-background-front-layer: {
background-color: var(--app-color-blue);
}
};
--app-header-background-rear-layer: {
background-color: var(--app-color-blue);
}
};
}

app-toolbar {
Expand Down