forked from nicolasprigent/Dokuwiki-Copycode-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (37 loc) · 804 Bytes
/
style.css
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
/**
* DokuWiki Plugin copycode (Action Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Nicolas Prigent <mail.nicolasprigent@gmail.com>
*
* Styling of alert box
*/
#dokuwiki__content pre,
#dokuwiki__content code {
cursor:cell;
}
.alert-copycode {
position: fixed;
display: block;
top: 70px;
z-index: 9999999;
font-size: 12px;
font-weight: bold;
right: 10px;
color: #ffffff;
box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,.3);
padding: 15px;
border-radius: 5px;
}
.green.alert-copycode {
background: rgb(25, 219, 113);
}
.orange.alert-copycode {
background: #ff5731;
}
.alert.alert-copycode button.close{
display:none;
}
.copycode_line{
display: none;
}