Changeset 3685:3f1bacac1ac3 for admin/style/scss/partials/_messages.scss
- Timestamp:
- 01/27/18 11:59:30 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/scss/partials/_messages.scss
r3638 r3685 60 60 61 61 .error { 62 background: # FFBABAurl(msg-error.png) no-repeat .7em .7em;62 background: #ffbaba url(msg-error.png) no-repeat .7em .7em; 63 63 color: #000; 64 animation-name: kf-error; 65 animation-duration: .5s; 66 } 67 @keyframes kf-error { 68 0% { 69 background-color: #fefacd; 70 } 71 100% { 72 background-color: #ffbaba; 73 } 64 74 } 65 75 … … 68 78 background: #676e78 url(msg-std.png) no-repeat .7em .7em; 69 79 color: #fff; 80 } 81 .message { 82 animation-name: kf-message; 83 animation-duration: .5s; 84 } 85 @keyframes kf-message { 86 0% { 87 background-color: #ccc; 88 } 89 100% { 90 background-color: #676e78; 91 } 70 92 } 71 93 … … 83 105 84 106 .success { 85 background: #9bca1c url(msg-success.png) no-repeat .7em .7em; 107 background: #bee74b url(msg-success.png) no-repeat .7em .7em; 108 animation-name: kf-success; 109 animation-duration: .5s; 110 } 111 @keyframes kf-success { 112 0% { 113 background-color: #9bca1c; 114 } 115 100% { 116 background-color: #bee74b; 117 } 86 118 } 87 119 … … 89 121 background: #ffd478 url(msg-warning.png) no-repeat .7em .7em; 90 122 border: 1px solid #ffd478; 123 animation-name: kf-warning; 124 animation-duration: .5s; 125 } 126 @keyframes kf-warning { 127 0% { 128 background-color: #fefacd; 129 } 130 100% { 131 background-color: #ffd478; 132 } 91 133 } 92 134
Note: See TracChangeset
for help on using the changeset viewer.