summaryrefslogtreecommitdiffstats
path: root/css/app.css
blob: b8ca4ec64a92ab02ad59c136a2bba1de30ed6a0e (plain)
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
/**
 * ownCloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2014
 */
.loading-icon {
    background-image: url('../img/loading.gif');
    background-position: center;
    background-repeat: no-repeat;
}

#global-loading {
    width: 100%;
    height: 100%;
}

#undo-container {
    position: fixed;
    top: 0px;
    width: 100%;
    text-align: center;
    z-index: 101;
    line-height: 1.2;
}

#undo {
    z-index:101;
    background-color:#fc4;
    border:0;
    padding:0 .7em .3em;
    display:none;
    position: relative;
    top:0;
    -moz-border-radius-bottomleft:1em;
    -webkit-border-bottom-left-radius:1em;
    border-bottom-left-radius:1em;
    -moz-border-radius-bottomright:1em;
    -webkit-border-bottom-right-radius:1em;
    border-bottom-right-radius:1em;
}

#undo a {
    font-weight: bold;
}

#undo a:hover {
    text-decoration: underline;
}