notices.css
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.shortpixel.shortpixel-notice {
min-height: 75px;
padding: 8px;
display: flex;
align-items: center;
background: #fff;
padding: 1px 12px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
border: 1px solid #c3c4c7;
margin: 15px 0;
border-left-width: 4px;
border-left-color: #72aee6;
position: relative;
}
.shortpixel.shortpixel-notice span {
vertical-align: middle;
}
.shortpixel.shortpixel-notice span.icon {
margin: 0 25px 0 0;
width: 80px;
}
.shortpixel.shortpixel-notice span.content {
padding: 8px 0;
word-wrap: break-word;
overflow: hidden;
}
.shortpixel.shortpixel-notice img {
display: inline-block;
margin: 0 25px 0 0;
max-height: 50px;
}
.shortpixel.shortpixel-notice .notice-dismiss {
margin-top: 6px;
}
.shortpixel.shortpixel-notice.notice-success {
border-left-color: #00a32a;
}
.shortpixel.shortpixel-notice.notice-warning {
border-left-color: #dba617;
}
.shortpixel.shortpixel-notice.notice-error {
border-left-color: #ff0000;
}
.shortpixel.shortpixel-notice.notice-info {
border-left-color: #72aee6;
}
/* In-view notice ( not on top, between the options ) - styled after WP notice */
.view-notice {
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
border: 4px solid #fff;
padding: 1px 12px;
}
.view-notice p {
margin: 1em 0 !important;
}
.view-notice.warning {
border-left-color: #ffb900;
}
.view-notice-row {
display: none;
}
/*# sourceMappingURL=notices.css.map */