~azzar1/unity/add-show-desktop-key

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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* IVLE - Informatics Virtual Learning Environment
 * Copyright (C) 2007-2008 The University of Melbourne
 * Style Sheet for File Browser and Editor
 * This file is redistributable under the terms of the GNU General Public
 * License version 2 or later.
 */

/* GENERAL FORMATTING */

#ivlebody p, #ivlebody h2, #ivlebody h3 {
    padding: 0;
    margin: 0.7em 0;
}
#ivlebody p, #ivlebody h3 {
    font-size: 1em;
}
#ivlebody h2 {
    font-size: 1.1em;
}

.padding {
    padding: 1em;
}

/* TOP BAR */

#topbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    /* height == h2.margin + h2.line-height
     *              + max(h2.margin, p.margin) + p.line-height + p.margin
     *        == 1.1*0.7em + 1.1*1.2em + 1.1*0.7em + 1.1em + 0.7em
     *        == 4.6em */
    height: 4.6em;
    padding: 0.5em;
    background-color: #aaf;
}

#topbar div {
    margin: 0.2em;
}

#topbar #path a {
    font-weight: bold;
}
/* class "choice" is for all choices, enabled and disabled. This is for both
 * the <a> actions and <option> actions.
 * class "disabled" is for disabled choices.
 */
#actions1 a.choice, #actions2 a {
    color: navy;
    text-decoration: underline;
    cursor: pointer;
}
#actions1 a.choice:hover, #actions1 a.choice:active, #actions1 a.choice:focus,
    #actions2 a:hover, #actions2 a:active, #actions2 a:focus {
    color: blue;
    text-decoration: underline;
}
#actions1 a.disabled {
    color: black;
    text-decoration: none;
    cursor: auto;
}
#actions1 a.disabled:hover, #actions1 a.disabled:active, #actions1 a.disabled:focus {
    color: black;
    text-decoration: none;
}
/* Drop-down actions and headings */
#actions1 option {
    color: black;
    font-weight: normal;
}
#actions1 option.moreactions {
    color: #aaa;
}
#actions1 option.heading {
    font-weight: bold;
}
#actions1 option.choice {
    padding-left: 20px;
}
#actions1 option.disabled {
    padding-left: 20px;
    color: #aaa;
}

/* Everything under the top bar */

#filesbody {
    position: absolute;
    left: 0;
    right: 0;
    /* top == #topbar.height + #topbar.padding * 2 */
    top: 5.6em;
    bottom: 0;
}