Bug fixes
This commit is contained in:
parent
3c2e5e8ce7
commit
e2326baded
|
@ -161,6 +161,15 @@ p.advOptions {
|
|||
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 ----------- */
|
||||
div.pluginBox {
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,.26);
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
echo '<p>'.$Plugin->description().'</p>';
|
||||
|
||||
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 {
|
||||
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'install-plugin/'.$Plugin->className().'" class="btn btn-blue btn-small">Install plugin</a>';
|
||||
|
|
Loading…
Reference in New Issue