This repository was archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.css
More file actions
85 lines (79 loc) · 1.54 KB
/
plugin.css
File metadata and controls
85 lines (79 loc) · 1.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
PluginDraft CSS styles
*/
#contentscroll {
width: inherit;
position: relative;
}
#contentscroll div.scrollableArea img {
position: relative;
float: left;
margin: 0 5px;
padding: 0;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
#contentscroll div.scrollableArea a {
padding: 0;
margin: 0;
}
/* NOTICE message */
.contentscroll-notice {
display: table;
margin: 2px 0;
border: 1px solid #777;
background-color: #eee;
}
.contentscroll-notice div {
display: table-cell;
padding: 2px 6px;
color: white;
background-color: #777;
height: inherit;
}
.contentscroll-notice span {
display: table-cell;
padding: 2px 4px;
color: #777;
}
/* SUCCESS message */
.contentscroll-success {
display: table;
margin: 2px 0;
border: 1px solid #2a0;
background-color: #efe;
}
.contentscroll-success div {
display: table-cell;
padding: 2px 6px;
color: white;
background-color: #2a0;
height: inherit;
}
.contentscroll-success span {
display: table-cell;
padding: 2px 4px;
color: #2a0;
}
/* ERROR message */
.contentscroll-error {
display: table;
margin: 2px 0;
border: 1px solid #f33;
background-color: #fee;
}
.contentscroll-error div {
display: table-cell;
padding: 2px 6px;
color: white;
background-color: #f33;
height: inherit;
}
.contentscroll-error span {
display: table-cell;
padding: 2px 4px;
color: #f33;
}