1/** 2 * This file provides the design styles for message block 3 * 4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de> 5 */ 6 7 8.msg-area { 9 clear: both; 10 padding-top: 1.6rem; 11 12 div { 13 line-height: 135%; 14 } 15 16 &:empty { 17 display: none; 18 } 19} 20 21/* short fix: SPR-891 - Icons für Notifications in Message Area werden gekachelt */ 22div.success, div.error, div.info, div.notify { 23 background-repeat: no-repeat; 24 background-position: 8px 50%; 25 border: 1px solid #eeb; 26 font-size: 90%; 27 margin: 0 0 .5em; 28 padding: .4em; 29 padding-left: 32px; 30 overflow: hidden; 31 border-radius: 5px; 32 33 * { 34 color: inherit; 35 } 36 37 a { 38 text-decoration: underline; 39 40 &:hover, 41 &:focus, 42 &:active { 43 text-decoration: none; 44 } 45 } 46} 47