Commit 29157595 authored by nextime's avatar nextime

Some gui effects

parent 2243f6e0
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -158,6 +158,14 @@
}
#content.theme-dmwithe {
box-shadow: 0px 0px 15px 3px #969696;
}
#content.theme-dmblack {
box-shadow: 0px 0px 15px 3px #7e79ff;
}
.scrollable{
overflow: auto;
-webkit-transition-property: top, bottom;
......
......@@ -9,14 +9,25 @@
$links[$tr->Get($ws)]=$ws;
}
ksort($links, SORT_NATURAL | SORT_FLAG_CASE);
$nonelink=false;
foreach($links as $k => $v)
{
if(!startsWith($v, '_')) {
if($v!='none') {
?>
<a href="<?=$BASEGUIPATH."/actuations/".$v?>" data-guisubsection='<?=$v?>' class="btn btn-block btn-default leftbtn"><?=$k?></a>
<?
} else {
$nonelink=true;
}
}
}
if($nonelink)
{
?>
<a href="<?=$BASEGUIPATH."/actuations/none"?>" data-guisubsection='none' class="btn btn-block btn-default leftbtn"><?=$tr->Get('none')?></a>
<?
}
?>
</div>
</div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment