~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/extensions/irc/xul/tests/test3.css

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The contents of this file are subject to the Mozilla Public
 
3
 * License Version 1.1 (the "License"); you may not use this file
 
4
 * except in compliance with the License. You may obtain a copy of
 
5
 * the License at http://www.mozilla.org/MPL/
 
6
 *
 
7
 * Software distributed under the License is distributed on an "AS
 
8
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
 * implied. See the License for the specific language governing
 
10
 * rights and limitations under the License.
 
11
 *
 
12
 * The Original Code is Mozilla JSIRC Library.
 
13
 *
 
14
 * The Initial Developer of the Original Code is New Dimensions Consulting,
 
15
 * Inc. Portions created by New Dimensions Consulting, Inc. are
 
16
 * Copyright (C) 1999 New Dimenstions Consulting, Inc. All
 
17
 * Rights Reserved.
 
18
 *
 
19
 * Contributor(s):
 
20
 *  Robert Ginda, rginda@ndcico.com, original author
 
21
 * 
 
22
 * Styles for UI, See test3-output-default.css for output window styles
 
23
 *
 
24
 */
 
25
 
 
26
@import url(chrome://global/skin/global.css);
 
27
 
 
28
window {
 
29
 
 
30
    font-size: 12px;
 
31
    background: url(xtal.jpg);
 
32
 
 
33
}
 
34
 
 
35
menubar, menu, menuitem, menupopup {
 
36
 
 
37
    background: silver;
 
38
 
 
39
}
 
40
 
 
41
#outer-box {
 
42
 
 
43
    margin: 5px;
 
44
 
 
45
}
 
46
 
 
47
#main-splitter {
 
48
 
 
49
    border: thin silver outset;
 
50
    margin-left: 2px;
 
51
    margin-right: 2px;
 
52
    background: silver;
 
53
 
 
54
}
 
55
 
 
56
.status-table {
 
57
 
 
58
    width: 100%;
 
59
    font-weight: bold;
 
60
 
 
61
}
 
62
 
 
63
#status-bar {
 
64
 
 
65
    border: thin silver double;
 
66
    background: #dddddd;
 
67
 
 
68
}
 
69
 
 
70
toolbar {
 
71
 
 
72
    background: #dddddd;
 
73
    border: silver double;
 
74
 
 
75
}
 
76
 
 
77
.activity-button {
 
78
 
 
79
    background: #dddddd;
 
80
    padding-top: 1px;
 
81
    padding-left: 2px;
 
82
    padding-right: 2px;
 
83
    padding-bottom: 0px;
 
84
    margin: 1px;
 
85
    border: groove 2px;
 
86
 
 
87
}
 
88
 
 
89
.activity-button:hover {
 
90
 
 
91
    background: #eeeeee;
 
92
    padding-top: 0px;
 
93
    padding-left: 1px;
 
94
    padding-right: 3px;
 
95
    padding-bottom: 1px;
 
96
    border: 2px grey outset;
 
97
 
 
98
}
 
99
 
 
100
.activity-button:active {
 
101
 
 
102
    background: #cccccc;
 
103
    padding-top: 1px;
 
104
    padding-left: 2px;
 
105
    padding-right: 2px;
 
106
    padding-bottom: 0px;
 
107
    border: 2px grey inset;
 
108
 
 
109
}
 
110
 
 
111
.status-label {
 
112
    
 
113
    text-align: right;
 
114
 
 
115
}
 
116
 
 
117
.status-data {
 
118
 
 
119
    text-align: left;
 
120
    color: darkslategrey;
 
121
 
 
122
}
 
123
 
 
124
/* Activity indicator buttons */
 
125
.activity-button {
 
126
    
 
127
    font-weight: bold;
 
128
 
 
129
}
 
130
 
 
131
/* input textbox */
 
132
/*
 
133
.input-window {
 
134
 
 
135
    overflow: clip;
 
136
    width: 100%;
 
137
 
 
138
}
 
139
*/
 
140
 
 
141
.output-container {
 
142
 
 
143
    border: thin silver inset;
 
144
    width: 100%;
 
145
 
 
146
}
 
147
 
 
148
/* Listbox on left of UI (aka QuickList) */
 
149
.quick-list {
 
150
 
 
151
        border: thin silver inset;
 
152
        overflow: auto;
 
153
        background: #dddddd;
 
154
 
 
155
}
 
156
 
 
157
/* common container for individual quicklist items */
 
158
.list-option {
 
159
 
 
160
    margin: 2px;
 
161
 
 
162
}
 
163
 
 
164
/* text in the quicklist */
 
165
.option-text {
 
166
    font-weight: bold;
 
167
    align: right;
 
168
}
 
169
 
 
170
/* graphic in the quicklist */
 
171
.option-graphic {
 
172
}