open-vault/ui/app/styles/components/status-menu.scss
Matthew Irish 9f77077877
UI - build optimize (#5784)
* 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
2018-11-26 12:47:56 -06:00

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;
}
}
}