xref: /template/sprintdoc/css/area_msg.less (revision 2d623f4b2e20ce31c0d368a026d4d38885e0fb66)
1.msg-area {
2    clear: both;
3    padding-top: 1.6rem;
4
5    div {
6        line-height: 135%;
7    }
8
9    &:empty {
10        display: none;
11    }
12}
13
14/* short fix: SPR-891 - Icons für Notifications in Message Area werden gekachelt */
15div.success, div.error, div.info, div.notify {
16    background-repeat: no-repeat;
17    background-position: 8px 50%;
18    border: 1px solid #eeb;
19    font-size: 90%;
20    margin: 0 0 .5em;
21    padding: .4em;
22    padding-left: 32px;
23    overflow: hidden;
24    border-radius: 5px;
25
26    a {
27        color: inherit;
28        text-decoration: underline;
29
30        &:hover,
31        &:focus,
32        &:active {
33            text-decoration: none;
34        }
35    }
36}
37