Bug fixes

This commit is contained in:
dignajar 2015-06-28 15:49:24 -03:00
parent 3c2e5e8ce7
commit e2326baded
2 changed files with 10 additions and 1 deletions

View File

@ -161,6 +161,15 @@ p.advOptions {
font-size: 0.8em; font-size: 0.8em;
} }
a.btn-red {
color: rgba(255, 255, 255, 0.9) !important;
}
a.btn-red:hover {
color: rgba(255, 255, 255, 0.6) !important;
}
/* ----------- PLUGINS ----------- */ /* ----------- PLUGINS ----------- */
div.pluginBox { div.pluginBox {
box-shadow: 0 1px 2px rgba(0,0,0,.26); box-shadow: 0 1px 2px rgba(0,0,0,.26);

View File

@ -9,7 +9,7 @@
echo '<p>'.$Plugin->description().'</p>'; echo '<p>'.$Plugin->description().'</p>';
if($Plugin->installed()) { if($Plugin->installed()) {
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'uninstall-plugin/'.$Plugin->className().'" class="btn btn-blue btn-small">Uninstall plugin</a>'; echo '<a href="'.HTML_PATH_ADMIN_ROOT.'uninstall-plugin/'.$Plugin->className().'" class="btn btn-red btn-small">Uninstall plugin</a>';
} }
else { else {
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'install-plugin/'.$Plugin->className().'" class="btn btn-blue btn-small">Install plugin</a>'; echo '<a href="'.HTML_PATH_ADMIN_ROOT.'install-plugin/'.$Plugin->className().'" class="btn btn-blue btn-small">Install plugin</a>';