You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2012/09/19 20:28:49 UTC

svn commit: r1387700 - in /incubator/openmeetings/trunk/singlewebapp: WebContent/openmeetings/css/theme.css src/org/apache/openmeetings/web/components/admin/configurations/ConfigsPanel.html

Author: sebawagner
Date: Wed Sep 19 18:28:49 2012
New Revision: 1387700

URL: http://svn.apache.org/viewvc?rev=1387700&view=rev
Log:
OPENMEETINGS-428 style config table further

Modified:
    incubator/openmeetings/trunk/singlewebapp/WebContent/openmeetings/css/theme.css
    incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/components/admin/configurations/ConfigsPanel.html

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/openmeetings/css/theme.css
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/openmeetings/css/theme.css?rev=1387700&r1=1387699&r2=1387700&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/openmeetings/css/theme.css (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/openmeetings/css/theme.css Wed Sep 19 18:28:49 2012
@@ -66,6 +66,7 @@
 }
 
 table.adminListTable {
+	overflow: hidden;
 	max-width: 536px;
 	min-width: 536px;
 }
@@ -75,6 +76,30 @@ table.adminListTable th {
 	color: #ffffff;
 }
 
+/**/
+table.adminListTable td.column1 {
+	width: 36px;
+}
+table.adminListTable td.column2 {
+	width: 150px;
+}
+table.adminListTable td.column3 {
+	width: 350px;
+}
+
+table.adminListTable td div.divcolumn1 {
+	word-wrap: break-word;
+	width: 36px;
+}
+table.adminListTable td div.divcolumn2 {
+	word-wrap: break-word;
+	width: 150px;
+}
+table.adminListTable td div.divcolumn3 {
+	word-wrap: break-word;
+	width: 330px;
+}
+
 table.adminListTable tr.even {
 	background-color: #ffebcd;
 }

Modified: incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/components/admin/configurations/ConfigsPanel.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/components/admin/configurations/ConfigsPanel.html?rev=1387700&r1=1387699&r2=1387700&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/components/admin/configurations/ConfigsPanel.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/components/admin/configurations/ConfigsPanel.html Wed Sep 19 18:28:49 2012
@@ -27,19 +27,19 @@
 			<tr>
 				<td class="adminPanelColumnTable">
 					<span wicket:id="navigator">[dataview navigator]</span>
-					<table wicket:id="listContainer" class="adminListTable" id="example">
+					<table class="adminListTable">
 						<thead>
 							<tr>
 								<th><wicket:ommessage key="264" /></th>
 								<th><wicket:ommessage key="265" /></th>
 								<th><wicket:ommessage key="598" /></th>
 							</tr>	
-						</thead>	
-						<tbody>	
+						</thead>
+						<tbody wicket:id="listContainer" >	
 				    		<tr wicket:id="configList">
-								<td><span wicket:id="configuration_id"></span></td>
-								<td><span wicket:id="conf_key"></span></td>
-								<td><span wicket:id="conf_value"></span></td>
+								<td class="column1"><div class="divcolumn1"><span wicket:id="configuration_id"></span></div></td>
+								<td class="column2"><div class="divcolumn2"><span wicket:id="conf_key"></span></div></td>
+								<td class="column3"><div class="divcolumn3"><span wicket:id="conf_value"></span></div></td>
 							</tr>
 						</tbody>
 					</table>