2018-06-07 00:45:47 +08:00
|
|
|
|
html {
|
2018-08-02 15:21:41 +08:00
|
|
|
|
font-size: 16px;
|
2018-10-06 12:46:48 +08:00
|
|
|
|
-ms-overflow-style: auto;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
color: #797979;
|
|
|
|
|
background: #f1f2f7;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar-open aside {
|
|
|
|
|
transform: translate(0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-10 21:37:43 +08:00
|
|
|
|
.sidebar-open footer {
|
2018-09-19 00:19:43 +08:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-16 14:41:21 +08:00
|
|
|
|
aside {
|
|
|
|
|
transition: transform .4s ease-in-out;
|
|
|
|
|
transform: translate(-100%);
|
|
|
|
|
position: absolute;
|
2018-10-25 09:23:58 +08:00
|
|
|
|
top: 96px;
|
2018-09-16 15:54:50 +08:00
|
|
|
|
bottom: 0;
|
2018-09-16 14:41:21 +08:00
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2018-09-19 00:19:43 +08:00
|
|
|
|
z-index: 4;
|
2018-09-16 14:41:21 +08:00
|
|
|
|
background: #2a3542;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar {
|
2018-09-16 14:41:21 +08:00
|
|
|
|
padding: 20px 0;
|
2018-09-19 00:19:43 +08:00
|
|
|
|
background: inherit;
|
2018-09-16 14:41:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-item {
|
2018-09-16 14:41:21 +08:00
|
|
|
|
margin: 5px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-item .nav-link:hover, .sidebar .nav-item .nav-link:focus {
|
|
|
|
|
background: #35404d;
|
|
|
|
|
color: #fff;
|
2018-09-16 14:41:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-item.active > .nav-link {
|
|
|
|
|
color: #FF6C60;
|
|
|
|
|
}
|
2018-09-16 14:41:21 +08:00
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-link {
|
|
|
|
|
color: #aeb2b7;
|
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
transition: all .3s linear;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2018-09-16 14:41:21 +08:00
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-link .dcjq-icon {
|
|
|
|
|
height: 17px;
|
|
|
|
|
width: 17px;
|
|
|
|
|
background: url(../images/nav-expand.png) no-repeat;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
2018-09-16 14:41:21 +08:00
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-link i {
|
|
|
|
|
width: 22px;
|
2018-09-16 14:41:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-link.active, .sidebar .nav-link.active + .sub,
|
|
|
|
|
.sidebar .sub .sub .nav-item .nav-link:hover, .sidebar .sub .sub .nav-item .nav-link:focus {
|
|
|
|
|
background: #35404D;
|
|
|
|
|
}
|
2018-09-16 14:41:21 +08:00
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .nav-link.active .dcjq-icon {
|
|
|
|
|
background-position: bottom;
|
2018-09-16 14:41:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .sub .nav-item.dcjq-parent-li {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
2018-09-16 14:41:21 +08:00
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .sub .nav-item.dcjq-parent-li .nav-link {
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
}
|
2018-09-16 14:41:21 +08:00
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
.sidebar .sub .dcjq-parent-li .nav-link.active, .sidebar .sub .dcjq-parent-li .nav-link.active + .sub,
|
|
|
|
|
.sidebar .sub .nav-item .nav-link:hover, .sidebar .sub .nav-item .nav-link:focus {
|
|
|
|
|
background: #3a4756;
|
|
|
|
|
}
|
2018-06-07 00:45:47 +08:00
|
|
|
|
|
2018-10-01 01:04:36 +08:00
|
|
|
|
a, a:hover, a:focus {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
outline: none;
|
2018-08-15 16:35:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
/*Title*/
|
|
|
|
|
.sidebar-toggle-box {
|
2018-10-06 12:46:48 +08:00
|
|
|
|
display: block;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
font-size: 1.25rem;
|
2018-10-01 01:04:36 +08:00
|
|
|
|
color: #777;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
padding: 12px 0;
|
2018-10-01 01:04:36 +08:00
|
|
|
|
transition: color .3s linear;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-01 01:04:36 +08:00
|
|
|
|
.sidebar-toggle-box:hover {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.sidebar-toggle-box span {
|
|
|
|
|
display: none;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2018-09-15 18:37:04 +08:00
|
|
|
|
z-index: 10;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header .bg {
|
|
|
|
|
background-color: #337ab7;
|
2018-10-25 09:23:58 +08:00
|
|
|
|
height: 3px;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
margin: 0 -15px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.header .nav {
|
|
|
|
|
display: none;
|
|
|
|
|
margin-left: 15px;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.header .nav .dropdown {
|
|
|
|
|
margin-right: 6px;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.header .badge {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: -6px;
|
|
|
|
|
top: -14px;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
2018-06-07 00:45:47 +08:00
|
|
|
|
|
2018-10-01 19:08:51 +08:00
|
|
|
|
.dropdown-item.active, .dropdown-item:active {
|
|
|
|
|
color: rgba(0, 0, 0, 0.9);
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-01 01:04:36 +08:00
|
|
|
|
.dropdown-item i + span {
|
|
|
|
|
margin-left: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-01 13:54:26 +08:00
|
|
|
|
.nav [data-toggle="dropdown"] {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
transition: all .25s linear;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.nav .dropdown-menu {
|
|
|
|
|
width: 235px;
|
|
|
|
|
border: none;
|
2018-10-01 13:00:36 +08:00
|
|
|
|
margin-left: -98px;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
margin-top: 12px;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.nav .dropdown-arrow {
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-width: 0 9px 9px;
|
|
|
|
|
position: absolute;
|
2018-10-01 13:00:36 +08:00
|
|
|
|
left: 108px;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
top: -9px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav .dropdown-header {
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav .dropdown-footer {
|
|
|
|
|
padding: 6px 0;
|
2018-10-05 14:09:29 +08:00
|
|
|
|
background-color: #f1f2f7;
|
2018-08-14 18:12:50 +08:00
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
|
border-bottom-right-radius: 4px;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav .dropdown-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
border-bottom: 1px solid #EBEBEB;
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-14 16:07:32 +08:00
|
|
|
|
.nav .dropdown-item:nth-of-type(odd), .cache-item:nth-of-type(odd) {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
2018-08-14 18:12:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-01 19:08:51 +08:00
|
|
|
|
.nav .dropdown-item.active, .nav .dropdown-item:active {
|
|
|
|
|
color: #212529;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav .dropdown-item > :nth-child(2) {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
padding: 0 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav .dropdown-item .small {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo img {
|
|
|
|
|
height: 29px;
|
|
|
|
|
width: 29px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo .dropdown-toggle {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 6px;
|
2018-10-01 13:54:26 +08:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
transition: all .25s linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo .dropdown-toggle, .nav [data-toggle="dropdown"] {
|
|
|
|
|
border: 1px solid #eee;
|
|
|
|
|
color: #777;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-02 01:41:06 +08:00
|
|
|
|
.userinfo .dropdown-toggle:after {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-01 13:54:26 +08:00
|
|
|
|
.userinfo .dropdown-toggle:hover, .userinfo.show .dropdown-toggle, .nav [data-toggle="dropdown"]:hover {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.userinfo .dropdown-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 270px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo .dropdown-item a {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #777;
|
|
|
|
|
padding: 15px 10px;
|
2018-08-10 12:25:54 +08:00
|
|
|
|
flex: 1 1 33.333%;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo .dropdown-item a i {
|
2018-08-10 19:08:38 +08:00
|
|
|
|
font-size: 1.025rem;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 08:37:10 +08:00
|
|
|
|
.userinfo .dropdown-item:first-child {
|
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo .dropdown-item:first-child a:hover {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.userinfo .dropdown-item:last-child {
|
|
|
|
|
border-radius: 0 0 4px 4px;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
2018-08-09 22:36:07 +08:00
|
|
|
|
|
|
|
|
|
.userinfo .dropdown-item:last-child a {
|
|
|
|
|
color: #ca3a39;
|
|
|
|
|
border-radius: 0 0 0.15rem 0.15rem;
|
|
|
|
|
background: #a9d96c;
|
|
|
|
|
background-image: linear-gradient(to bottom, #a9d96c 0%, #799e51 100%);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 08:37:10 +08:00
|
|
|
|
.userinfo .dropdown-item:last-child a:hover {
|
|
|
|
|
color: #d40c0b;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-02 01:41:06 +08:00
|
|
|
|
.userinfo .username {
|
|
|
|
|
max-width: 90px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 22:36:07 +08:00
|
|
|
|
.userinfo .badge {
|
|
|
|
|
left: 234px;
|
|
|
|
|
right: auto;
|
|
|
|
|
top: 6px;
|
|
|
|
|
}
|
2018-06-07 00:45:47 +08:00
|
|
|
|
/*end title*/
|
|
|
|
|
|
2018-11-10 21:37:43 +08:00
|
|
|
|
footer {
|
2018-06-07 00:45:47 +08:00
|
|
|
|
background: #5b6e84;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 10px 4px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
2018-09-19 00:19:43 +08:00
|
|
|
|
z-index: 100;
|
2018-08-10 15:02:03 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-10 21:37:43 +08:00
|
|
|
|
footer > span {
|
2018-08-10 15:02:03 +08:00
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-left: 4px;
|
2018-10-06 12:46:48 +08:00
|
|
|
|
display: inline-block;
|
2018-08-10 15:02:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-07 00:45:47 +08:00
|
|
|
|
.go-top {
|
|
|
|
|
background: rgba(255,255,255,.5);
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
-webkit-border-radius: 50%;
|
2018-08-10 15:02:03 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-right: 4px;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.go-top:hover {
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.go-top i {
|
|
|
|
|
color: #2A3542;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.breadcrumb {
|
2018-10-01 01:04:36 +08:00
|
|
|
|
border-top: solid 1px #ddd;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
background-color: transparent;
|
2018-10-01 01:04:36 +08:00
|
|
|
|
border-radius: 0;
|
2018-08-09 22:36:07 +08:00
|
|
|
|
padding: 8px 10px;
|
2018-10-01 01:04:36 +08:00
|
|
|
|
margin-bottom: 0;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-05 15:36:27 +08:00
|
|
|
|
.breadcrumb i {
|
|
|
|
|
padding-right: 6px;
|
|
|
|
|
}
|
2018-08-02 16:17:14 +08:00
|
|
|
|
|
2018-10-01 01:04:36 +08:00
|
|
|
|
.bs-bars {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-fill {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
line-height: 34px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar .dropdown-menu a {
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
display: table-cell;
|
|
|
|
|
color: #504d4d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar .dropdown-menu a:not(:first-child) {
|
|
|
|
|
border-left: solid 1px #aeb2b7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar .dropdown-menu a:hover {
|
|
|
|
|
color: #235e90;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-07 00:45:47 +08:00
|
|
|
|
.welcome-bg {
|
|
|
|
|
background-image: url('../images/bg.jpg');
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-05 13:17:41 +08:00
|
|
|
|
.card-cache {
|
|
|
|
|
margin-bottom: 15px;
|
2018-08-06 16:04:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-05 13:17:41 +08:00
|
|
|
|
.card-cache h6 {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #0077de;
|
|
|
|
|
background-color: #b5f1b6;
|
|
|
|
|
padding: 12px 15px;
|
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 16:04:03 +08:00
|
|
|
|
.cache-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2018-08-14 18:12:50 +08:00
|
|
|
|
padding: 10px 4px;
|
2018-09-28 08:51:51 +08:00
|
|
|
|
border: 1px solid #eee;
|
|
|
|
|
border-width: 0 1px 1px 1px;
|
2018-08-06 16:04:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-10 10:24:00 +08:00
|
|
|
|
.cache-item > :nth-child(2) {
|
2018-08-06 16:04:03 +08:00
|
|
|
|
flex: 1 1 auto;
|
2018-10-06 17:18:52 +08:00
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin-left: 10px;
|
2018-08-06 16:04:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-06 17:18:52 +08:00
|
|
|
|
.cache-item > :nth-child(4) {
|
2018-08-06 16:04:03 +08:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-06 17:18:52 +08:00
|
|
|
|
.cache-item > :nth-child(5) {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cache-item > :nth-child(5) span {
|
|
|
|
|
margin-left: 6px;
|
2018-10-07 14:35:55 +08:00
|
|
|
|
width: 28px;
|
2018-10-06 17:18:52 +08:00
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 16:04:03 +08:00
|
|
|
|
.cache-item .badge {
|
|
|
|
|
position: relative;
|
2018-08-10 10:24:00 +08:00
|
|
|
|
top: -8px;
|
2018-10-05 13:17:41 +08:00
|
|
|
|
height: 17px;
|
2018-08-06 16:04:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-26 19:40:21 +08:00
|
|
|
|
.cache-item .btn, td .btn:not(.btn-lg) {
|
2018-08-06 16:04:03 +08:00
|
|
|
|
margin-left: 5px;
|
|
|
|
|
font-size: 0.75rem;
|
2018-08-10 10:24:00 +08:00
|
|
|
|
padding: 1px 5px;
|
2018-08-06 16:04:03 +08:00
|
|
|
|
}
|
2018-08-10 18:34:06 +08:00
|
|
|
|
|
|
|
|
|
.card-img {
|
|
|
|
|
max-width: 258px;
|
|
|
|
|
}
|
2018-10-01 01:04:36 +08:00
|
|
|
|
|
|
|
|
|
.modal-body .dd {
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logTs, .logSql, .logDbExcep {
|
|
|
|
|
color: red;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logExcep {
|
|
|
|
|
color: #337ab7;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logMsg {
|
|
|
|
|
color: #ce2520;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-open .main-content {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-content {
|
|
|
|
|
padding: 15px 15px 0 15px;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 40px;
|
|
|
|
|
right: 0;
|
2018-10-25 09:23:58 +08:00
|
|
|
|
top: 96px;
|
2018-10-01 01:04:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-content > .panel:last-child .panel-body {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-content > .panel > .panel-body > .modal-footer {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.affix {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 95px;
|
|
|
|
|
right: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.affix a {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*Messages*/
|
|
|
|
|
.mail-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side {
|
|
|
|
|
flex: 0.4;
|
|
|
|
|
background: #e5e8ef;
|
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .user-head {
|
|
|
|
|
background: #00a8b3;
|
|
|
|
|
border-radius: 4px 0 0 0;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
min-height: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .user-head .inbox-avatar {
|
|
|
|
|
width: 65px;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .user-head .inbox-avatar img {
|
|
|
|
|
height: 65px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 0;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .user-head .user-name {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 0 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .user-head .user-name h5 {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .user-head .user-name h5 a {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .inbox-body, .mail-box .lg-side .inbox-body {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .inbox-body .btn-compose {
|
|
|
|
|
background: #ff6c60;
|
|
|
|
|
padding: 12px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side .inbox-body .btn-compose:hover {
|
|
|
|
|
background: #f5675c;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side ul.inbox-nav {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side ul.inbox-nav li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: 45px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side ul.inbox-nav li a {
|
|
|
|
|
color: #6a6a6a;
|
|
|
|
|
line-height: 45px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side ul.inbox-nav li a:hover, .mail-box .sm-side ul.inbox-nav li.active a, .mail-box .sm-side ul.inbox-nav li a:focus {
|
|
|
|
|
color: #6a6a6a;
|
|
|
|
|
background: #d5d7de;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side ul.inbox-nav li a .label {
|
|
|
|
|
margin-top: 13px;
|
|
|
|
|
padding: 0.5em 0.8em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .sm-side ul.inbox-nav li a i {
|
|
|
|
|
width: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side {
|
|
|
|
|
flex: 0.6;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side .inbox-head {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
background: #41cac0;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 0 4px 0 0;
|
|
|
|
|
min-height: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side .table-inbox {
|
|
|
|
|
border: 1px solid #d3d3d3;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side .table-inbox .unread td {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
background: #f7f7f7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side .table-inbox tr td {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side .table-inbox tr td .fa-star.inbox-started, .mail-box .lg-side .table-inbox tr td .fa-star:hover {
|
|
|
|
|
color: #f78a09;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail-box .lg-side .table-inbox tr td:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|