新增一套鲜艳的蓝色主题,来点新鲜感
This commit is contained in:
@@ -0,0 +1,194 @@
|
||||
/*
|
||||
* http://jeesite.com
|
||||
*/
|
||||
.main-header .navbar {
|
||||
background-color: #1890ff;
|
||||
}
|
||||
.main-header .navbar .nav > li > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
.main-header .navbar .nav > li > a:hover,
|
||||
.main-header .navbar .nav > li > a:active,
|
||||
.main-header .navbar .nav > li > a:focus,
|
||||
.main-header .navbar .nav .open > a,
|
||||
.main-header .navbar .nav .open > a:hover,
|
||||
.main-header .navbar .nav .open > a:focus,
|
||||
.main-header .navbar .nav > .active > a {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
color: #f6f6f6;
|
||||
}
|
||||
.main-header .navbar .sidebar-toggle {
|
||||
color: #ffffff;
|
||||
}
|
||||
.main-header .navbar .sidebar-toggle:hover {
|
||||
color: #f6f6f6;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.main-header .navbar .sidebar-toggle {
|
||||
color: #fff;
|
||||
}
|
||||
.main-header .navbar .sidebar-toggle:hover {
|
||||
background-color: #367fa9;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.main-header .navbar .dropdown-menu li.divider {
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.main-header .navbar .dropdown-menu li a {
|
||||
color: #fff;
|
||||
}
|
||||
.main-header .navbar .dropdown-menu li a:hover {
|
||||
background: #367fa9;
|
||||
}
|
||||
}
|
||||
.main-header .logo {
|
||||
background-color: #1890ff;
|
||||
color: #ffffff;
|
||||
border-bottom: 0 solid transparent;
|
||||
}
|
||||
.main-header .logo:hover {
|
||||
background-color: #1681e5;
|
||||
}
|
||||
.main-header li.user-header {
|
||||
background-color: #1890ff;
|
||||
}
|
||||
.content-header {
|
||||
background: transparent;
|
||||
}
|
||||
.sidebar,
|
||||
.left-side {
|
||||
background-color: #E3E7EC;
|
||||
}
|
||||
.content-wrapper,
|
||||
.main-footer {
|
||||
border-left: 1px solid #d2d6de;
|
||||
}
|
||||
.user-panel > .info,
|
||||
.user-panel > .info > a {
|
||||
color: #555;
|
||||
}
|
||||
.sidebar-menu > li {
|
||||
-webkit-transition: border-left-color 0.3s ease;
|
||||
-o-transition: border-left-color 0.3s ease;
|
||||
transition: border-left-color 0.3s ease;
|
||||
}
|
||||
.sidebar-menu > li.header {
|
||||
color: #848484;
|
||||
background: #E3E7EC;
|
||||
}
|
||||
.sidebar-menu > li > a {
|
||||
border-left: 3px solid transparent;
|
||||
font-weight: 600;
|
||||
}
|
||||
.sidebar-menu > li:hover > a,
|
||||
.sidebar-menu > li.active > a {
|
||||
color: #000;
|
||||
background: #EAEDF1;
|
||||
}
|
||||
.sidebar-menu > li.active {
|
||||
border-left-color: #1890ff;
|
||||
}
|
||||
.sidebar-menu > li.active > a {
|
||||
font-weight: 600;
|
||||
}
|
||||
.sidebar-menu > li > .treeview-menu {
|
||||
background: #EAEDF1;
|
||||
}
|
||||
.sidebar a {
|
||||
color: #555;
|
||||
}
|
||||
.sidebar a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.treeview-menu > li > a {
|
||||
color: #555;
|
||||
}
|
||||
.treeview-menu > li.active > a,
|
||||
.treeview-menu > li > a:hover {
|
||||
color: #000;
|
||||
}
|
||||
.sidebar-form {
|
||||
border-radius: 3px;
|
||||
border: 1px solid #d2d6de;
|
||||
margin: 10px 10px;
|
||||
}
|
||||
.sidebar-form input[type="text"],
|
||||
.sidebar-form .btn {
|
||||
box-shadow: none;
|
||||
background-color: #fff;
|
||||
border: 1px solid transparent;
|
||||
height: 35px;
|
||||
}
|
||||
.sidebar-form input[type="text"] {
|
||||
color: #666;
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 2px;
|
||||
}
|
||||
.sidebar-form input[type="text"]:focus,
|
||||
.sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||
background-color: #fff;
|
||||
color: #666;
|
||||
}
|
||||
.sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||
border-left-color: #fff;
|
||||
}
|
||||
.sidebar-form .btn {
|
||||
color: #999;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 2px;
|
||||
border-bottom-right-radius: 2px;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.skin-blue-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
|
||||
border-left: 1px solid #d2d6de;
|
||||
}
|
||||
}
|
||||
.main-footer {
|
||||
border-top-color: #d2d6de;
|
||||
}
|
||||
.skin-blue.layout-top-nav .main-header > .logo {
|
||||
background-color: #1890ff;
|
||||
color: #ffffff;
|
||||
border-bottom: 0 solid transparent;
|
||||
}
|
||||
.skin-blue.layout-top-nav .main-header > .logo:hover {
|
||||
background-color: #3b8ab8;
|
||||
}
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#000;background-color:#fff;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#1890ff;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
.btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover,
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#1890ff!important;border-color:#1890ff;}
|
||||
|
||||
.tabpanel_mover li {padding:1px 16px 2px 3px;margin:6px 0 6px 6px;border:1px solid #e4e4e4;
|
||||
border-radius:3px;box-shadow:0 0 8px #e0e0e0;background:#fff;box-shadow:0 0 5px #e6e6e6;}
|
||||
.tabpanel_mover li.active {background-color:#3aa0ff;}
|
||||
.tabpanel_mover li.active div {color:#fff;}
|
||||
.tabpanel_mover li .closer {font:6px/1 FontAwesome;top:6px;right:2px;background:none;opacity:0.8}
|
||||
.tabpanel_mover li .closer:before {content:"\f00d";}
|
||||
.tabpanel_mover li .closer:hover {background:none;}
|
||||
.tabpanel_tab_content {border-bottom-color:#eeeeee;}
|
||||
|
||||
.main-content {padding:10px;}
|
||||
.ui-layout-container {padding:10px;}
|
||||
.ui-layout-pane>.main-content {padding:0;}
|
||||
.ui-layout-resizer {background:transparent;}
|
||||
.ui-layout-content>.wrapper>.main-content {padding:0;}
|
||||
.box-main,.nav-main{border-radius:3px;box-shadow:0 0 5px #e0e0e0;}
|
||||
.box-main>.box-header {border-bottom-color:#cae6ff;}
|
||||
.box-main>.box-header .box-title .fa {color:#1890ff;}
|
||||
.form-control:focus,.select2-container--default.select2-container--focus .select2-selection--multiple,
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {border-color:#66afe9!important;}
|
||||
.ui-jqgrid .ui-jqgrid-labels th, .ui-jqgrid tr.ui-row-ltr td {border-right:0!important;}
|
||||
@@ -150,7 +150,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#000;background-color:#fff;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#00a65a;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#00a65a;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -158,5 +159,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#00a65a;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#00a65a!important;border-color:#00a65a;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#00a65a!important;border-color:#00a65a;}
|
||||
|
||||
@@ -131,7 +131,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#fff;background-color:#00a65a;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#00a65a;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#00a65a;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -139,5 +140,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#00a65a;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#00a65a!important;border-color:#00a65a;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#00a65a!important;border-color:#00a65a;}
|
||||
|
||||
@@ -150,7 +150,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#000;background-color:#fff;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#605ca8;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#605ca8;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -158,5 +159,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#605ca8;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#605ca8!important;border-color:#605ca8;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#605ca8!important;border-color:#605ca8;}
|
||||
|
||||
@@ -131,7 +131,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#fff;background-color:#605ca8;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#605ca8;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#605ca8;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -139,5 +140,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#605ca8;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#605ca8!important;border-color:#605ca8;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#605ca8!important;border-color:#605ca8;}
|
||||
|
||||
@@ -150,7 +150,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#000;background-color:#fff;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#dd4b39;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#dd4b39;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -158,5 +159,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#dd4b39;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#dd4b39!important;border-color:#dd4b39;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#dd4b39!important;border-color:#dd4b39;}
|
||||
|
||||
@@ -131,7 +131,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#fff;background-color:#dd4b39;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#dd4b39;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#dd4b39;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -139,5 +140,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#dd4b39;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#dd4b39!important;border-color:#dd4b39;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#dd4b39!important;border-color:#dd4b39;}
|
||||
|
||||
@@ -150,7 +150,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#000;background-color:#fff;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#f39c12;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#f39c12;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -158,5 +159,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#f39c12;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#f39c12!important;border-color:#f39c12;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#f39c12!important;border-color:#f39c12;}
|
||||
|
||||
@@ -131,7 +131,8 @@
|
||||
|
||||
.sidebar-menu .treeview-item.active > a {color:#fff;background-color:#f39c12;}
|
||||
|
||||
a, a:hover, a:active, a:focus, .form-unit {color:#f39c12;}
|
||||
a, a:hover, a:active, a:focus, .form-unit,
|
||||
th[aria-selected=true] .ui-jqgrid-sortable {color:#f39c12;}
|
||||
.btn-primary, .btn-primary:hover, .btn-primary:active,
|
||||
.btn-primary.hover, .btn-primary.focus, .btn-primary:focus,
|
||||
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
|
||||
@@ -139,5 +140,5 @@ a, a:hover, a:active, a:focus, .form-unit {color:#f39c12;}
|
||||
.open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
|
||||
.open>.dropdown-toggle.btn-primary:hover, .layui-layer-btn .layui-layer-btn0,
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
{background-color:#f39c12!important;border-color:#f39c12;}
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected],
|
||||
.wup_container .placeholder .webuploader-pick {background-color:#f39c12!important;border-color:#f39c12;}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<#form:form id="searchForm" action="${ctx}/sys/online/listData" method="post" class="form-inline hide"
|
||||
<#form:form id="searchForm" action="${ctx}/sys/online/listData" method="post" class="form-inline hide2"
|
||||
data-page-no="${parameter.pageNo}" data-page-size="${parameter.pageSize}" data-order-by="${parameter.orderBy}">
|
||||
<div class="form-group">
|
||||
<label class="control-label">操作用户:</label>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<% layout('/layouts/default.html', {title: '', bodyClass: ''}){ %>
|
||||
<!-- <link rel="stylesheet" href="${ctxStatic}/modules/sys/sysDesktop.css?${_version}"> -->
|
||||
<div class="content pb0">
|
||||
<!-- Info boxes -->
|
||||
<div class="row">
|
||||
<div class="col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="info-box">
|
||||
@@ -21,10 +20,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- fix for small devices only -->
|
||||
<div class="clearfix visible-sm-block"></div>
|
||||
|
||||
<div class="col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="info-box">
|
||||
<span class="info-box-icon bg-green"><i class="fa fa-internet-explorer"></i></span>
|
||||
@@ -45,9 +41,8 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Chart boxes -->
|
||||
<div class="row">
|
||||
<div class="col-md-12 connectedSortable">
|
||||
<section class="col-md-12 connectedSortable">
|
||||
<div class="box box-widget">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title">月度报告</h3>
|
||||
@@ -213,15 +208,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<!-- Left col -->
|
||||
<section class="col-lg-7 connectedSortable ui-sortable">
|
||||
<!-- Custom tabs (Charts with tabs)-->
|
||||
|
||||
<!-- /.nav-tabs-custom -->
|
||||
|
||||
</section>
|
||||
<section class="col-lg-7 connectedSortable">
|
||||
|
||||
<!-- Chat box -->
|
||||
<div class="nav-tabs-custom" style="cursor: move;">
|
||||
<!-- Tabs within a box -->
|
||||
@@ -244,9 +233,7 @@
|
||||
</div><div class="box box-success" style="position: relative; left: 0px; top: 0px;">
|
||||
<div class="box-header ui-sortable-handle" style="cursor: move;">
|
||||
<i class="fa fa-comments-o"></i>
|
||||
|
||||
<h3 class="box-title">沟通</h3>
|
||||
|
||||
<div class="box-tools pull-right" data-toggle="tooltip" title="" data-original-title="Status">
|
||||
<div class="btn-group" data-toggle="btn-toggle">
|
||||
<button type="button" class="btn btn-default btn-sm active"><i class="fa fa-square text-green"></i>
|
||||
@@ -260,7 +247,6 @@
|
||||
<!-- chat item -->
|
||||
<div class="item">
|
||||
<img src="${ctxStatic}/images/user1.jpg" alt="user image" class="online2">
|
||||
|
||||
<p class="message">
|
||||
<a href="#" class="name">
|
||||
<small class="text-muted pull-right"><i class="fa fa-clock-o"></i> 2:15</small>
|
||||
@@ -276,7 +262,6 @@
|
||||
<!-- chat item -->
|
||||
<div class="item">
|
||||
<img src="${ctxStatic}/images/user2.jpg" alt="user image" class="offline2">
|
||||
|
||||
<p class="message">
|
||||
<a href="#" class="name">
|
||||
<small class="text-muted pull-right"><i class="fa fa-clock-o"></i> 5:15</small>
|
||||
@@ -291,7 +276,6 @@
|
||||
<!-- chat item -->
|
||||
<div class="item">
|
||||
<img src="${ctxStatic}/images/user1.jpg" alt="user image" class="offline2">
|
||||
|
||||
<p class="message">
|
||||
<a href="#" class="name">
|
||||
<small class="text-muted pull-right"><i class="fa fa-clock-o"></i> 5:30</small>
|
||||
@@ -306,7 +290,6 @@
|
||||
<!-- chat item -->
|
||||
<div class="item">
|
||||
<img src="${ctxStatic}/images/user2.jpg" alt="user image" class="offline2">
|
||||
|
||||
<p class="message">
|
||||
<a href="#" class="name">
|
||||
<small class="text-muted pull-right"><i class="fa fa-clock-o"></i> 5:30</small>
|
||||
@@ -321,7 +304,6 @@
|
||||
<!-- chat item -->
|
||||
<div class="item">
|
||||
<img src="${ctxStatic}/images/user1.jpg" alt="user image" class="offline2">
|
||||
|
||||
<p class="message">
|
||||
<a href="#" class="name">
|
||||
<small class="text-muted pull-right"><i class="fa fa-clock-o"></i> 5:30</small>
|
||||
@@ -338,7 +320,6 @@
|
||||
<div class="box-footer">
|
||||
<div class="input-group">
|
||||
<input class="form-control" placeholder="Type message...">
|
||||
|
||||
<div class="input-group-btn">
|
||||
<button type="button" class="btn btn-success"><i class="fa fa-plus"></i></button>
|
||||
</div>
|
||||
@@ -351,9 +332,7 @@
|
||||
<div class="box box-primary">
|
||||
<div class="box-header ui-sortable-handle" style="cursor: move;">
|
||||
<i class="ion ion-clipboard"></i>
|
||||
|
||||
<h3 class="box-title">任务列表</h3>
|
||||
|
||||
<div class="box-tools pull-right">
|
||||
<ul class="pagination pagination-sm inline">
|
||||
<li><a href="#">«</a></li>
|
||||
@@ -371,9 +350,9 @@
|
||||
<li>
|
||||
<!-- drag handle -->
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<!-- checkbox -->
|
||||
<input type="checkbox" value="">
|
||||
<!-- todo text -->
|
||||
@@ -387,10 +366,10 @@
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<input type="checkbox" value="">
|
||||
<span class="text">Make the theme responsive</span>
|
||||
<small class="label label-info"><i class="fa fa-clock-o"></i> 4 hours</small>
|
||||
@@ -400,10 +379,10 @@
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<input type="checkbox" value="">
|
||||
<span class="text">Let theme shine like a star</span>
|
||||
<small class="label label-warning"><i class="fa fa-clock-o"></i> 1 day</small>
|
||||
@@ -413,10 +392,10 @@
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<input type="checkbox" value="">
|
||||
<span class="text">Let theme shine like a star</span>
|
||||
<small class="label label-success"><i class="fa fa-clock-o"></i> 3 days</small>
|
||||
@@ -426,10 +405,10 @@
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<input type="checkbox" value="">
|
||||
<span class="text">Check your messages and notifications</span>
|
||||
<small class="label label-primary"><i class="fa fa-clock-o"></i> 1 week</small>
|
||||
@@ -439,10 +418,10 @@
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<span class="handle ui-sortable-handle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</span>
|
||||
<input type="checkbox" value="">
|
||||
<span class="text">Let theme shine like a star</span>
|
||||
<small class="label label-default"><i class="fa fa-clock-o"></i> 1 month</small>
|
||||
@@ -461,8 +440,6 @@
|
||||
<!-- /.box -->
|
||||
|
||||
</section>
|
||||
<!-- /.Left col -->
|
||||
<!-- right col (We are only adding the ID to make the widgets sortable)-->
|
||||
<section class="col-lg-5 connectedSortable ui-sortable">
|
||||
|
||||
<!-- Map box -->
|
||||
@@ -476,9 +453,7 @@
|
||||
<i class="fa fa-minus"></i></button>
|
||||
</div>
|
||||
<!-- /. tools -->
|
||||
|
||||
<i class="fa fa-map-marker"></i>
|
||||
|
||||
<h3 class="box-title">访问</h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
@@ -539,19 +514,16 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-4 text-center" style="border-right: 1px solid #f4f4f4">
|
||||
<div style="display:inline;width:60px;height:60px;"><canvas width="77" height="77" style="width: 60px; height: 60px;"></canvas><input type="text" class="knob" data-readonly="true" value="20" data-width="60" data-height="60" data-fgcolor="#39CCCC" readonly="readonly" style="width: 34px; height: 20px; position: absolute; vertical-align: middle; margin-top: 20px; margin-left: -47px; border: 0px; background: none; font: bold 12px Arial; text-align: center; color: rgb(57, 204, 204); padding: 0px; -webkit-appearance: none;"></div>
|
||||
|
||||
<div class="knob-label">新订购</div>
|
||||
</div>
|
||||
<!-- ./col -->
|
||||
<div class="col-xs-4 text-center" style="border-right: 1px solid #f4f4f4">
|
||||
<div style="display:inline;width:60px;height:60px;"><canvas width="77" height="77" style="width: 60px; height: 60px;"></canvas><input type="text" class="knob" data-readonly="true" value="50" data-width="60" data-height="60" data-fgcolor="#39CCCC" readonly="readonly" style="width: 34px; height: 20px; position: absolute; vertical-align: middle; margin-top: 20px; margin-left: -47px; border: 0px; background: none; font: bold 12px Arial; text-align: center; color: rgb(57, 204, 204); padding: 0px; -webkit-appearance: none;"></div>
|
||||
|
||||
<div class="knob-label">进行中</div>
|
||||
</div>
|
||||
<!-- ./col -->
|
||||
<div class="col-xs-4 text-center">
|
||||
<div style="display:inline;width:60px;height:60px;"><canvas width="77" height="77" style="width: 60px; height: 60px;"></canvas><input type="text" class="knob" data-readonly="true" value="30" data-width="60" data-height="60" data-fgcolor="#39CCCC" readonly="readonly" style="width: 34px; height: 20px; position: absolute; vertical-align: middle; margin-top: 20px; margin-left: -47px; border: 0px; background: none; font: bold 12px Arial; text-align: center; color: rgb(57, 204, 204); padding: 0px; -webkit-appearance: none;"></div>
|
||||
|
||||
<div class="knob-label">已成交</div>
|
||||
</div>
|
||||
<!-- ./col -->
|
||||
@@ -566,7 +538,6 @@
|
||||
<div class="box box-solid bg-green-gradient">
|
||||
<div class="box-header ui-sortable-handle" style="cursor: move;">
|
||||
<i class="fa fa-calendar"></i>
|
||||
|
||||
<h3 class="box-title">日程表</h3>
|
||||
<!-- tools box -->
|
||||
<div class="pull-right box-tools">
|
||||
@@ -605,7 +576,6 @@
|
||||
<div class="progress xs">
|
||||
<div class="progress-bar progress-bar-green" style="width: 90%;"></div>
|
||||
</div>
|
||||
|
||||
<div class="clearfix">
|
||||
<span class="pull-left">任务 #2</span>
|
||||
<small class="pull-right">70%</small>
|
||||
@@ -623,7 +593,6 @@
|
||||
<div class="progress xs">
|
||||
<div class="progress-bar progress-bar-green" style="width: 60%;"></div>
|
||||
</div>
|
||||
|
||||
<div class="clearfix">
|
||||
<span class="pull-left">任务 #4</span>
|
||||
<small class="pull-right">40%</small>
|
||||
@@ -640,8 +609,7 @@
|
||||
<!-- /.box -->
|
||||
|
||||
</section>
|
||||
<!-- right col -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="main-footer m0">
|
||||
<div class="pull-right hidden-xs">当前版本: ${@Global.getConfig('productVersion')}</div>
|
||||
|
||||
@@ -6,153 +6,105 @@
|
||||
.full-opacity-hover:hover{border:1px solid #f00;}
|
||||
</style>
|
||||
<ul class="list-unstyled clearfix">
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-blue" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin">
|
||||
蓝
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-blue" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #367fa9"></span>
|
||||
<span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span>
|
||||
<span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">蓝</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-black" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 13px; background: #fefefe"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin">
|
||||
白
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-black" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #fefefe"></span>
|
||||
<span style="display:block; width: 80%; float: left; height: 13px; background: #fefefe"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222"></span>
|
||||
<span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">白</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-purple" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin">
|
||||
紫
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-purple" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-purple-active"></span>
|
||||
<span class="bg-purple" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span>
|
||||
<span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">紫</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-green" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin">
|
||||
绿
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-green" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">绿</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-red" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin">
|
||||
红
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-red" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">红</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-yellow" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin">
|
||||
黄
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-yellow" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">黄</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-blue-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin" style="font-size: 12px">
|
||||
蓝灰
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-blue-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">蓝灰</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-black-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 13px; background: #fefefe"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin" style="font-size: 12px">
|
||||
白灰
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-black-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 13px; background: #fefefe"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">白灰</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-purple-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin" style="font-size: 12px">
|
||||
紫灰
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-purple-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">紫灰</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-green-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin" style="font-size: 12px">
|
||||
绿灰
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-green-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">绿灰</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-red-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin" style="font-size: 12px">
|
||||
红灰
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-red-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">红灰</p>
|
||||
</li>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;"><a href="javascript:void(0)" data-skin="skin-yellow-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
</div>
|
||||
<div>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</div>
|
||||
</a>
|
||||
<p class="text-center no-margin" style="font-size: 12px">
|
||||
黄灰
|
||||
</p>
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-yellow-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 13px;"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">黄灰</p>
|
||||
</li>
|
||||
<li style="text-align:center; padding-left:20px;">
|
||||
<#form:checkbox name="formLayerModel" label="表单弹窗模式" class="form-control" data-style="square-blue"/>
|
||||
|
||||
<li style="float:left; width: 33.33333%; padding: 5px;">
|
||||
<a href="javascript:" data-skin="skin-blue-light2" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
||||
<span style="display:block; width: 20%; float: left; height: 13px; background: #1681e5"></span><span style="display:block; width: 80%; float: left; height: 13px; background: #1890ff"></span>
|
||||
<span style="display:block; width: 20%; float: left; height: 30px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 30px; background: #f4f5f7"></span>
|
||||
</a>
|
||||
<p class="text-center no-margin">浅蓝(新)</p>
|
||||
</li>
|
||||
<li style="float:left; padding: 20px 0 0 45px;">
|
||||
<#form:checkbox name="formLayerModel" label="表单弹窗模式" class="form-control" data-style="square-blue"/>
|
||||
<#form:checkbox name="tabPageModel" label="取消页签模式" class="form-control" data-style="square-blue"/>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
// 初始化布局
|
||||
$('body').layout({
|
||||
west__initClosed: false, // 是否默认关闭
|
||||
west__size: 180
|
||||
west__size: 200
|
||||
});
|
||||
// 主页框架
|
||||
var win = $("#mainFrame")[0].contentWindow;
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
<div class="navbar-custom-menu">
|
||||
<ul class="nav navbar-nav">
|
||||
<% include('topMenuCorp.html'){} %>
|
||||
<li><a href="javascript:" id="fullScreen" title="${text('全屏')}"><i class="fa fa-arrows-alt"></i></a></li>
|
||||
<li><a href="javascript:" id="switchSkin" title="${text('切换主题')}" style="margin-top:-1px;"><i class="fa fa-dashboard"></i></a></li>
|
||||
<li><a href="javascript:" id="fullScreen" title="${text('全屏')}" data-placement="bottom" data-container="body"><i class="fa fa-arrows-alt"></i></a></li>
|
||||
<li><a href="javascript:" id="switchSkin" title="${text('切换主题')}" style="margin-top:-1px;" data-placement="bottom" data-container="body"><i class="fa fa-dashboard"></i></a></li>
|
||||
<% include('topMenuLang.html'){} %>
|
||||
<% include('topMenuOnline.html'){} %>
|
||||
<% include('topMenuMsg.html'){} %>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<li>
|
||||
<a href="javascript:" data-href="${ctx}/sys/online/list" data-title="${text('在线人员')}" title="${text('在线人员')}"
|
||||
class="${hasPermi('sys:online:view') ? 'addTabPage' : ''}">
|
||||
<a href="javascript:" id="btnOnline" data-href="${ctx}/sys/online/list" data-title="${text('在线人员')}" title="${text('在线人员')}"
|
||||
class="${hasPermi('sys:online:view') ? 'addTabPage' : ''} " data-placement="bottom" data-container="body">
|
||||
<i class="icon-people"></i><span id="onlineCount" class="label label-success">0</span>
|
||||
</a>
|
||||
<script>
|
||||
@@ -12,5 +12,6 @@
|
||||
}
|
||||
refreshOnlineCount(); // 先执行一次
|
||||
setInterval(refreshOnlineCount, 180000); // 3分钟执行一次
|
||||
$(function(){$('#btnOnline').tooltip()});
|
||||
</script>
|
||||
</li>
|
||||
Reference in New Issue
Block a user