mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 22:57:14 +02:00
Issue #187 - styling of status and latest menus. 1440x900 or higher is recommended.
This commit is contained in:
@@ -384,14 +384,14 @@ class admin_shortcodes
|
|||||||
|
|
||||||
$allconfigs = multiarray_sort($allconfigs,'title'); //XXX FIXME - not sorting correctly.
|
$allconfigs = multiarray_sort($allconfigs,'title'); //XXX FIXME - not sorting correctly.
|
||||||
|
|
||||||
$text = "<ul id='e-latest'>";
|
$text = "<ul id='e-latest' class='unstyled'>";
|
||||||
foreach($allconfigs as $k=>$v)
|
foreach($allconfigs as $k=>$v)
|
||||||
{
|
{
|
||||||
foreach($v as $val)
|
foreach($v as $val)
|
||||||
{
|
{
|
||||||
$class = admin_shortcodes::getBadge($val['total']);
|
$class = admin_shortcodes::getBadge($val['total']);
|
||||||
$link = "<a href='".$val['url']."'>".str_replace(":"," ",$val['title'])." <span class='".$class."'>".$val['total']."</span></a>";
|
$link = "<a href='".$val['url']."'>".str_replace(":"," ",$val['title'])." <span class='".$class."'>".$val['total']."</span></a>";
|
||||||
$text .= "<li>".$val['icon']." ".$link."</li>\n";
|
$text .= "<li class='clearfix'>".$val['icon']." ".$link."</li>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$text .= "</ul>";
|
$text .= "</ul>";
|
||||||
@@ -1050,7 +1050,7 @@ class admin_shortcodes
|
|||||||
|
|
||||||
$allconfigs = multiarray_sort($allconfigs,'title'); //XXX FIXME - not sorting correctly.
|
$allconfigs = multiarray_sort($allconfigs,'title'); //XXX FIXME - not sorting correctly.
|
||||||
|
|
||||||
$text = "<ul id='e-status'>";
|
$text = "<ul id='e-status' class='unstyled'>";
|
||||||
foreach($allconfigs as $k=>$v)
|
foreach($allconfigs as $k=>$v)
|
||||||
{
|
{
|
||||||
foreach($v as $val)
|
foreach($v as $val)
|
||||||
|
@@ -159,7 +159,7 @@ define("ADLAN_143", "Search Configuration");
|
|||||||
define("ADLAN_144", "You are in simple-view mode, to switch to advanced-view");
|
define("ADLAN_144", "You are in simple-view mode, to switch to advanced-view");
|
||||||
define("ADLAN_145", "click here");
|
define("ADLAN_145", "click here");
|
||||||
|
|
||||||
define("ADLAN_146", "Failed login attempts");
|
define("ADLAN_146", "Failed logins");
|
||||||
define("ADLAN_147", "File Inspector");
|
define("ADLAN_147", "File Inspector");
|
||||||
define("ADLAN_148", "Scan site files");
|
define("ADLAN_148", "Scan site files");
|
||||||
|
|
||||||
|
@@ -764,16 +764,16 @@ i.searchquery {
|
|||||||
|
|
||||||
/****************************************************************/
|
/****************************************************************/
|
||||||
|
|
||||||
ul#e-status { list-style: none; margin:0px 14px }
|
ul#e-status { margin:0px 14px }
|
||||||
ul#e-status li { padding-bottom:6px; }
|
ul#e-status li { padding-bottom:6px; font-size:85% }
|
||||||
ul#e-status { line-height:20px }
|
ul#e-status { line-height:20px }
|
||||||
ul#e-status li a span.badge { float:right; }
|
ul#e-status li a span.badge { float:right; font-size:85% }
|
||||||
ul#e-status li a:hover { text-decoration: none; }
|
ul#e-status li a:hover { text-decoration: none; }
|
||||||
|
|
||||||
ul#e-latest { list-style: none; margin:0px 14px}
|
ul#e-latest { margin:0px 14px}
|
||||||
ul#e-latest li { padding-bottom:6px; }
|
ul#e-latest li { padding-bottom:6px; font-size:85%}
|
||||||
ul#e-latest { line-height:17px }
|
ul#e-latest { line-height:17px }
|
||||||
ul#e-latest li a span.badge { float:right; }
|
ul#e-latest li a span.badge { float:right;font-size:85% }
|
||||||
ul#e-latest li a:hover { text-decoration: none; }
|
ul#e-latest li a:hover { text-decoration: none; }
|
||||||
|
|
||||||
/* Bootstrap tags input */
|
/* Bootstrap tags input */
|
||||||
|
Reference in New Issue
Block a user