xref: /plugin/copy2clipboard/style.css (revision e38b6dbdad0fc3932e1bf78f1893c55c2f47d259)
1div.dokuwiki {
2  div.cp2clipcont {
3    position: relative;
4    margin:0;
5    padding:0;
6    border: none;
7    overflow: auto;
8    & button {
9      position: absolute;
10      top: 0;
11      right: 0;
12      background: #bbb url( 'clipmini.svg' ) 0 0 no-repeat;
13      background-size: 12px; /*15px;*/
14      width: 13px; /*17px;*/
15      height: 18px; /*22px;*/
16    }
17    &.desktop button {
18      visibility: hidden;
19    }
20    &.desktop:hover button {
21      visibility: visible;
22    }
23  }
24}
25.cp2clipmsg {
26  top: 50px;
27  left: 50%;
28  transform: translate(-50%,0);
29  position: fixed;
30  padding: .7em;
31  border-radius: 7px;
32  font-size: 1.5rem;
33}
34#cp2clipok {
35  background: #00b871; /* #00fa9a; /* X11 MediumSpringGreen */
36  color: #111;
37}
38#cp2clipnok {
39  background: #c71585; /* X11 MediumVioletRed */
40  color: #ccc;
41}
42
43