Merge pull request #471 from sunabozu/patch-1

alert.css should use variables for colours instead of hardcoded values
pull/476/head
杨奕 2016-10-18 10:06:07 +08:00 committed by GitHub
commit 866ecec63a
1 changed files with 4 additions and 4 deletions

View File

@ -18,19 +18,19 @@
transition: opacity .2s; transition: opacity .2s;
@modifier success { @modifier success {
background-color: #13ce66; background-color: var(--color-success);
} }
@modifier info { @modifier info {
background-color: #50bfff; background-color: var(--color-info);
} }
@modifier warning { @modifier warning {
background-color: #f7ba2a; background-color: var(--color-warning);
} }
@modifier error { @modifier error {
background-color: #ff4949; background-color: var(--color-danger);
} }
@e content { @e content {