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, 23div.error, 24div.info, 25div.notify { 26 background-repeat: no-repeat; 27 background-position: 8px 50%; 28 border: 1px solid #eeb; 29 font-size: 90%; 30 margin: 0 0 .5em; 31 padding: .4em; 32 padding-left: 32px; 33 overflow: hidden; 34 border-radius: @fix_border-radius; 35 36 * { 37 color: inherit; 38 } 39 40 a { 41 text-decoration: underline; 42 43 &:hover, 44 &:focus, 45 &:active { 46 text-decoration: none; 47 } 48 } 49} 50