1/**
2 * DokuWiki Plugin copycode (Action Component)
3 *
4 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
5 * @author  Nicolas Prigent <mail.nicolasprigent@gmail.com>
6 *
7 * Styling of alert box
8 */
9
10.alert-copycode {
11    position: fixed;
12    display: block;
13    top: 70px;
14    z-index: 9999999;
15    font-size: 12px;
16    font-weight: bold;
17    right: 10px;
18    color: #ffffff;
19    box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,.3);
20    padding: 15px;
21    border-radius: 5px;
22}
23
24.green.alert-copycode {
25    background: rgb(25, 219, 113);
26}
27
28.orange.alert-copycode {
29    background: #ff5731;
30}
31
32.blue.alert-copycode {
33  background: #0086d3;
34}
35
36.alert.alert-copycode button.close{
37    display:none;
38}
39
40.copycode_line{
41    display: none;
42}
43