Changeset 3685:3f1bacac1ac3 for admin/style
- Timestamp:
- 01/27/18 11:59:30 (8 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3678 r3685 1189 1189 text-transform: none; } 1190 1190 1191 .missing { 1192 background-color: inherit; 1193 animation-name: kf-missing; 1194 animation-duration: 1s; } 1195 1196 @keyframes kf-missing { 1197 0% { 1198 background-color: inherit; } 1199 50% { 1200 background-color: #ffbaba; } 1201 100% { 1202 background-color: inherit; } } 1191 1203 .no-more-info { 1192 1204 display: none; } … … 1487 1499 1488 1500 .error { 1489 background: #FFBABA url(msg-error.png) no-repeat 0.7em 0.7em; 1490 color: #000; } 1491 1501 background: #ffbaba url(msg-error.png) no-repeat 0.7em 0.7em; 1502 color: #000; 1503 animation-name: kf-error; 1504 animation-duration: .5s; } 1505 1506 @keyframes kf-error { 1507 0% { 1508 background-color: #fefacd; } 1509 100% { 1510 background-color: #ffbaba; } } 1492 1511 .message, 1493 1512 .static-msg { … … 1495 1514 color: #fff; } 1496 1515 1516 .message { 1517 animation-name: kf-message; 1518 animation-duration: .5s; } 1519 1520 @keyframes kf-message { 1521 0% { 1522 background-color: #ccc; } 1523 100% { 1524 background-color: #676e78; } } 1497 1525 .message a, 1498 1526 .static-msg a, … … 1506 1534 1507 1535 .success { 1508 background: #9bca1c url(msg-success.png) no-repeat 0.7em 0.7em; } 1509 1536 background: #bee74b url(msg-success.png) no-repeat 0.7em 0.7em; 1537 animation-name: kf-success; 1538 animation-duration: .5s; } 1539 1540 @keyframes kf-success { 1541 0% { 1542 background-color: #9bca1c; } 1543 100% { 1544 background-color: #bee74b; } } 1510 1545 .warning-msg { 1511 1546 background: #ffd478 url(msg-warning.png) no-repeat 0.7em 0.7em; 1512 border: 1px solid #ffd478; } 1513 1547 border: 1px solid #ffd478; 1548 animation-name: kf-warning; 1549 animation-duration: .5s; } 1550 1551 @keyframes kf-warning { 1552 0% { 1553 background-color: #fefacd; } 1554 100% { 1555 background-color: #ffd478; } } 1514 1556 .success a, 1515 1557 .warning-msg a, … … 3199 3241 border: 1px solid #ccc; } 3200 3242 3201 /* fadings ('color' est utilisé comme variable, pas comme text color) */3202 .colorBeginPassword,3203 .colorBeginValidatorErr,3204 .colorBeginUserMail {3205 color: #fff; }3206 3207 .colorEndPassword,3208 .colorEndError,3209 .colorEndValidatorErr,3210 .colorEndUserMail {3211 color: #ffbaba; }3212 3213 .colorBeginMessage {3214 color: #ccc; }3215 3216 .colorEndMessage,3217 .colorBeginValidatorMsg {3218 color: #676e78; }3219 3220 .colorBeginError {3221 color: #fefacd; }3222 3223 .colorBeginSuccess {3224 color: #9BCA1C; }3225 3226 .colorEndSuccess {3227 color: #bee74b; }3228 3229 .colorEndValidatorMsg {3230 color: #ffcc00; }3231 3232 3243 /* ------------------------------------------------------------------------------------ 3233 3244 UN POIL DE MEDIA QUERIES -
admin/style/scss/partials/_forms.scss
r3639 r3685 245 245 } 246 246 247 .missing { 248 background-color: inherit; 249 animation-name: kf-missing; 250 animation-duration: 1s; 251 } 252 @keyframes kf-missing { 253 0% { 254 background-color: inherit; 255 } 256 50% { 257 background-color: #ffbaba; 258 } 259 100% { 260 background-color: inherit; 261 } 262 } 263 247 264 // .more-info Additional information on fieldset, field, … (may be hide from user-prefs) 248 265 .more-info {} -
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 -
admin/style/scss/partials/_utils.scss
r3439 r3685 14 14 border: 1px solid #ccc; 15 15 } 16 17 18 /* fadings ('color' est utilisé comme variable, pas comme text color) */19 20 .colorBeginPassword,21 .colorBeginValidatorErr,22 .colorBeginUserMail {23 color: #fff;24 }25 26 .colorEndPassword,27 .colorEndError,28 .colorEndValidatorErr,29 .colorEndUserMail {30 color: #ffbaba;31 }32 33 .colorBeginMessage {34 color: #ccc;35 }36 37 .colorEndMessage,38 .colorBeginValidatorMsg {39 color: #676e78;40 }41 42 .colorBeginError {43 color: #fefacd;44 }45 46 .colorBeginSuccess {47 color: #9BCA1C;48 }49 50 .colorEndSuccess {51 color: #bee74b;52 }53 54 .colorEndValidatorMsg {55 color: #ffcc00;56 }
Note: See TracChangeset
for help on using the changeset viewer.