diff --git a/module/webapp/css/common.css b/module/webapp/css/common.css
index 6e752b4a27..085f03932e 100644
--- a/module/webapp/css/common.css
+++ b/module/webapp/css/common.css
@@ -3,13 +3,16 @@
.error {color:red; font-size:14px}
.success {color:green; font-size:14px}
-.exttable td {padding:10px 5px 5px 10px}
+.exttable tr {padding:5px 0px}
+.exttable td {padding:0px 5px 0px 10px}
.exttable caption{background:#efefef; border-color:#CCC9C9; margin-left:0}
.exttable {border-color:#CCC9C9; border-top:none;}
.exttable td{border-color:#CCC9C9}
#webapps li {float:left; width:25%; list-style:none}
-#webapps li table {border:0px; width:95%; background:#f0f0f0}
-#webapps li table .webapp-name{font-size:14px}
+#webapps li table {border:0px; width:95%; background:#f5f5f5}
+#webapps li table .webapp-name{font-size:14px; color:#039; padding-top:6px;}
+#webapps li table .webapp-icon{padding:5px;}
+#webapps li table .webapp-info{color:#888; padding-top:2px;}
small{font-weight:normal}
diff --git a/module/webapp/view/index.html.php b/module/webapp/view/index.html.php
index 2226307bdb..18f5e17c87 100644
--- a/module/webapp/view/index.html.php
+++ b/module/webapp/view/index.html.php
@@ -20,10 +20,10 @@
- addType == 'custom' ? '' : $config->webapp->url) . $webapp->icon?>' width='72' height='72' /> |
- name?> |
+ addType == 'custom' ? '' : $config->webapp->url) . $webapp->icon?>' width='72' height='72' /> |
+ name?> |
- | desc) ? ' ' : $webapp->desc?> |
+ | desc) ? ' ' : $webapp->desc?> |
| webapp->addTypeList[$webapp->addType];?> |
diff --git a/module/webapp/view/obtain.html.php b/module/webapp/view/obtain.html.php
index e7e44892b1..dc00f3a8e5 100644
--- a/module/webapp/view/obtain.html.php
+++ b/module/webapp/view/obtain.html.php
@@ -42,10 +42,10 @@
- webapp->url . $webapp->icon?>' width='72' height='72' /> |
- name?> |
+ webapp->url . $webapp->icon?>' width='72' height='72' /> |
+ name?> |
- | desc) ? ' ' : $webapp->desc?> |
+ | desc) ? ' ' : $webapp->desc?> |
| id]) ? html::commonButton($lang->webapp->installed, "disabled='disabled' style='color:gray'") : html::a(inLink('install', "webappID={$webapp->id}"), $lang->webapp->install, '_self', "class='button-c iframe'")?> |
diff --git a/www/theme/default/images/main/webapp-default.png b/www/theme/default/images/main/webapp-default.png
index 9e87f2935f..0253d21114 100755
Binary files a/www/theme/default/images/main/webapp-default.png and b/www/theme/default/images/main/webapp-default.png differ
|