9f77077877
* remove ember-cli-favicon * link to png favicon in public folder * skip some things in the build depending on the env * update to ember-cli 3.5.0 for broccoli 2, and ember-fetch because it was incompatible with broccoli 2 * update some things the new sass module wasn't happy about * turn off more things in dev to make the build faster * bump to the latest ember-cli and move back to node-sass * remove sass since we're using node-sass * include polyfill in test as well
32 lines
500 B
SCSS
32 lines
500 B
SCSS
.status-indicator-button {
|
|
&[data-status='good'] {
|
|
.status-indicator-icon-dot {
|
|
fill: $green-light;
|
|
}
|
|
|
|
.status-indicator-icon-ring {
|
|
fill: $green-dark;
|
|
}
|
|
}
|
|
|
|
&[data-status='mixed'] {
|
|
.status-indicator-icon-dot {
|
|
fill: $yellow;
|
|
}
|
|
|
|
.status-indicator-icon-ring {
|
|
fill: $yellow-dark;
|
|
}
|
|
}
|
|
|
|
&[data-status='bad'] {
|
|
.status-indicator-icon-dot {
|
|
fill: $red;
|
|
}
|
|
|
|
.status-indicator-icon-ring {
|
|
fill: $red-dark;
|
|
}
|
|
}
|
|
}
|