~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to contrib/struts-faces/example2-webapp/src/web/stylesheet.css

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 * Copyright 2002,2004 The Apache Software Foundation.
 
4
 * 
 
5
 * Licensed under the Apache License, Version 2.0 (the "License");
 
6
 * you may not use this file except in compliance with the License.
 
7
 * You may obtain a copy of the License at
 
8
 * 
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 * 
 
11
 * Unless required by applicable law or agreed to in writing, software
 
12
 * distributed under the License is distributed on an "AS IS" BASIS,
 
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 * See the License for the specific language governing permissions and
 
15
 * limitations under the License.
 
16
 */
 
17
 
 
18
 
 
19
.command-multiple { 
 
20
  margin: 3px 9px 3px 3px;
 
21
}
 
22
 
 
23
.command-single { 
 
24
  margin: 3px 3px 3px 3px;
 
25
}
 
26
 
 
27
.form-background { 
 
28
  background-color: #7171A5;
 
29
  border: 5px outset #71A5A5;
 
30
  border-collapse: collapse;
 
31
  font-family: sans-serif;
 
32
  font-size: 14pt;
 
33
  margin-left: auto;
 
34
  margin-right: auto;
 
35
}
 
36
 
 
37
.form-footer { 
 
38
  color: #FFFFFF;
 
39
  font-size: 75%;
 
40
  padding: 3px;
 
41
  text-align: center;
 
42
}
 
43
 
 
44
.form-header { 
 
45
  background-color: #A5A5A5;
 
46
  color: #FFFFFF;
 
47
  font-weight: bold;
 
48
  padding: 3px;
 
49
  text-align: center;
 
50
}
 
51
 
 
52
.form-prompt {
 
53
  color: #FFFFFF;
 
54
  padding: 3px 3px 3px 9px;
 
55
  text-align: right;
 
56
}
 
57
 
 
58
.form-field {
 
59
  padding: 3px 9px 3px 3px;
 
60
  text-align: left;
 
61
}
 
62
 
 
63
.form-row-even { 
 
64
}
 
65
 
 
66
.form-row-odd { 
 
67
  background-color: #717171;
 
68
}
 
69
 
 
70
.list-background { 
 
71
  background-color: #7171A5;
 
72
  border: 5px outset #71A5A5;
 
73
  border-collapse: collapse;
 
74
  font-family: sans-serif;
 
75
  font-size: 14pt;
 
76
  padding: 10px;
 
77
  width: 100%;
 
78
}
 
79
 
 
80
.list-column-host { 
 
81
  border-right: 2px solid black;
 
82
  padding: 3px;
 
83
  text-align: left;
 
84
  width: 30%;
 
85
}
 
86
 
 
87
.list-column-user { 
 
88
  border-right: 2px solid black;
 
89
  padding: 3px;
 
90
  text-align: left;
 
91
  width: 30%
 
92
}
 
93
 
 
94
.list-column-type {
 
95
  border-right: 2px solid black;
 
96
  padding: 3px;
 
97
  text-align: center;
 
98
  width: 10%
 
99
}
 
100
 
 
101
.list-column-auto {
 
102
  border-right: 2px solid black;
 
103
  padding: 3px;
 
104
  text-align: center;
 
105
  width: 10%
 
106
}
 
107
 
 
108
.list-column-action {
 
109
  padding: 3px;
 
110
  text-align: center;
 
111
  width: 20%
 
112
}
 
113
 
 
114
.list-header { 
 
115
  background-color: #A5A5A5;
 
116
  color: #FFFFFF;
 
117
  font-weight: bold;
 
118
  padding: 3px;
 
119
  text-align: center;
 
120
}
 
121
 
 
122
.list-row-even { 
 
123
}
 
124
 
 
125
.list-row-odd { 
 
126
  background-color: #717171;
 
127
}
 
128
 
 
129