Revision 7c9afb7f
Von Hans P. Schlaepfer vor fast 5 Jahren hinzugefügt
css/requirement_spec-ORIGINAL.css | ||
---|---|---|
1 |
/* ------------------------------------------------------------ */ |
|
2 |
/* General page layout */ |
|
3 |
/* ------------------------------------------------------------ */ |
|
4 |
|
|
5 |
input.rs_input_field, |
|
6 |
select.rs_input_field, |
|
7 |
table.rs_input_field input[type=text], |
|
8 |
table.rs_input_field input[type=password], |
|
9 |
table.rs_input_field select { |
|
10 |
width: 300px; |
|
11 |
} |
|
12 |
|
|
13 |
#column-container { |
|
14 |
//width: 100%; |
|
15 |
padding-left: 0; |
|
16 |
padding-right: 0; |
|
17 |
margin-left: 0; |
|
18 |
margin-right: 0; |
|
19 |
overflow: hidden ; |
|
20 |
//border: 1px red solid ; // TEST |
|
21 |
} |
|
22 |
|
|
23 |
#tree-column { |
|
24 |
float: left; |
|
25 |
width: 25%; |
|
26 |
//border: 1px green solid ; // TEST |
|
27 |
} |
|
28 |
|
|
29 |
#content-column { |
|
30 |
float: left; |
|
31 |
width: 70%; |
|
32 |
padding-left: 3.0em; |
|
33 |
//border: 1px blue solid ; // TEST |
|
34 |
} |
|
35 |
|
|
36 |
.section-empty-description { |
|
37 |
color: #bbb; |
|
38 |
} |
|
39 |
|
|
40 |
/* ------------------------------------------------------------ */ |
|
41 |
/* Special things that apply to the tree */ |
|
42 |
/* ------------------------------------------------------------ */ |
|
43 |
|
|
44 |
#tree li.flagged > a > ins { |
|
45 |
background-image: url("../image/flag-red.png") !important; |
|
46 |
background-position: 0; |
|
47 |
} |
|
48 |
|
|
49 |
/* ------------------------------------------------------------ */ |
|
50 |
/* Special things that apply to the context menu */ |
|
51 |
/* ------------------------------------------------------------ */ |
|
52 |
|
|
53 |
.context-menu-item.icon-flag { background-image: url("../image/flag-red.png"); } |
|
54 |
.context-menu-item.icon-close { background-image: url("../image/document-close.png"); } |
|
55 |
.context-menu-item.icon-save { background-image: url("../image/document-save.png"); } |
|
56 |
.context-menu-item.icon-revert { background-image: url("../image/edit-undo.png"); } |
|
57 |
.context-menu-item.icon-pdf { background-image: url("../image/application-pdf.png"); } |
|
58 |
.context-menu-item.icon-html { background-image: url("../image/text-html.png"); } |
|
59 |
.context-menu-item.icon-add-picture { background-image: url("../image/add-picture.png"); } |
|
60 |
.context-menu-item.icon-download { background-image: url("../image/download.png"); } |
|
61 |
.context-menu-item.icon-renumber { background-image: url("../image/format-list-ordered.png"); } |
|
62 |
|
|
63 |
/* ------------------------------------------------------------ */ |
|
64 |
/* Sections & function blocks */ |
|
65 |
/* ------------------------------------------------------------ */ |
|
66 |
|
|
67 |
.section { |
|
68 |
border-left: 0; |
|
69 |
margin-left: 0; |
|
70 |
} |
|
71 |
|
|
72 |
.section-header{ |
|
73 |
display: block ; |
|
74 |
overflow: hidden; |
|
75 |
width: 70% ; |
|
76 |
} |
|
77 |
|
|
78 |
.section-description-heading { |
|
79 |
font-weight: normal; |
|
80 |
} |
|
81 |
|
|
82 |
.section-description { |
|
83 |
color: #000; |
|
84 |
background: rgb(235, 235, 235); |
|
85 |
//border: 1px solid #ccc; |
|
86 |
margin-bottom: 15px; |
|
87 |
} |
|
88 |
|
|
89 |
.function-block { |
|
90 |
border-top: 1px solid #bbb; |
|
91 |
//border-left: 0; |
|
92 |
margin: 0.6em 0 2.2em 0 ; |
|
93 |
padding: 0.8em 0 1.0em 0 ; |
|
94 |
overflow: hidden; |
|
95 |
display: block; |
|
96 |
//background-color: yellow ; |
|
97 |
} |
|
98 |
|
|
99 |
.function-block-content{ |
|
100 |
overflow: hidden ; |
|
101 |
} |
|
102 |
|
|
103 |
.function-block-form { |
|
104 |
background: rgb(235, 235, 235); |
|
105 |
border: 1px solid rgb(0, 100, 0); |
|
106 |
} |
|
107 |
.function-block-header { |
|
108 |
clear: both; |
|
109 |
overflow: hidden; |
|
110 |
} |
|
111 |
.function-block-number { |
|
112 |
font-weight: bold; |
|
113 |
min-width: 6.0em ; |
|
114 |
display: block; |
|
115 |
float: left; |
|
116 |
} |
|
117 |
.function-block-desc { |
|
118 |
font-weight: normal; |
|
119 |
float: left; |
|
120 |
width: 70%; |
|
121 |
//clear: both; |
|
122 |
padding-bottom: 1.0em ; |
|
123 |
} |
|
124 |
.function-block-desc p { |
|
125 |
margin: 0 0 0.6em 0; |
|
126 |
padding: 0 ; |
|
127 |
} |
|
128 |
|
|
129 |
.function-block-properties { |
|
130 |
display: block ; |
|
131 |
margin: 0 0 0 6.1em; |
|
132 |
padding: 0 ; |
|
133 |
float: left; |
|
134 |
overflow: hidden; |
|
135 |
clear: both; |
|
136 |
} |
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
.function-block-form > div { |
|
142 |
padding: 0.4em; |
|
143 |
} |
|
144 |
|
|
145 |
.sub-function-block { |
|
146 |
//background-color: #fff; |
|
147 |
border-top: 1px solid #ccc; |
|
148 |
margin: 1.0em 0 0.4em 0; |
|
149 |
padding: 1.8em 0 1.6em 0 ; |
|
150 |
} |
|
151 |
|
|
152 |
.sub-function-block-container { |
|
153 |
margin: 1.0em 0 1.6em 6.0em; |
|
154 |
padding: 1.6em 0.6em 0.6em 0; |
|
155 |
//border: 1px solid #ccc; |
|
156 |
} |
|
157 |
|
|
158 |
.sub-function-block-header { |
|
159 |
//padding: 0.2em; |
|
160 |
font-weight: normal; |
|
161 |
font-size: 120% ; |
|
162 |
color: #666; |
|
163 |
//background: #ccc; |
|
164 |
margin-top: 1.0em ; |
|
165 |
} |
|
166 |
|
|
167 |
/* Flagged sections, function blocks, text blocks */ |
|
168 |
|
|
169 |
.section.flagged .section-description, |
|
170 |
.function-block.flagged, |
|
171 |
.sub-function-block.flagged { |
|
172 |
background-color: #feece3; |
|
173 |
} |
|
174 |
|
|
175 |
.section.flagged .section-description > .section-description-heading, |
|
176 |
.function-block.flagged > .function-block-content > div > .function-block-number, |
|
177 |
.sub-function-block.flagged > .sub-function-block-content > div > .function-block-number { |
|
178 |
background-color: #fe5f14; |
|
179 |
color: #fff; |
|
180 |
} |
|
181 |
|
|
182 |
/* Selected sections, function blocks, text blocks */ |
|
183 |
|
|
184 |
.section.selected, |
|
185 |
.function-block.selected, |
|
186 |
.sub-function-block.selected { |
|
187 |
margin-left: -3px; |
|
188 |
border-left: 3px solid #cbb120; |
|
189 |
} |
|
190 |
|
|
191 |
/* ------------------------------------------------------------ */ |
|
192 |
/* Text blocks */ |
|
193 |
/* ------------------------------------------------------------ */ |
|
194 |
|
|
195 |
.requirement-spec-text-block { |
|
196 |
border-left: 0; |
|
197 |
margin-left: 3px; |
|
198 |
margin-top: 10px; |
|
199 |
} |
|
200 |
|
|
201 |
.requirement-spec-text-block > h2 { |
|
202 |
margin-top: 0px; |
|
203 |
} |
|
204 |
|
|
205 |
.requirement-spec-text-block.flagged { |
|
206 |
background-color: #feece3; |
|
207 |
/* border: 1px solid #fe5f14; */ |
|
208 |
} |
|
209 |
|
|
210 |
.requirement-spec-text-block.flagged > h2 { |
|
211 |
background-color: #fe5f14; |
|
212 |
color: #fff; |
|
213 |
} |
|
214 |
|
|
215 |
.requirement-spec-text-block.selected { |
|
216 |
border-left: 3px solid #cbb120; |
|
217 |
margin-left: 0; |
|
218 |
} |
|
219 |
|
|
220 |
.requirement-spec-text-block-picture-thumbnail { |
|
221 |
border-radius: 5px; |
|
222 |
border: 2px solid #ebebeb; |
|
223 |
float: left; |
|
224 |
margin-right: 20px; |
|
225 |
padding: 5px; |
|
226 |
text-align: center; |
|
227 |
width: 130px; |
|
228 |
} |
|
229 |
|
|
230 |
.requirement-spec-text-block-picture-thumbnail-img-container { |
|
231 |
height: 64px; |
|
232 |
margin: auto; |
|
233 |
padding: auto; |
|
234 |
width: 64px; |
|
235 |
} |
|
236 |
|
|
237 |
.requirement-spec-text-block-picture-thumbnail.selected { |
|
238 |
border: 2px solid #cbb120; |
|
239 |
} |
|
240 |
|
|
241 |
/* ------------------------------------------------------------ */ |
|
242 |
/* Time/cost estimation */ |
|
243 |
/* ------------------------------------------------------------ */ |
|
244 |
|
|
245 |
#time_cost_estimate p { |
|
246 |
margin-top: 0; |
|
247 |
margin-bottom: 0; |
|
248 |
} |
Auch abrufbar als: Unified diff
css/requirement_spec-ORIGINAL.css