preview.css
854 Bytes
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
/**
* @package Better Preview
* @version 6.1.0
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://www.regularlabs.com
* @copyright Copyright © 2018 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
div.betterpreview_message,
div.betterpreview_error {
position: fixed;
top: 0;
right: 0;
padding: 7px 20px;
width: 100%;
text-align: center;
font-weight: bold;
font-size: 13px;
line-height: 18px;
color: #ffffff;
background-color: #666666;
z-index: 2000;
opacity: 0.7;
filter: alpha(opacity=70);
cursor: pointer;
}
div.betterpreview_message:before,
div.betterpreview_error:before {
display: 'block';
content: 'x';
float: right;
}
div.betterpreview_error {
top: 32px;
background-color: #9d261d;
}