From: <txm...@us...> - 2015-03-07 16:48:02
|
Revision: 13010 http://sourceforge.net/p/xoops/svn/13010 Author: txmodxoops Date: 2015-03-07 16:47:59 +0000 (Sat, 07 Mar 2015) Log Message: ----------- Updated Fixed bugs Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/assets/css/dashboard.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/theme.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/xotpl/theme_page.html Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/assets/css/dashboard.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/assets/css/dashboard.css 2015-03-07 11:02:42 UTC (rev 13009) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/assets/css/dashboard.css 2015-03-07 16:47:59 UTC (rev 13010) @@ -22,17 +22,27 @@ } #page-wrapper { - padding: 15px 15px; - min-height: 600px; - background:#F3F3F3; - + padding: 10px 10px; + min-height: 400px; + z-index: 1; + box-shadow: 0 0 3px #131313; + padding-bottom: 80px !important; + margin-bottom: -78px !important; + overflow: hidden; + -webkit-transition: 0.2s; + -moz-transition: 0.2s; + -o-transition: 0.2s; + transition: 0.2s; + color: inherit; + background:#F3F3F3; } + #page-inner { width:100%; - margin:10px 20px 10px 0px; + margin:2px 7px 2px 0px; background-color:#fff!important; - padding:10px; - min-height:1200px; + padding:8px; + min-height:800px; } #logout { @@ -298,10 +308,14 @@ padding: 5px; } +ul.social-icons { + margin: 0 8px 0; + padding: .8em; +} + ul.social-icons li { display: inline; - margin: 0 10px 0; - padding: 2px; + margin: 0 8px 0; } ul.social-icons li a:hover { @@ -543,8 +557,7 @@ #page-wrapper{ margin: 0 0 0 260px; padding: 15px 30px; - min-height: 1200px; - + min-height: 300px; } .navbar-side { z-index: 1; Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/theme.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/theme.html 2015-03-07 11:02:42 UTC (rev 13009) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/theme.html 2015-03-07 16:47:59 UTC (rev 13010) @@ -6,9 +6,9 @@ <body id="<{$xoops_dirname}>" class="<{$xoops_langcode}>"> <div id="wrapper"> <{includeq file="$theme_tpl/theme_header.html"}> - <{includeq file="$theme_tpl/theme_page.html" }> - </div><{* /#wrapper *}> - <{includeq file="$theme_tpl/theme_footer.html"}> + <{includeq file="$theme_tpl/theme_page.html" }> + <{includeq file="$theme_tpl/theme_footer.html"}> + </div><{* /#wrapper *}> <{includeq file="$theme_tpl/theme_scripts.html"}> </body> </html> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/xotpl/theme_page.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/xotpl/theme_page.html 2015-03-07 11:02:42 UTC (rev 13009) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/dashboard/xotpl/theme_page.html 2015-03-07 16:47:59 UTC (rev 13010) @@ -10,22 +10,16 @@ <{if $xo_sys_breadcrumb}> <div class="row"> <div class="col-lg-12"> - <ol class="breadcrumb"> - <{foreach item=breadcrumb from=$xo_sys_breadcrumb}> - <{if $breadcrumb.home}> - <li class="breadcrumb-dashboard"><a href="<{$breadcrumb.link}>" title="<{$breadcrumb.title}>"><i class="fa fa-dashboard"></i> Dashboard</a></li> - <{elseif $breadcrumb.link}> - <li class="breadcrumb-link"><a href="<{$breadcrumb.link}>" title="<{$breadcrumb.title}>"><{$breadcrumb.title}></a></li> - <{else}> - <li class="breadcrumb-title"><{$breadcrumb.title}></li> - <{/if}> - <{/foreach}> - </ol> + <ul class="breadcrumb"> + <{foreach item=item from=$xo_sys_breadcrumb}> + <li><{if $item.link}><a href="<{$item.link}>" title="<{$item.title}>"><{$item.title}></a><{else}><{$item.title}><{/if}></li> + <{/foreach}> + </ul> </div> </div> <{/if}> <{* /.row *}> - <{if $xoops_contents || $xo_system_menu}> + <{if $xoops_contents && $admin_warnings_enable !== false}> <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> |