Restructure Sass files and folders for proper application Sass development

This commit is contained in:
iRouge
2015-06-11 15:49:36 -04:00
committed by Francis Lachapelle
parent a87bbc2de5
commit 5217c0ac64
207 changed files with 54 additions and 285 deletions
@@ -0,0 +1,44 @@
md-input-group.md-THEME_NAME-theme {
input, textarea {
text-shadow: '{{foreground-shadow}}';
@include input-placeholder-color('{{foreground-3}}');
}
label {
text-shadow: '{{foreground-shadow}}';
color: '{{foreground-3}}';
}
input, textarea {
color: '{{foreground-1}}';
border-color: '{{foreground-4}}';
}
&.md-input-focused {
input, textarea {
border-color: '{{primary-500}}';
}
label {
color: '{{primary-500}}';
}
&.md-accent {
input, textarea {
border-color: '{{accent-500}}';
}
label {
color: '{{accent-500}}';
}
}
}
&.md-input-has-value:not(.md-input-focused) {
label {
color: '{{foreground-2}}';
}
}
.md-input[disabled] {
border-bottom-color: '{{foreground-4}}';
color: '{{foreground-3}}';
}
}