Merge branch 'master' of git@github.com:easysoft/zentaopms
This commit is contained in:
@@ -294,14 +294,14 @@ function selectAll(checker, scope, type)
|
|||||||
{
|
{
|
||||||
if(type == 'button')
|
if(type == 'button')
|
||||||
{
|
{
|
||||||
$('input').each(function()
|
$('input:checkbox').each(function()
|
||||||
{
|
{
|
||||||
$(this).attr("checked", true)
|
$(this).attr("checked", true)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else if(type == 'checkbox')
|
else if(type == 'checkbox')
|
||||||
{
|
{
|
||||||
$('input').each(function()
|
$('input:checkbox').each(function()
|
||||||
{
|
{
|
||||||
$(this).attr("checked", checker.checked)
|
$(this).attr("checked", checker.checked)
|
||||||
});
|
});
|
||||||
@@ -351,7 +351,7 @@ function selectReverse(scope)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$('input').each(function()
|
$('input:checkbox').each(function()
|
||||||
{
|
{
|
||||||
$(this).attr("checked", !$(this).attr("checked"))
|
$(this).attr("checked", !$(this).attr("checked"))
|
||||||
});
|
});
|
||||||
@@ -365,6 +365,34 @@ EOT;
|
|||||||
return $string;
|
return $string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create select buttons include 'selectAll' and 'selectAll'.
|
||||||
|
*
|
||||||
|
* @param string $scope the scope of select reverse.
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
static public function selectButton($scope = "")
|
||||||
|
{
|
||||||
|
$string = <<<EOT
|
||||||
|
<script>
|
||||||
|
function selectAll(scope)
|
||||||
|
{
|
||||||
|
if(scope) $('#' + scope + ' input').each(function() { $(this).attr("checked", true);});
|
||||||
|
else $('input:checkbox').each(function() { $(this).attr("checked", true);});
|
||||||
|
}
|
||||||
|
function selectReverse(scope)
|
||||||
|
{
|
||||||
|
if(scope) $('#' + scope + ' input').each(function() { $(this).attr("checked", !$(this).attr("checked"));});
|
||||||
|
else $('input:checkbox').each(function(){ $(this).attr("checked", !$(this).attr("checked"));});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
EOT;
|
||||||
|
global $lang;
|
||||||
|
$string .= "<a id='allchecker' class='btn btn-select-all' href='javascript:selectAll(\"$scope\")' >{$lang->selectAll}</a>";
|
||||||
|
$string .= "<a id='reversechecker' class='btn btn-select-reverse' href='javascript:selectReverse(\"$scope\")'>{$lang->selectReverse}</a>";
|
||||||
|
return $string;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create tags like "<input type='text' />"
|
* Create tags like "<input type='text' />"
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
.panel-block .panel-heading {padding: 6px 10px; margin: 0;}
|
.panel-block .panel-heading {padding: 6px 10px; margin: 0;}
|
||||||
.panel-block .panel-actions {line-height: 36px; margin-right: -2px;}
|
.panel-block .panel-actions {line-height: 36px; margin-right: -2px;}
|
||||||
.panel > .table > thead > tr > th, .panel > form > .table > thead > tr > th {background: #f1f1f1!important}
|
.panel > .table > thead > tr > th, .panel > form > .table > thead > tr > th {background: #f1f1f1!important}
|
||||||
.panel-block td, .panel-block th {padding: 6px;}
|
.panel-block td, .panel-block th {padding: 6px 6px 5px;}
|
||||||
.panel-block.dynamic td {padding: 6px 6px 5px}
|
.panel-block.dynamic td {padding: 5px 6px 5px; overflow: hidden;}
|
||||||
.panel-block tr > td:first-child, .panel-block tr > th:first-child, .outer .table tr > th:first-child, .outer .table tr > td:first-child {padding-left: 10px;}
|
.panel-block tr > td:first-child, .panel-block tr > th:first-child, .outer .table tr > th:first-child, .outer .table tr > td:first-child {padding-left: 10px;}
|
||||||
.panel-block td .progressbar {display: inline-block; height: 16px; background: #229F24;}
|
.panel-block td .progressbar {display: inline-block; height: 16px; background: #229F24;}
|
||||||
.panel-block .icon {color: #666; display: inline-block; margin-right: 2px;}
|
.panel-block .icon {color: #666; display: inline-block; margin-right: 2px;}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<?php echo html::icon($lang->icons['dynamic']);?> <strong><?php echo $lang->my->home->latest;?></strong>
|
<?php echo html::icon($lang->icons['dynamic']);?> <strong><?php echo $lang->my->home->latest;?></strong>
|
||||||
<div class="panel-actions pull-right"><?php common::printLink('company', 'dynamic', '', $lang->more . " <i class='icon-th icon icon-double-angle-right'></i>");?></div>
|
<div class="panel-actions pull-right"><?php common::printLink('company', 'dynamic', '', $lang->more . " <i class='icon-th icon icon-double-angle-right'></i>");?></div>
|
||||||
</div>
|
</div>
|
||||||
<table class='table table-condensed table-hover table-striped table-borderless'>
|
<table class='table table-condensed table-hover table-striped table-borderless table-fixed'>
|
||||||
<?php
|
<?php
|
||||||
foreach($actions as $action)
|
foreach($actions as $action)
|
||||||
{
|
{
|
||||||
@@ -15,9 +15,9 @@
|
|||||||
if(!$canView) continue;
|
if(!$canView) continue;
|
||||||
$user = isset($users[$action->actor]) ? $users[$action->actor] : $action->actor;
|
$user = isset($users[$action->actor]) ? $users[$action->actor] : $action->actor;
|
||||||
if($action->action == 'login' or $action->action == 'logout') $action->objectName = $action->objectLabel = '';
|
if($action->action == 'login' or $action->action == 'logout') $action->objectName = $action->objectLabel = '';
|
||||||
echo "<tr><td class='nobr' width='95%'>";
|
echo "<tr><td class='nobr' width='100%'>";
|
||||||
printf($lang->my->home->action, $action->date, $user, $action->actionLabel, $action->objectLabel, $action->objectLink, $action->objectName);
|
printf($lang->my->home->action, $action->date, $user, $action->actionLabel, $action->objectLabel, $action->objectLink, $action->objectName);
|
||||||
echo "</td><td class='divider'></td></tr>";
|
echo "</td></tr>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@@ -124,14 +124,14 @@
|
|||||||
<td colspan='11'>
|
<td colspan='11'>
|
||||||
<div class='table-actions clearfix'>
|
<div class='table-actions clearfix'>
|
||||||
<?php if(count($stories)):?>
|
<?php if(count($stories)):?>
|
||||||
<div class='btn-group'><?php echo html::selectAll() . html::selectReverse();?></div>
|
<div class='btn-group'><?php echo html::selectButton();?></div>
|
||||||
<?php
|
<?php
|
||||||
$canBatchEdit = common::hasPriv('story', 'batchEdit');
|
$canBatchEdit = common::hasPriv('story', 'batchEdit');
|
||||||
$disabled = $canBatchEdit ? '' : "disabled='disabled'";
|
$disabled = $canBatchEdit ? '' : "disabled='disabled'";
|
||||||
$actionLink = $this->createLink('story', 'batchEdit', "productID=$productID&projectID=0");
|
$actionLink = $this->createLink('story', 'batchEdit', "productID=$productID&projectID=0");
|
||||||
?>
|
?>
|
||||||
<div class='btn-group dropup'>
|
<div class='btn-group dropup'>
|
||||||
<?php echo html::commonButton("<i class='icon-pencil'></i> " . $lang->edit, "onclick=\"setFormAction('$actionLink')\" $disabled");?>
|
<?php echo html::commonButton($lang->edit, "onclick=\"setFormAction('$actionLink')\" $disabled");?>
|
||||||
<button type='button' class='btn dropdown-toggle' data-toggle='dropdown'><span class='caret'></span></button>
|
<button type='button' class='btn dropdown-toggle' data-toggle='dropdown'><span class='caret'></span></button>
|
||||||
<ul class='dropdown-menu'>
|
<ul class='dropdown-menu'>
|
||||||
<?php
|
<?php
|
||||||
|
|||||||
@@ -13,9 +13,9 @@
|
|||||||
<?php include '../../common/view/alert.html.php';?>
|
<?php include '../../common/view/alert.html.php';?>
|
||||||
<?php include '../../common/view/datepicker.html.php';?>
|
<?php include '../../common/view/datepicker.html.php';?>
|
||||||
<style>
|
<style>
|
||||||
#bysearchTab {transition: all 0.3s;}
|
#bysearchTab {transition: all .3s cubic-bezier(.175, .885, .32, 1);}
|
||||||
#bysearchTab.active {background: #fff; padding: 2px 10px 3px; border: 1px solid #ddd; border-bottom: none}
|
#bysearchTab.active {background: #fff; padding: 2px 10px 3px; border: 1px solid #ddd; border-bottom: none}
|
||||||
#bysearchTab.active:hover {background: #f1f1f1}
|
#bysearchTab.active:hover {background: #ddd}
|
||||||
#bysearchTab.active > a:after {font-size: 14px; font-family: ZenIcon; content: ' \e6e2'; color: #808080}
|
#bysearchTab.active > a:after {font-size: 14px; font-family: ZenIcon; content: ' \e6e2'; color: #808080}
|
||||||
#featurebar .nav {z-index: 999; position: relative;}
|
#featurebar .nav {z-index: 999; position: relative;}
|
||||||
#querybox .form-control {padding: 2px; padding: 6px 2px\0;}
|
#querybox .form-control {padding: 2px; padding: 6px 2px\0;}
|
||||||
|
|||||||
+32
-59
@@ -16,7 +16,7 @@
|
|||||||
.w-auto {width: auto} .w-20px {width:20px} .w-30px {width:30px} .w-35px {width:35px} .w-40px {width:40px} .w-45px {width:45px} .w-50px {width:50px} .w-60px {width:60px} .w-70px {width:70px} .w-80px {width:80px} .w-90px {width:90px} .w-100px {width:100px} .w-110px {width:110px} .w-120px {width:120px} .w-130px {width:130px} .w-140px {width:140px} .w-150px {width:150px} .w-160px {width:160px} .w-180px {width:180px} .w-200px {width:200px} .w-300px {width:300px} .w-400px {width:400px} .w-500px {width:500px} .w-600px {width:600px} .w-700px {width:700px} .w-800px {width:800px} .w-900px {width:900px}
|
.w-auto {width: auto} .w-20px {width:20px} .w-30px {width:30px} .w-35px {width:35px} .w-40px {width:40px} .w-45px {width:45px} .w-50px {width:50px} .w-60px {width:60px} .w-70px {width:70px} .w-80px {width:80px} .w-90px {width:90px} .w-100px {width:100px} .w-110px {width:110px} .w-120px {width:120px} .w-130px {width:130px} .w-140px {width:140px} .w-150px {width:150px} .w-160px {width:160px} .w-180px {width:180px} .w-200px {width:200px} .w-300px {width:300px} .w-400px {width:400px} .w-500px {width:500px} .w-600px {width:600px} .w-700px {width:700px} .w-800px {width:800px} .w-900px {width:900px}
|
||||||
.mw-200px {max-width:200px!important} .mw-300px {max-width:300px!important} .mw-400px {max-width:400px!important} .mw-500px {max-width:500px!important} .mw-600px {max-width:600px!important} .mw-700px {max-width:700px!important} .mw-800px {max-width:800px!important} .mw-900px {max-width:900px!important}
|
.mw-200px {max-width:200px!important} .mw-300px {max-width:300px!important} .mw-400px {max-width:400px!important} .mw-500px {max-width:500px!important} .mw-600px {max-width:600px!important} .mw-700px {max-width:700px!important} .mw-800px {max-width:800px!important} .mw-900px {max-width:900px!important}
|
||||||
|
|
||||||
.w-id {width:70px;} .w-pri {width:40px;} .w-severity {width:50px;} .w-hour {width:48px;} .w-date {width:80px;} .w-user {width:65px;} .w-status {width:55px} .w-type {width:80px} .w-resolution {width:60px}
|
.w-id {width:70px;} .w-pri {width:40px;} .w-severity {width:50px;} .w-hour {width:54px;} .w-date {width:80px;} .w-user {width:65px;} .w-status {width:55px} .w-type {width:80px} .w-resolution {width:60px}
|
||||||
|
|
||||||
.w-p15-f {width: 15% !important; min-width: 120px} .w-p25-f {width: 25% !important; min-width: 200px} .w-p35-f {width: 35% !important; min-width: 300px} .w-p45-f {width: 45% !important; min-width: 400px}
|
.w-p15-f {width: 15% !important; min-width: 120px} .w-p25-f {width: 25% !important; min-width: 200px} .w-p35-f {width: 35% !important; min-width: 300px} .w-p45-f {width: 45% !important; min-width: 400px}
|
||||||
|
|
||||||
@@ -30,36 +30,6 @@
|
|||||||
.pdb-20 {padding-bottom: 20px !important}
|
.pdb-20 {padding-bottom: 20px !important}
|
||||||
.pdt-20 {padding-top: 20px !important}
|
.pdt-20 {padding-top: 20px !important}
|
||||||
|
|
||||||
.margin-zero {margin: 0}
|
|
||||||
.margin-10px {margin: 10px}
|
|
||||||
.margin-15px {margin: 15px}
|
|
||||||
.margin-20px {margin: 20px}
|
|
||||||
.padding-zero{padding: 0}
|
|
||||||
.padding-10px{padding: 10px}
|
|
||||||
.padding-5px {padding: 5px}
|
|
||||||
|
|
||||||
.mt-10px {margin-top: 10px}
|
|
||||||
.mr-10px {margin-right: 10px}
|
|
||||||
.mb-10px {margin-bottom: 10px}
|
|
||||||
.ml-10px {margin-left: 10px}
|
|
||||||
|
|
||||||
.mt-zero {margin-top: 0}
|
|
||||||
.mr-zero {margin-right: 0}
|
|
||||||
.mb-zero {margin-bottom: 0}
|
|
||||||
.ml-zero {margin-left: 0}
|
|
||||||
|
|
||||||
.pt-10px {padding-top: 10px}
|
|
||||||
.pr-10px {padding-right: 10px}
|
|
||||||
.pb-10px {padding-bottom:10px}
|
|
||||||
.pl-10px {padding-left: 10px}
|
|
||||||
.ph-10px {padding-left:10px; padding-right:10px}
|
|
||||||
.pv-10px {padding-top: 10px; padding-bottom:10px}
|
|
||||||
|
|
||||||
/* display type */
|
|
||||||
.hidden {display:none}
|
|
||||||
.block {display:block}
|
|
||||||
.inline {display:inline}
|
|
||||||
|
|
||||||
/* borders */
|
/* borders */
|
||||||
.bd-0, .borderless, .bd-none {border: none !important;}
|
.bd-0, .borderless, .bd-none {border: none !important;}
|
||||||
|
|
||||||
@@ -109,8 +79,8 @@ hr.small {margin: 10px 0}
|
|||||||
.tablesorter thead tr .header a,.tablesorter thead tr .headerSortUp a,.tablesorter thead tr .headerSortDown a{display: inline-block; text-decoration:none}
|
.tablesorter thead tr .header a,.tablesorter thead tr .headerSortUp a,.tablesorter thead tr .headerSortDown a{display: inline-block; text-decoration:none}
|
||||||
.tablesorter thead tr .header a {color:#333;}
|
.tablesorter thead tr .header a {color:#333;}
|
||||||
.tablesorter thead tr .header:after {font-family: ZenIcon; font-weight: normal;content: " \e6bd";font-size: 14px;}
|
.tablesorter thead tr .header:after {font-family: ZenIcon; font-weight: normal;content: " \e6bd";font-size: 14px;}
|
||||||
.tablesorter thead tr .headerSortUp:after {font-family: ZenIcon; font-weight: normal;content: " \e6bf";font-size: 14px;color:#2973EA;}
|
.tablesorter thead tr .headerSortUp:after {font-family: ZenIcon; font-weight: normal;content: " \e6b9";font-size: 14px;color:#03C;}
|
||||||
.tablesorter thead tr .headerSortDown:after{font-family: ZenIcon; font-weight: normal;content: " \e6be";font-size: 14px;color:#2973EA;}
|
.tablesorter thead tr .headerSortDown:after{font-family: ZenIcon; font-weight: normal;content: " \e6b8";font-size: 14px;color:#03C;}
|
||||||
|
|
||||||
.table tr.active td, .table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr.active:hover>th, .table-striped>tbody>tr.active:nth-child(odd).active>td, .table-striped>tbody>tr.active:nth-child(odd)>th {background-color: #FCE6A2}
|
.table tr.active td, .table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr.active:hover>th, .table-striped>tbody>tr.active:nth-child(odd).active>td, .table-striped>tbody>tr.active:nth-child(odd)>th {background-color: #FCE6A2}
|
||||||
.table tr>td.active, .table tr>th.active, .table tr.active>td, .table tr.active>th {background-color: #FCE6A2}
|
.table tr>td.active, .table tr>th.active, .table tr.active>td, .table tr.active>th {background-color: #FCE6A2}
|
||||||
@@ -140,20 +110,6 @@ hr.small {margin: 10px 0}
|
|||||||
/* code */
|
/* code */
|
||||||
code {margin-left: 0;}
|
code {margin-left: 0;}
|
||||||
|
|
||||||
/* actionbox */
|
|
||||||
.change-show:before{content: "\e661";}
|
|
||||||
.change-hide:before{content: "\e662";}
|
|
||||||
.log-desc:before{content: "\e65d";}
|
|
||||||
.log-asc:before{content: "\e65c";}
|
|
||||||
.diff-all:before{content: "\e6a3";}
|
|
||||||
.diff-short:before{content: "\e633";}
|
|
||||||
|
|
||||||
.actionbox .btn-icon {background: #e5e5e5; color: #808080; border: 1px solid #ddd; padding: 0 1px; height: 20px; line-height: 18px}
|
|
||||||
.actionbox ol {padding-left: 25px; line-height: 20px}
|
|
||||||
.actionbox .alert {margin:2px 0 8px; padding: 5px 10px; min-height: 34px}
|
|
||||||
.actionbox #historyItem {margin:0}
|
|
||||||
.actionbox blockquote {margin:0}
|
|
||||||
|
|
||||||
/* Icons */
|
/* Icons */
|
||||||
i[class^="icon-"],i[class*=" icon-"],.link-icon i[class^="icon-"],.link-icon i[class*=" icon-"]{font-size: 14px}
|
i[class^="icon-"],i[class*=" icon-"],.link-icon i[class^="icon-"],.link-icon i[class*=" icon-"]{font-size: 14px}
|
||||||
|
|
||||||
@@ -163,11 +119,28 @@ i[class^="icon-"].disabled,i[class*=" icon-"].disabled,i[class^="icon-"].disable
|
|||||||
.icon-rotate-270:before {display: inline-block; -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); transform: rotate(270deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
|
.icon-rotate-270:before {display: inline-block; -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); transform: rotate(270deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
|
||||||
|
|
||||||
/* Button icon */
|
/* Button icon */
|
||||||
.btn-icon {border-radius: 2px; display: inline-block; width: 20px; height: 20px; line-height: 20px; font-size: 14px; border: none; background: none; padding: 0; color: #4d90fe!important; text-align: center;}
|
.btn-icon {border-radius: 2px; display: inline-block; width: 20px; height: 20px; border: none; background: none; padding: 0; color: #4d90fe!important; text-align: center;}
|
||||||
.btn-icon:hover {text-decoration: none; background: #145CCD; color: #fff!important;}
|
.btn-icon > i {font-size: 18px; line-height: 20px}
|
||||||
|
.btn-icon:hover {color: #002563!important}
|
||||||
.btn-icon.disabled:hover, .btn-icon.disabled:hover > i {background: none!important; color: #ccc!important; cursor: default}
|
.btn-icon.disabled:hover, .btn-icon.disabled:hover > i {background: none!important; color: #ccc!important; cursor: default}
|
||||||
.btn-icon.text-danger {color: #D2322D!important}
|
.btn-icon.text-danger {color: #D2322D!important}
|
||||||
.btn-icon.text-danger:hover {background: #D2322D; color: #fff!important}
|
.btn-icon.text-danger:hover {color: #7e0501!important}
|
||||||
|
|
||||||
|
/* actionbox */
|
||||||
|
.change-show:before{content: "\e661";}
|
||||||
|
.change-hide:before{content: "\e662";}
|
||||||
|
.log-desc:before{content: "\e65d";}
|
||||||
|
.log-asc:before{content: "\e65c";}
|
||||||
|
.diff-all:before{content: "\e6a3";}
|
||||||
|
.diff-short:before{content: "\e633";}
|
||||||
|
|
||||||
|
.actionbox .btn-icon {background: #f1f1f1; color: #666!important; border: 1px solid #ccc; padding: 0 1px; height: 18px; line-height: 16px; width: 18px}
|
||||||
|
.actionbox .btn-icon > .icon- {font-size: 14px!important; line-height: 16px}
|
||||||
|
.actionbox .btn-icon:hover {color: #333!important; border-color: #aaa; background: #fff}
|
||||||
|
.actionbox ol {padding-left: 25px; line-height: 20px}
|
||||||
|
.actionbox .alert {margin:2px 0 8px; padding: 5px 10px; min-height: 34px}
|
||||||
|
.actionbox #historyItem {margin:0}
|
||||||
|
.actionbox blockquote {margin:0}
|
||||||
|
|
||||||
/* stars list */
|
/* stars list */
|
||||||
.stars-list {color: #E48600}
|
.stars-list {color: #E48600}
|
||||||
@@ -296,7 +269,7 @@ div.form-control[contenteditable='true'] {height: auto; text-align: left; outlin
|
|||||||
|
|
||||||
/* === Layout === */
|
/* === Layout === */
|
||||||
/* Background */
|
/* Background */
|
||||||
body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
body {font-size: 13px; color:#141414;padding-bottom: 40px;}
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
#header {padding: 12px 20px 0; background:#003366;}
|
#header {padding: 12px 20px 0; background:#003366;}
|
||||||
@@ -389,7 +362,8 @@ body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
|||||||
#featurebar .nav > li > .form-control {margin-left: 6px; padding: 1px 8px; height: 30px; height: 26px\0; margin-right: 10px;}
|
#featurebar .nav > li > .form-control {margin-left: 6px; padding: 1px 8px; height: 30px; height: 26px\0; margin-right: 10px;}
|
||||||
#featurebar .nav > li > .form-control.form-date {width: 110px}
|
#featurebar .nav > li > .form-control.form-date {width: 110px}
|
||||||
#featurebar .nav > li.datepicker-wrapper:before {right: 15px; top: 0; top: -2px\0;}
|
#featurebar .nav > li.datepicker-wrapper:before {right: 15px; top: 0; top: -2px\0;}
|
||||||
#featurebar .nav > li > a {padding: 0px 4px;}
|
#featurebar .nav > li > a {padding: 0px 4px; border-radius: 2px}
|
||||||
|
#featurebar .nav > li > a:hover {background: #ddd; color: #333}
|
||||||
#featurebar .nav > li.active > a, #featurebar .nav > li.active > a:hover, #featurebar .nav > li.active > a:active, #featurebar .nav > li.active > a:focus {font-weight: bold; color: #333}
|
#featurebar .nav > li.active > a, #featurebar .nav > li.active > a:hover, #featurebar .nav > li.active > a:active, #featurebar .nav > li.active > a:focus {font-weight: bold; color: #333}
|
||||||
#featurebar .nav > li.active > .form-control, #featurebar .nav > li.active > .form-control:hover, #featurebar .nav > li.active > .form-control:active, #featurebar .nav > li.active > .form-control:focus {border-color: #009900}
|
#featurebar .nav > li.active > .form-control, #featurebar .nav > li.active > .form-control:hover, #featurebar .nav > li.active > .form-control:active, #featurebar .nav > li.active > .form-control:focus {border-color: #009900}
|
||||||
#featurebar .btn-group {margin-right: 5px;}
|
#featurebar .btn-group {margin-right: 5px;}
|
||||||
@@ -422,8 +396,8 @@ body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
|||||||
#titlebar .actions > .text {display: inline-block; margin-left: 8px; line-height: 30px}
|
#titlebar .actions > .text {display: inline-block; margin-left: 8px; line-height: 30px}
|
||||||
|
|
||||||
/* Button in titlebar and featurebar */
|
/* Button in titlebar and featurebar */
|
||||||
#featurebar > .actions .btn:not(.btn-primary), #titlebar > .actions .btn:not(.btn-primary), #featurebar > .pull-right .btn:not(.btn-primary), #titlebar > .pull-right .btn:not(.btn-primary) {border-color: transparent; background: none; box-shadow: none; padding: 4px 8px; border-radius: 2px; text-shadow: none;}
|
#featurebar > .actions .btn:not(.btn-primary), #titlebar > .actions .btn:not(.btn-primary), #featurebar > .pull-right .btn:not(.btn-primary), #titlebar > .pull-right .btn:not(.btn-primary) {border-color: transparent; background: none; box-shadow: none; padding: 4px 8px; border-radius: 2px; text-shadow: none; color: #036}
|
||||||
#featurebar > .actions .btn:not(.btn-primary):hover, #titlebar > .actions .btn:not(.btn-primary):hover ,#featurebar > .pull-right .btn:not(.btn-primary):hover, #titlebar > .pull-right .btn:not(.btn-primary):hover{background: #ddd; border-color: #ddd;}
|
#featurebar > .actions .btn:not(.btn-primary):hover, #titlebar > .actions .btn:not(.btn-primary):hover ,#featurebar > .pull-right .btn:not(.btn-primary):hover, #titlebar > .pull-right .btn:not(.btn-primary):hover{background: #ddd; border-color: #ddd; color: #333}
|
||||||
|
|
||||||
/* Following style to fixed ie8 */
|
/* Following style to fixed ie8 */
|
||||||
#featurebar > .actions .btn, #titlebar > .actions .btn, #featurebar > .pull-right .btn, #titlebar > .pull-right .btn {border-color: transparent\0; background: none\0; box-shadow: none\0; padding: 4px 8px\0;}
|
#featurebar > .actions .btn, #titlebar > .actions .btn, #featurebar > .pull-right .btn, #titlebar > .pull-right .btn {border-color: transparent\0; background: none\0; box-shadow: none\0; padding: 4px 8px\0;}
|
||||||
@@ -433,7 +407,6 @@ body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
|||||||
|
|
||||||
/* table in outer */
|
/* table in outer */
|
||||||
.outer .table {margin-bottom: 0;}
|
.outer .table {margin-bottom: 0;}
|
||||||
.outer .table .btn-icon {margin-left: -2px}
|
|
||||||
.outer .table thead tr th {text-align: center;}
|
.outer .table thead tr th {text-align: center;}
|
||||||
.outer .table thead tr th.text-left {text-align: left;}
|
.outer .table thead tr th.text-left {text-align: left;}
|
||||||
.outer .table tbody td {vertical-align: middle;}
|
.outer .table tbody td {vertical-align: middle;}
|
||||||
@@ -449,7 +422,7 @@ body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
|||||||
.outer .table.table-data.table-borderless tbody > tr:last-child td, .outer .table.table-form tbody > tr:last-child td {border: none}
|
.outer .table.table-data.table-borderless tbody > tr:last-child td, .outer .table.table-form tbody > tr:last-child td {border: none}
|
||||||
.outer .table tfoot td {border-top: 1px solid #ddd}
|
.outer .table tfoot td {border-top: 1px solid #ddd}
|
||||||
.outer .table tfoot .form-control {padding: 1px 8px; height: 30px}
|
.outer .table tfoot .form-control {padding: 1px 8px; height: 30px}
|
||||||
.outer .table tfoot .btn {padding: 4px 12px;}
|
.outer .table tfoot .btn {padding-top: 4px; padding-bottom: 4px;}
|
||||||
.outer .table tfoot .btn > i {display: inline-block; margin-right: 1px; opacity: 0.8}
|
.outer .table tfoot .btn > i {display: inline-block; margin-right: 1px; opacity: 0.8}
|
||||||
.outer .table tfoot .datepicker-wrapper:before {top: 5px}
|
.outer .table tfoot .datepicker-wrapper:before {top: 5px}
|
||||||
.outer .table tfoot .form-control.form-date {width: 110px}
|
.outer .table tfoot .form-control.form-date {width: 110px}
|
||||||
@@ -460,6 +433,9 @@ body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
|||||||
.table-actions > .text strong {color: #333}
|
.table-actions > .text strong {color: #333}
|
||||||
.outer .table tfoot .pager {margin: 0;}
|
.outer .table tfoot .pager {margin: 0;}
|
||||||
|
|
||||||
|
/* color of a when visited */
|
||||||
|
.outer .table tbody td a:visited, #crumbs a:visited, .side > a:visited {color: #551A8B}
|
||||||
|
|
||||||
/* Querybox */
|
/* Querybox */
|
||||||
#querybox {margin: 35px -10px -7px; background-color: #fff; height: 0; transition: all 1s; border-top: 1px solid #ddd; position: relative; z-index: 199; overflow: hidden; display: none; padding: 10px}
|
#querybox {margin: 35px -10px -7px; background-color: #fff; height: 0; transition: all 1s; border-top: 1px solid #ddd; position: relative; z-index: 199; overflow: hidden; display: none; padding: 10px}
|
||||||
#querybox.show {display: block; height: auto}
|
#querybox.show {display: block; height: auto}
|
||||||
@@ -520,9 +496,6 @@ body {font-size: 12px; color:#141414;padding-bottom: 40px;}
|
|||||||
.outer.hide-side .side .side-handle {right: -1px; top: 0; border-radius: 0 4px 4px 0}
|
.outer.hide-side .side .side-handle {right: -1px; top: 0; border-radius: 0 4px 4px 0}
|
||||||
.outer.with-side.hide-side .main, .outer.with-side.hide-side .side + form, .outer.with-side.hide-side .main, .outer.with-side .side + table {margin-left: 30px}
|
.outer.with-side.hide-side .main, .outer.with-side.hide-side .side + form, .outer.with-side.hide-side .main, .outer.with-side .side + table {margin-left: 30px}
|
||||||
|
|
||||||
/* color of a when visited */
|
|
||||||
.outer .table tbody td a:visited, #crumbs a:visited {color: #551A8B}
|
|
||||||
|
|
||||||
/* Form in outer */
|
/* Form in outer */
|
||||||
.outer form > .btn {margin-right: 10px;}
|
.outer form > .btn {margin-right: 10px;}
|
||||||
.outer form .panel {margin-bottom: 0;}
|
.outer form .panel {margin-bottom: 0;}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -71,6 +71,7 @@
|
|||||||
<glyph unicode="" d="M274.286 246.857q34 0 58.143-24.143t24.143-58.143-24.143-58.143-58.143-24.143-58.143 24.143-24.143 58.143 24.143 58.143 58.143 24.143zM475.428 365.714q30.286 0 51.715-21.428t21.428-51.715v-256q0-30.286-21.428-51.714t-51.714-21.428h-402.286q-30.285 0-51.715 21.428t-21.428 51.714v256q0 30.286 21.428 51.715t51.715 21.428h64l14.572 38.857q5.428 14 19.857 24.143t29.571 10.143h146.286q15.143 0 29.572-10.143t19.857-24.143l14.572-38.857h64zM274.286 36.572q52.857 0 90.428 37.572t37.572 90.428-37.572 90.428-90.428 37.572-90.428-37.572-37.572-90.428 37.572-90.428 90.428-37.572z" horiz-adv-x="549" />
|
<glyph unicode="" d="M274.286 246.857q34 0 58.143-24.143t24.143-58.143-24.143-58.143-58.143-24.143-58.143 24.143-24.143 58.143 24.143 58.143 58.143 24.143zM475.428 365.714q30.286 0 51.715-21.428t21.428-51.715v-256q0-30.286-21.428-51.714t-51.714-21.428h-402.286q-30.285 0-51.715 21.428t-21.428 51.714v256q0 30.286 21.428 51.715t51.715 21.428h64l14.572 38.857q5.428 14 19.857 24.143t29.571 10.143h146.286q15.143 0 29.572-10.143t19.857-24.143l14.572-38.857h64zM274.286 36.572q52.857 0 90.428 37.572t37.572 90.428-37.572 90.428-90.428 37.572-90.428-37.572-37.572-90.428 37.572-90.428 90.428-37.572z" horiz-adv-x="549" />
|
||||||
<glyph unicode="" d="M207.143 279.143l-48.571-128.571q20.857-0.286 43.857-0.572t34-0.428 15-0.143l8.285 0.572q-9.143 27.143-26.286 68.857-15.143 37.714-26.286 60.285zM6-36.571h-6l0.572 22.572q6.285 2 22.857 5.143 25.428 4.572 31.428 8.857 5.715 4.572 13.715 19.428l67.715 176 80 206.857h36.572l3.143-6 58.572-137.143q29.428-69.143 35.428-84.857 11.143-29.143 27.428-67.143 7.428-16.572 18.572-46.857 6.857-19.143 18.572-42.572 6.286-14 10-16.286 6.286-5.428 19.714-6.572 13.428-1.714 29.428-7.714 1.714-11.143 1.714-16.286 0-4-0.286-7.428-22.857 0-54.857 2.286-26.572 2.286-54 2.286-22.572 0-38.572-0.572l-57.143-3.143-16.572-0.572q0 12.857 1.143 22.286l37.429 8q16 3.714 19.428 6.572 3.428 3.428 3.428 7.714t-1.714 9.143l-13.428 32.572-26.286 65.143-128.571 0.572q-8.286-18.572-29.715-78.286-6.572-18.286-6.572-24 0-8.857 4.857-12.286 7.428-6 29.428-9.143 0.857 0 3.857-0.572t8.571-1.428 11.572-1.714q0.286-8 0.286-16.572 0-4.857-0.571-7.714-18.857 0-99.715 5.714l-13.715-2.286q-23.143-4-47.715-4z" horiz-adv-x="476" />
|
<glyph unicode="" d="M207.143 279.143l-48.571-128.571q20.857-0.286 43.857-0.572t34-0.428 15-0.143l8.285 0.572q-9.143 27.143-26.286 68.857-15.143 37.714-26.286 60.285zM6-36.571h-6l0.572 22.572q6.285 2 22.857 5.143 25.428 4.572 31.428 8.857 5.715 4.572 13.715 19.428l67.715 176 80 206.857h36.572l3.143-6 58.572-137.143q29.428-69.143 35.428-84.857 11.143-29.143 27.428-67.143 7.428-16.572 18.572-46.857 6.857-19.143 18.572-42.572 6.286-14 10-16.286 6.286-5.428 19.714-6.572 13.428-1.714 29.428-7.714 1.714-11.143 1.714-16.286 0-4-0.286-7.428-22.857 0-54.857 2.286-26.572 2.286-54 2.286-22.572 0-38.572-0.572l-57.143-3.143-16.572-0.572q0 12.857 1.143 22.286l37.429 8q16 3.714 19.428 6.572 3.428 3.428 3.428 7.714t-1.714 9.143l-13.428 32.572-26.286 65.143-128.571 0.572q-8.286-18.572-29.715-78.286-6.572-18.286-6.572-24 0-8.857 4.857-12.286 7.428-6 29.428-9.143 0.857 0 3.857-0.572t8.571-1.428 11.572-1.714q0.286-8 0.286-16.572 0-4.857-0.571-7.714-18.857 0-99.715 5.714l-13.715-2.286q-23.143-4-47.715-4z" horiz-adv-x="476" />
|
||||||
<glyph unicode="" d="M158.571 4.286q21.715-9.143 40-9.143 37.429 0 61.715 11.714t34.857 32.286q10.857 20 10.857 51.714 0 32.572-11.714 51.428-16.572 26.857-40.286 36-22.857 9.143-70.572 9.143-21.143 0-28.857-2.857v-41.143l-0.286-49.428 0.857-77.143q0-4.286 3.429-12.572zM154.571 217.429q12.286-2 31.143-2 50 0 75.428 18.571t25.428 64q0 32-24.286 53.428-24 21.429-72.857 21.429-14.857 0-37.143-3.714 0-12.572 0.571-22 2-34.857 1.714-79.715l-0.286-28q0-12.286 0.286-22zM0-36.571l0.572 26.857q12.857 2.572 19.428 3.428 22 3.428 35.143 8.857 4.857 7.714 6 14.572 2.572 18.857 2.572 55.428l-0.572 142q-1.428 73.143-2.572 115.429-0.285 24.857-3.143 31.143-0.285 1.143-3.428 3.428-5.143 3.429-19.715 4.286-8.572 0.572-32.572 3.714l-1.143 23.714 74.285 1.715 108.572 3.714 12.857 0.286q1.429 0 4 0.143t4 0.143q0.286 0 6.143-0.143t11.572-0.143h21.143q25.143 0 54.571-7.715 12.286-3.714 27.428-11.143 16.286-8.286 29.143-21.714 12.572-13.428 18.572-29.715t6-34.857q0-20-9.143-36.572t-27.143-30q-7.428-5.714-42.857-22 50.572-11.714 76.286-41.714 26.286-30.286 26.286-67.428 0-21.714-8.286-46-6-17.714-20.286-33.428-18.857-20.572-40-30.857-20.857-10.286-58-17.143-23.428-4.286-56.572-3.143l-56.286 1.143q-24 0.572-85.143-3.143-9.428-0.857-77.715-3.143z" horiz-adv-x="403" />
|
<glyph unicode="" d="M158.571 4.286q21.715-9.143 40-9.143 37.429 0 61.715 11.714t34.857 32.286q10.857 20 10.857 51.714 0 32.572-11.714 51.428-16.572 26.857-40.286 36-22.857 9.143-70.572 9.143-21.143 0-28.857-2.857v-41.143l-0.286-49.428 0.857-77.143q0-4.286 3.429-12.572zM154.571 217.429q12.286-2 31.143-2 50 0 75.428 18.571t25.428 64q0 32-24.286 53.428-24 21.429-72.857 21.429-14.857 0-37.143-3.714 0-12.572 0.571-22 2-34.857 1.714-79.715l-0.286-28q0-12.286 0.286-22zM0-36.571l0.572 26.857q12.857 2.572 19.428 3.428 22 3.428 35.143 8.857 4.857 7.714 6 14.572 2.572 18.857 2.572 55.428l-0.572 142q-1.428 73.143-2.572 115.429-0.285 24.857-3.143 31.143-0.285 1.143-3.428 3.428-5.143 3.429-19.715 4.286-8.572 0.572-32.572 3.714l-1.143 23.714 74.285 1.715 108.572 3.714 12.857 0.286q1.429 0 4 0.143t4 0.143q0.286 0 6.143-0.143t11.572-0.143h21.143q25.143 0 54.571-7.715 12.286-3.714 27.428-11.143 16.286-8.286 29.143-21.714 12.572-13.428 18.572-29.715t6-34.857q0-20-9.143-36.572t-27.143-30q-7.428-5.714-42.857-22 50.572-11.714 76.286-41.714 26.286-30.286 26.286-67.428 0-21.714-8.286-46-6-17.714-20.286-33.428-18.857-20.572-40-30.857-20.857-10.286-58-17.143-23.428-4.286-56.572-3.143l-56.286 1.143q-24 0.572-85.143-3.143-9.428-0.857-77.715-3.143z" horiz-adv-x="403" />
|
||||||
|
<glyph unicode="" d="M512 54.857v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM402.286 164.572v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-365.714q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.428h365.714q7.428 0 12.857-5.428t5.428-12.857zM475.428 274.286v-36.572q0-7.428-5.428-12.857t-12.857-5.429h-438.857q-7.428 0-12.857 5.428t-5.428 12.857v36.571q0 7.428 5.428 12.857t12.857 5.428h438.857q7.428 0 12.857-5.428t5.428-12.857zM365.714 384v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-329.143q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.429h329.143q7.428 0 12.857-5.429t5.428-12.857z" />
|
||||||
<glyph unicode="" d="M512 54.857v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM512 164.572v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM512 274.286v-36.572q0-7.428-5.428-12.857t-12.857-5.429h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.571q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM512 384v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.429h475.428q7.428 0 12.857-5.429t5.428-12.857z" />
|
<glyph unicode="" d="M512 54.857v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM512 164.572v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM512 274.286v-36.572q0-7.428-5.428-12.857t-12.857-5.429h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.571q0 7.428 5.428 12.857t12.857 5.428h475.428q7.428 0 12.857-5.428t5.428-12.857zM512 384v-36.572q0-7.428-5.428-12.857t-12.857-5.428h-475.428q-7.428 0-12.857 5.428t-5.428 12.857v36.572q0 7.428 5.428 12.857t12.857 5.429h475.428q7.428 0 12.857-5.429t5.428-12.857z" />
|
||||||
<glyph unicode="" d="M73.143 64v-54.857q0-3.714-2.715-6.428t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h54.857q3.715 0 6.428-2.714t2.715-6.428zM73.143 173.714v-54.857q0-3.714-2.715-6.428t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h54.857q3.715 0 6.428-2.714t2.715-6.428zM73.143 283.429v-54.857q0-3.714-2.715-6.428t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h54.857q3.715 0 6.428-2.714t2.715-6.428zM512 64v-54.857q0-3.714-2.714-6.428t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h384q3.714 0 6.428-2.714t2.714-6.428zM73.143 393.143v-54.857q0-3.715-2.715-6.429t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.429v54.857q0 3.714 2.715 6.428t6.428 2.715h54.857q3.715 0 6.428-2.715t2.715-6.428zM512 173.714v-54.857q0-3.714-2.714-6.428t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h384q3.714 0 6.428-2.714t2.714-6.428zM512 283.429v-54.857q0-3.714-2.714-6.428t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h384q3.714 0 6.428-2.714t2.714-6.428zM512 393.143v-54.857q0-3.715-2.714-6.429t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.429v54.857q0 3.714 2.715 6.428t6.428 2.715h384q3.714 0 6.428-2.715t2.714-6.428z" />
|
<glyph unicode="" d="M73.143 64v-54.857q0-3.714-2.715-6.428t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h54.857q3.715 0 6.428-2.714t2.715-6.428zM73.143 173.714v-54.857q0-3.714-2.715-6.428t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h54.857q3.715 0 6.428-2.714t2.715-6.428zM73.143 283.429v-54.857q0-3.714-2.715-6.428t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h54.857q3.715 0 6.428-2.714t2.715-6.428zM512 64v-54.857q0-3.714-2.714-6.428t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h384q3.714 0 6.428-2.714t2.714-6.428zM73.143 393.143v-54.857q0-3.715-2.715-6.429t-6.428-2.714h-54.857q-3.715 0-6.428 2.714t-2.715 6.429v54.857q0 3.714 2.715 6.428t6.428 2.715h54.857q3.715 0 6.428-2.715t2.715-6.428zM512 173.714v-54.857q0-3.714-2.714-6.428t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h384q3.714 0 6.428-2.714t2.714-6.428zM512 283.429v-54.857q0-3.714-2.714-6.428t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.428v54.857q0 3.714 2.715 6.428t6.428 2.714h384q3.714 0 6.428-2.714t2.714-6.428zM512 393.143v-54.857q0-3.715-2.714-6.429t-6.428-2.714h-384q-3.715 0-6.428 2.714t-2.715 6.429v54.857q0 3.714 2.715 6.428t6.428 2.715h384q3.714 0 6.428-2.715t2.714-6.428z" />
|
||||||
<glyph unicode="" d="M182.857 274.286q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM475.428 164.572v-128h-402.286v54.857l91.428 91.428 45.714-45.714 146.286 146.286zM502.857 365.714h-457.143q-3.715 0-6.428-2.715t-2.715-6.428v-347.428q0-3.714 2.715-6.428t6.428-2.714h457.143q3.714 0 6.428 2.714t2.714 6.428v347.428q0 3.715-2.714 6.428t-6.428 2.715zM548.572 356.572v-347.428q0-18.857-13.428-32.286t-32.286-13.428h-457.143q-18.857 0-32.285 13.428t-13.428 32.286v347.428q0 18.857 13.428 32.286t32.285 13.428h457.143q18.857 0 32.286-13.428t13.428-32.286z" horiz-adv-x="549" />
|
<glyph unicode="" d="M182.857 274.286q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM475.428 164.572v-128h-402.286v54.857l91.428 91.428 45.714-45.714 146.286 146.286zM502.857 365.714h-457.143q-3.715 0-6.428-2.715t-2.715-6.428v-347.428q0-3.714 2.715-6.428t6.428-2.714h457.143q3.714 0 6.428 2.714t2.714 6.428v347.428q0 3.715-2.714 6.428t-6.428 2.715zM548.572 356.572v-347.428q0-18.857-13.428-32.286t-32.286-13.428h-457.143q-18.857 0-32.285 13.428t-13.428 32.286v347.428q0 18.857 13.428 32.286t32.285 13.428h457.143q18.857 0 32.286-13.428t13.428-32.286z" horiz-adv-x="549" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 230 KiB |
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user