Address Shaunak's feedback.

This commit is contained in:
CJ Cenizal 2017-01-27 15:53:35 -08:00
parent 4798befe26
commit 153f23aac9
2 changed files with 13 additions and 1 deletions

View file

@ -28,7 +28,10 @@
</div>
<!-- Errors -->
<div class="kuiViewContentItem kuiVerticalRhythm" ng-if="notFound">
<div
class="kuiViewContentItem kuiVerticalRhythm"
ng-if="notFound"
>
<div class="kuiInfoPanel kuiInfoPanel--error">
<div class="kuiInfoPanelHeader">
<span class="kuiInfoPanelHeader__icon kuiIcon kuiIcon--error fa-warning"></span>

View file

@ -11,14 +11,23 @@
border-color: rgba($infoColor, 0.25); /* 1 */
}
/**
* 1. TODO: Pick a hex value instead of making these colors translucent.
*/
.kuiInfoPanel--success {
border-color: rgba($successColor, 0.25); /* 1 */
}
/**
* 1. TODO: Pick a hex value instead of making these colors translucent.
*/
.kuiInfoPanel--warning {
border-color: rgba($warningColor, 0.25); /* 1 */
}
/**
* 1. TODO: Pick a hex value instead of making these colors translucent.
*/
.kuiInfoPanel--error {
border-color: rgba($errorColor, 0.25); /* 1 */
}