Revision 4157
Added by daigle over 16 years ago
lib/admin/admin.css | ||
---|---|---|
111 | 111 |
vertical-align: middle; |
112 | 112 |
width: 200px; |
113 | 113 |
padding-right: 8px; |
114 |
padding-top: 5px; |
|
114 | 115 |
} |
115 | 116 |
|
116 | 117 |
.config-property-input { |
117 | 118 |
text-align: left; |
118 | 119 |
vertical-align: middle; |
119 | 120 |
width: 418px; |
121 |
padding-top: 5px; |
|
120 | 122 |
} |
121 | 123 |
|
124 |
.config-property-description { |
|
125 |
text-align: left; |
|
126 |
font-size: 12; |
|
127 |
border-bottom: solid #C0C0C0; |
|
128 |
border-bottom-width: 1px; |
|
129 |
border-left: solid #C0C0C0; |
|
130 |
border-left-width: 1px; |
|
131 |
vertical-align: middle; |
|
132 |
} |
|
133 |
|
|
122 | 134 |
.config-question-mark { |
123 | 135 |
text-align: left; |
124 | 136 |
vertical-align: middle; |
137 |
padding-top: 5px; |
|
125 | 138 |
} |
126 | 139 |
|
127 | 140 |
.login-input { |
lib/admin/skins-configuration.jsp | ||
---|---|---|
125 | 125 |
%> |
126 | 126 |
<tr> |
127 | 127 |
<td class="config-property-label" > |
128 |
<label for="<%= skinName %>-radio"> Make <%= skinName %> default </label>
|
|
128 |
<label for="<%= skinName %>-radio"> Make "<%= skinName %>" default </label>
|
|
129 | 129 |
</td> |
130 | 130 |
<td class="config-property-input" > |
131 | 131 |
<input type="radio" |
... | ... | |
207 | 207 |
<img src="style/images/question-mark.gif" onClick="helpWindow('ldap_url_help.html')"/><br/> |
208 | 208 |
</td> |
209 | 209 |
<% |
210 |
} |
|
211 |
} |
|
210 |
} |
|
212 | 211 |
%> |
213 | 212 |
</tr> |
214 | 213 |
<% |
214 |
if (metaDataProperty.getDescription() != null) { |
|
215 |
%> |
|
216 |
<tr> |
|
217 |
<td></td> |
|
218 |
<td class="config-property-description" colspan="2" > |
|
219 |
<%= metaDataProperty.getDescription() %> |
|
220 |
</td> |
|
221 |
</tr> |
|
222 |
<% |
|
223 |
} |
|
224 |
} |
|
215 | 225 |
} |
216 | 226 |
|
217 | 227 |
%> |
lib/admin/properties-configuration.jsp | ||
---|---|---|
61 | 61 |
MetaDataGroup metaDataGroup = (MetaDataGroup)groupMap.get(groupId); |
62 | 62 |
%> |
63 | 63 |
<h3><%= metaDataGroup.getName() %></h3> |
64 |
<hr class="config-line"> |
|
64 | 65 |
<table class="config-section"> |
65 | 66 |
<% |
66 | 67 |
// get all the properties in this group |
... | ... | |
132 | 133 |
<td class="config-question-mark"> |
133 | 134 |
<img class=question-mark src="style/images/question-mark.gif" onClick="helpWindow('ldap_url_help.html')"/> |
134 | 135 |
</td> |
135 |
|
|
136 |
</tr> |
|
136 | 137 |
<% |
137 | 138 |
} |
139 |
|
|
140 |
if (metaDataProperty.getDescription() != null) { |
|
141 |
%> |
|
142 |
<tr> |
|
143 |
<td></td> |
|
144 |
<td class="config-property-description" colspan="2" > |
|
145 |
<%= metaDataProperty.getDescription() %> |
|
146 |
</td> |
|
147 |
</tr> |
|
148 |
<% |
|
149 |
} |
|
138 | 150 |
} |
139 | 151 |
%> |
140 | 152 |
|
Also available in: Unified diff
Add description under form fields