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

« back to all changes in this revision

Viewing changes to www/media/browser/browser.css

  • Committer: mattgiuca
  • Date: 2008-01-11 04:01:16 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:176
util: Rewrote pathlist_to_path in terms of path_join (more robust and
    shorter).
        Added function ajax_call. Able to make GET and POST (urlencoded) Ajax
        requests and return a response object.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * License version 2 or later.
6
6
 */
7
7
 
8
 
/* GENERAL FORMATTING */
9
 
 
10
 
#ivlebody p, #ivlebody h2, #ivlebody h3 {
11
 
    padding: 0;
12
 
    margin: 0.7em 0;
13
 
}
14
 
#ivlebody p, #ivlebody h3 {
15
 
    font-size: 1em;
16
 
}
17
 
#ivlebody h2 {
18
 
    font-size: 1.1em;
19
 
}
20
 
 
21
 
.padding {
22
 
    padding: 1em;
23
 
}
24
 
 
25
 
/* TOP BAR */
26
 
 
27
 
#topbar {
28
 
    position: absolute;
29
 
    left: 0;
30
 
    right: 0;
31
 
    top: 0;
32
 
    /* Approximate height of the components */
33
 
    height: 2.3em;
34
 
    padding: 0;
35
 
    background-color: #ddd;
36
 
}
37
 
 
38
 
/* We don't want the bold-ness of a regular golden H1 */
39
 
#topbar #path {
40
 
    font-weight: normal;
41
 
}
42
 
 
43
 
#topbar #path a {
44
 
    font-weight: bold;
45
 
}
46
 
 
47
 
#actions {
48
 
    padding: 0.3em 0.5em;
49
 
    border-top: white 1px solid;        /* Top edge of 3D effect */
50
 
}
51
 
/* class "choice" is for all choices, enabled and disabled. This is for both
52
 
 * the <a> actions and <option> actions.
53
 
 * class "disabled" is for disabled choices.
54
 
 */
55
 
#actions1 a.choice, #actions2 a {
56
 
    color: #002a8c;
57
 
    cursor: pointer;
58
 
}
59
 
 
60
 
#actions1 a.choice:hover, #actions1 a.choice:active, #actions1 a.choice:focus,
61
 
    #actions2 a:hover, #actions2 a:active, #actions2 a:focus {
62
 
    color: #002a8c;
63
 
}
64
 
 
65
 
#actions1 a.choice:hover, #actions2 a:hover {
66
 
    text-decoration: underline;
67
 
}
68
 
 
69
 
#actions1 a.disabled {
70
 
    color: black;
71
 
    text-decoration: none;
72
 
    cursor: auto;
73
 
}
74
 
/* Drop-down actions and headings */
75
 
#actions1 option.moreactions, #actions1 option.disabled {
76
 
    color: #aaa;
77
 
}
78
 
 
79
 
/* One of the actions2s is shown at runtime, depending on the context.
80
 
 * We will show moreactions if we need it. */
81
 
#actions1 #moreactions_area, #actions2 #actions2_file,
82
 
#actions2 #actions2_directory {
83
 
    display: none;
84
 
}
85
 
 
86
 
/* Everything under the top bar */
87
 
 
88
 
#filesbody {
89
 
    position: absolute;
90
 
    left: 0;
91
 
    right: 0;
92
 
    /* top == #topbar.height */
93
 
    top: 2.3em;
94
 
    /* Space for the mimimised console */
95
 
    bottom: 2em;
96
 
}
97