first commit
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,22 @@
|
||||
.dict-table[data-v-dd4ee3d2] .el-table__row {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dict-table[data-v-dd4ee3d2] .el-table__row > td:last-child:after {
|
||||
content: "\e6e0";
|
||||
font-family: element-icons !important;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
line-height: 1;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
margin-top: -7px;
|
||||
}
|
||||
|
||||
.dict-table[data-v-dd4ee3d2] .el-table__row > td:last-child .cell {
|
||||
padding-right: 20px;
|
||||
}
|
||||
@@ -0,0 +1,736 @@
|
||||
[v-cloak] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ie-must-go-die {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container {
|
||||
position: absolute;
|
||||
top: 40%;
|
||||
left: 33%;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container h1 {
|
||||
font-size: 28px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container p {
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container a {
|
||||
display: block;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container a:visited {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.button-delete-color {
|
||||
color: #da3e16;
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
column-gap: 50px;
|
||||
row-gap: 10px;
|
||||
}
|
||||
|
||||
.search .search-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
width: calc((100%) / 4.5);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.search .search-query {
|
||||
/*width: 160px;*/
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
/*padding-left: 30px;*/
|
||||
}
|
||||
|
||||
.search .search-item:not(:last-child) {
|
||||
/*padding-right: 40px;*/
|
||||
}
|
||||
|
||||
.search .search-item-label {
|
||||
color: rgb(100, 100, 100);
|
||||
margin-right: 10px;
|
||||
width: 90px;
|
||||
min-width: 90px;
|
||||
overflow: hidden;
|
||||
/*text-align: right;*/
|
||||
/*font-weight: bold;*/
|
||||
}
|
||||
|
||||
.search .search-item-option {
|
||||
min-width: calc(100% - 90px - 10px);
|
||||
overflow: hidden;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.search .search-item-option > * {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1900px) {
|
||||
.search .search-item {
|
||||
width: calc((100% - 60px) / 4);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1350px) {
|
||||
.search .search-item {
|
||||
width: calc((100% - 40px) / 3);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1200px) {
|
||||
.search .search-item {
|
||||
width: calc((100% - 20px) / 2);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
.search .search-item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.search .search-item:not(:last-child) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Text Color Variant
|
||||
*
|
||||
*/
|
||||
.text-primary,
|
||||
.text-primary a {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.text-primary:focus,
|
||||
.text-primary a:focus {
|
||||
color: var(--color-primary-6);
|
||||
}
|
||||
|
||||
.text-default,
|
||||
.text-default a {
|
||||
color: #eaecf6;
|
||||
}
|
||||
|
||||
.text-default:focus,
|
||||
.text-default a:focus {
|
||||
color: #b4bcdf;
|
||||
}
|
||||
|
||||
.text-warning,
|
||||
.text-warning a {
|
||||
color: #daac16;
|
||||
}
|
||||
|
||||
.text-warning:focus,
|
||||
.text-warning a:focus {
|
||||
color: #95750f;
|
||||
}
|
||||
|
||||
.text-success,
|
||||
.text-success a {
|
||||
color: #15db81;
|
||||
}
|
||||
|
||||
.text-success:focus,
|
||||
.text-success a:focus {
|
||||
color: #0e9558;
|
||||
}
|
||||
|
||||
.text-info,
|
||||
.text-info a {
|
||||
color: #15acdc;
|
||||
}
|
||||
|
||||
.text-info:focus,
|
||||
.text-info a:focus {
|
||||
color: #0e7596;
|
||||
}
|
||||
|
||||
.text-white,
|
||||
.text-white a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.text-white:focus,
|
||||
.text-white a:focus {
|
||||
color: #d9d9d9;
|
||||
}
|
||||
|
||||
.text-danger,
|
||||
.text-danger a {
|
||||
color: #da3e16;
|
||||
}
|
||||
|
||||
.text-danger:focus,
|
||||
.text-danger a:focus {
|
||||
color: #952a0f;
|
||||
}
|
||||
|
||||
.text-muted,
|
||||
.text-muted a {
|
||||
color: #b3b3b3;
|
||||
}
|
||||
|
||||
.text-muted:focus,
|
||||
.text-muted a:focus {
|
||||
color: #8c8c8c;
|
||||
}
|
||||
|
||||
|
||||
.flx {
|
||||
display: flex
|
||||
}
|
||||
|
||||
.flx-between {
|
||||
display: flex;
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
.flx-center, .flx-center-between {
|
||||
display: flex;
|
||||
align-items: center
|
||||
}
|
||||
|
||||
.flx-center-between {
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
.flx-center-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center
|
||||
}
|
||||
|
||||
.flx-between-column {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.pointer, .pointer-hover {
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
/* Margins */
|
||||
.no-m {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.mn {
|
||||
margin-right: -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
.mrn {
|
||||
margin-right: -15px;
|
||||
}
|
||||
|
||||
.mln {
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
.mbn {
|
||||
margin-bottom: -15px;
|
||||
}
|
||||
|
||||
.ml0 {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.mr0 {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.mt0 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mb0 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.m25 {
|
||||
margin: 25px;
|
||||
}
|
||||
|
||||
.mr25 {
|
||||
margin-right: 25px;
|
||||
}
|
||||
|
||||
.ml25 {
|
||||
margin-left: 25px;
|
||||
}
|
||||
|
||||
.mt25 {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.mb25 {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.m20 {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.mr20 {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.ml20 {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mt20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.mb20 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.m15 {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.mr15 {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.ml15 {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.mt15 {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mb15 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.m10 {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.mr10 {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.ml10 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.mt10 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.mb10 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.m5 {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.mr5 {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.ml5 {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.mt5 {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.mb5 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Padding space */
|
||||
.no-p {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.pl0 {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pr0 {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pt0 {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.pb0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.p50 {
|
||||
padding: 50px;
|
||||
}
|
||||
|
||||
.pr50 {
|
||||
padding-right: 50px;
|
||||
}
|
||||
|
||||
.pl50 {
|
||||
padding-left: 50px;
|
||||
}
|
||||
|
||||
.pt50 {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.pb50 {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.p25 {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.pr25 {
|
||||
padding-right: 25px;
|
||||
}
|
||||
|
||||
.pl25 {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
.pt25 {
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.pb25 {
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
.p20 {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.pr20 {
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
.pl20 {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.pt20 {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.pb20 {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.p15 {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.pr15 {
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.pl15 {
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.pt15 {
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.pb15 {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
.p10 {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.pr10 {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.pl10 {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.pt10 {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.pb10 {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.p5 {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.pr5 {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.pl5 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.pt5 {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.pb5 {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Borders */
|
||||
.no-b {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
td.no-b {
|
||||
border-top: 0 !important;
|
||||
}
|
||||
|
||||
.bordered {
|
||||
border: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.bb {
|
||||
border-bottom: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.bt {
|
||||
border-top: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.bl {
|
||||
border-left: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.br {
|
||||
border-right: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.el-transfer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.el-transfer__buttons {
|
||||
/*width: 200px;*/
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.el-transfer-panel {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.appCenterPopover {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.appCenterCard {
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.appCenterCard .el-card__header {
|
||||
padding: 8px 10px !important;
|
||||
}
|
||||
|
||||
.appCenterCard .entranceDetail {
|
||||
border-radius: 6px !important;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
line-height: 1;
|
||||
color: #606060;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.entranceDetail:hover,
|
||||
.entranceDetail-selected {
|
||||
background-color: #e5edff;
|
||||
color: #3177fd;
|
||||
}
|
||||
|
||||
.appCenterCard .entranceIcon {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin: 8px auto 6px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.appCenterCard .entranceDetail a {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
|
||||
.process-task-record .el-descriptions__header {
|
||||
margin: 0;
|
||||
/*border: 1px solid var(--border-color-lighter);*/
|
||||
border-bottom: 0;
|
||||
padding: 10px 5px;
|
||||
/*background: var(--table-header-background-color);*/
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.process-task-record .el-descriptions__header .el-descriptions__title {
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.process-task-record .el-descriptions {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.process-title {
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
margin: 25px 0 10px 0;
|
||||
padding-left: 10px;
|
||||
position: relative;
|
||||
line-height: 1.1;
|
||||
font-family: inherit;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.process-title::before {
|
||||
content: "";
|
||||
width: 5px;
|
||||
background: var(--color-primary);
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.signature-image {
|
||||
height: 100px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-box {
|
||||
width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.left-span-label {
|
||||
border-left: 4px solid var(--color-primary);
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
padding-left: 8px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
/**********start****************设置工作流表单el-description嵌套el-form的格式 必须要使用flow-task-form!!!***********************start*****************/
|
||||
|
||||
.flow-task-form .el-descriptions__table {
|
||||
table-layout: fixed !important;
|
||||
}
|
||||
|
||||
.flow-task-form .el-form-item .el-form-item__label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions-item__label.is-bordered-label {
|
||||
background: rgb(248, 249, 250) !important;
|
||||
padding: 8px 12px !important;
|
||||
/*border: 1px solid rgb(221, 221, 221) !important;*/
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions .is-bordered .el-descriptions-item__cell {
|
||||
border: 1px solid rgb(221, 221, 221) !important;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions-item__content {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
||||
.flow-task-form .el-form-item .el-form-item__content > div {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions-item__cell.el-descriptions-item__content .el-form-item {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
/**********start****************设置工作流表单el-description嵌套el-form的格式 必填项加星号***********************start*****************/
|
||||
.flow-task-form th.el-descriptions-item__label:has(+ td.el-descriptions-item__content > div.el-form-item.is-required):before {
|
||||
content: "*";
|
||||
color: #ff0202;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
/**/
|
||||
|
||||
.flow-task-form .el-form-item input, .flow-task-form .el-form-item textarea, .flow-task-form .el-form-item .el-radio.is-bordered {
|
||||
/*border: none;*/
|
||||
border-radius: unset;
|
||||
border: 1px solid rgb(221, 221, 221);
|
||||
}
|
||||
|
||||
.flow-task-form .el-form-item .el-radio.is-bordered {
|
||||
border: 1px solid rgb(221, 221, 221);
|
||||
}
|
||||
|
||||
.flow-task-form .el-form-item .el-radio.is-bordered.is-checked {
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
|
||||
.flow-task-form .el-form-item .el-date-editor {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/*********END********设置工作流表单el-description嵌套el-form的格式**************************END*********/
|
||||
|
||||
.el-form-item .form-item-tooltip {
|
||||
color: rgb(153, 153, 153);
|
||||
font-size: 13px;
|
||||
display: block;
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
/*!*.el-dialog__header{*!*/
|
||||
/*!*border-bottom: 1px solid #e5e5e5;*!*/
|
||||
/*!*}*!*/
|
||||
|
||||
/*!*.el-dialog__footer{*!*/
|
||||
/*!*border-top: 1px solid #e5e5e5;*!*/
|
||||
/*!*}*!*/
|
||||
/*.el-table-container {*/
|
||||
/* padding-top: 54px;*/
|
||||
/* padding-left: 5px;*/
|
||||
/* padding-right: 5px;*/
|
||||
/*}*/
|
||||
|
||||
/*.el-pagination-container {*/
|
||||
/* padding-top: 10px;*/
|
||||
/* padding-left: 10px;*/
|
||||
/* padding-right: 10px;*/
|
||||
/* background-color: #fff;*/
|
||||
/* margin-bottom: 20px;*/
|
||||
/*}*/
|
||||
|
||||
/*a .collapsed {*/
|
||||
/* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIW…aIJN0bgQRgIjnlmn1heSO5PE6Y2YXe+5Cr5+h++gs12AcAS6FS+7YOsj4AAAAASUVORK5CYII=);*/
|
||||
/*}*/
|
||||
|
||||
/*a .expanded {*/
|
||||
/* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIW…EYRYBPOB0gBShKwKGA////48VtbW3/8clTnBIH3gCKkzJgAGvBX0dDm0sCAAAAAElFTkSuQmCC);*/
|
||||
/*}*/
|
||||
|
||||
/*.ms-tree-space {*/
|
||||
/* position: relative;*/
|
||||
/* top: 1px;*/
|
||||
/* display: inline-block;*/
|
||||
/* font-family: "Glyphicons Halflings";*/
|
||||
/* font-style: normal;*/
|
||||
/* font-weight: 400;*/
|
||||
/* line-height: 1;*/
|
||||
/* width: 18px;*/
|
||||
/* height: 14px;*/
|
||||
/*}*/
|
||||
|
||||
/*.ms-tree-space::before {*/
|
||||
/* content: "";*/
|
||||
/*}*/
|
||||
|
||||
/*.el-table__expand-icon--expanded {*/
|
||||
/* -ms-transform: rotate(90deg);*/
|
||||
/* transform: rotate(90deg);*/
|
||||
/*}*/
|
||||
|
||||
/*.el-table-expand {*/
|
||||
/* font-size: 0;*/
|
||||
/*}*/
|
||||
/*.el-table-expand label {*/
|
||||
/* width: 90px;*/
|
||||
/* color: #99a9bf;*/
|
||||
/* font-size: 12px;*/
|
||||
/*}*/
|
||||
/*.el-table-expand .el-form-item {*/
|
||||
/* margin-bottom: 2px;*/
|
||||
/* margin-right: 0;*/
|
||||
/* width: 50%;*/
|
||||
/* display: inline-block;*/
|
||||
/* vertical-align: top;*/
|
||||
/*}*/
|
||||
/*.el-table-expand .el-form-item__content {*/
|
||||
/* margin-right: 0;*/
|
||||
/* margin-bottom: 0;*/
|
||||
/* font-size: 12px;*/
|
||||
/* display: inline-block;*/
|
||||
/* vertical-align: top;*/
|
||||
/* position: relative;*/
|
||||
/*}*/
|
||||
|
||||
/*.el-table-expand-line {*/
|
||||
/* font-size: 0;*/
|
||||
/*}*/
|
||||
/*.el-table-expand-line label {*/
|
||||
/* width: 90px;*/
|
||||
/* color: #99a9bf;*/
|
||||
/* font-size: 12px;*/
|
||||
/*}*/
|
||||
/*.el-table-expand-line .el-form-item {*/
|
||||
/* margin-bottom: 2px;*/
|
||||
/* margin-right: 0;*/
|
||||
/* width: 100%;*/
|
||||
/* display: inline-block;*/
|
||||
/* vertical-align: top;*/
|
||||
/*}*/
|
||||
/*.el-table-expand-line .el-form-item__content {*/
|
||||
/* margin-right: 0;*/
|
||||
/* margin-bottom: 0;*/
|
||||
/* font-size: 12px;*/
|
||||
/* display: inline-block;*/
|
||||
/* vertical-align: top;*/
|
||||
/* position: relative;*/
|
||||
/*}*/
|
||||
@@ -0,0 +1,310 @@
|
||||
:root {
|
||||
--tab-bar-height: 50px;
|
||||
--color-primary: #1867b0;
|
||||
--color-black: #000;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
html, body, #app {
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #f7f8fa;
|
||||
overflow-x: hidden;
|
||||
font-size: 16px
|
||||
}
|
||||
|
||||
.main-page {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.page-wrapper {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.page-showtabbar .page-wrapper {
|
||||
height: calc(100% - var(--tab-bar-height) - env(safe-area-inset-bottom));
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
#container {
|
||||
/*padding: 10px;*/
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.direction-column-field.van-field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 10px;
|
||||
}
|
||||
|
||||
.direction-column-field.van-field .van-field__label {
|
||||
max-width: 100%;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.form-button-cell {
|
||||
background: #f1f1f1 !important;
|
||||
}
|
||||
|
||||
.table-list .table-card {
|
||||
margin: 10px;
|
||||
border-radius: 10px;
|
||||
background: #FFF;
|
||||
padding: 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.table-list .table-card .van-cell {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.table-list .table-card .van-cell:not(:last-child)::after {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.table-list .table-card .table-card-footer .van-cell__value {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
margin-top: 10px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.van-search .van-search__content .van-field__field-wrap {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.w-e-toolbar {
|
||||
z-index: 11 !important;
|
||||
}
|
||||
|
||||
.w-e-text-container {
|
||||
z-index: 10 !important;
|
||||
}
|
||||
|
||||
.van-cell-rich-text, .van-cell-rich-text img, .van-cell-rich-text image {
|
||||
max-width: 100%;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.process-title {
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
margin: 10px 0 10px 0 !important;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
line-height: 1.1;
|
||||
font-family: inherit;
|
||||
/*background: #f1f1f1;*/
|
||||
}
|
||||
|
||||
.process-title::before {
|
||||
content: "";
|
||||
width: 5px;
|
||||
background: var(--color-primary);
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.custom-list-loading {
|
||||
background-color: unset;
|
||||
}
|
||||
|
||||
.custom-list-loading .van-icon {
|
||||
font-size: 108px;
|
||||
}
|
||||
|
||||
.list-card {
|
||||
margin: 20px 10px;
|
||||
background: #FFFFFF;
|
||||
border-radius: 10px;
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #ededed;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.list-card:not(:last-child) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.list-card-title {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
.list-card-body {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.list-card-body-img {
|
||||
flex: 0 0 auto;
|
||||
width: 130px;
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
.list-card-body-img img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 5px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
|
||||
.list-card-body-content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
|
||||
.list-card-footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
margin-top: 10px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.list-card-footer .van-button {
|
||||
|
||||
}
|
||||
|
||||
/*************************覆盖vant默认CSS********************************/
|
||||
.van-dropdown-menu__bar{
|
||||
box-shadow: unset;
|
||||
}
|
||||
|
||||
|
||||
/*****************************申请表单CSS********************************/
|
||||
.form-container {
|
||||
padding-bottom: 80px;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
.form-container .form-group {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.form-container .form-actions {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
padding: 12px 16px;
|
||||
background-color: #ffffff;
|
||||
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.form-container .form-actions .van-button {
|
||||
flex: 1;
|
||||
margin: 0 8px;
|
||||
border-radius: 4px;
|
||||
height: 40px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.form-container .van-cell-group {
|
||||
margin-bottom: 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.form-container .van-cell-group__title {
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.form-container .van-cell-group__title::before{
|
||||
content: "";
|
||||
width: 5px;
|
||||
background: var(--color-primary);
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.form-container .van-field__label {
|
||||
width: 90px;
|
||||
color: #323233;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-container .van-field__value {
|
||||
color: #323233;
|
||||
}
|
||||
|
||||
.form-container .van-cell {
|
||||
padding: 12px 16px;
|
||||
}
|
||||
|
||||
.form-container .van-cell:not(:last-child)::after {
|
||||
left: 16px;
|
||||
right: 16px;
|
||||
}
|
||||
|
||||
.form-container .direction-column-field .van-field__label {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-container .direction-column-field .van-field__body {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.form-container .direction-column-field .van-field__control {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
/***************************查看详情CSS********************************/
|
||||
.detail-container {
|
||||
background: #f9f9f9
|
||||
}
|
||||
|
||||
.detail-container .van-cell-group__title{
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.detail-container .van-cell-group__title::before{
|
||||
content: "";
|
||||
width: 5px;
|
||||
background: var(--color-primary);
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.detail-container .direction-column-cell{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.detail-container .direction-column-cell .van-cell__value{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* 会务管理列表页统一满屏布局:查询区和分页区固定,表格使用剩余高度并在内部滚动。
|
||||
*/
|
||||
.meeting-list-layout {
|
||||
height: calc(100vh - 84px);
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item {
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-search-card {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-table-card {
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
margin-top: 0 !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-table-card > .el-card__body {
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .ele-table-tool {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .meeting-main-table {
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .el-pagination-container {
|
||||
flex: 0 0 52px;
|
||||
min-height: 52px;
|
||||
margin-top: 12px !important;
|
||||
margin-bottom: 0 !important;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-main-table .el-table__body-wrapper {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@media (max-height: 760px) {
|
||||
.meeting-list-layout > .transition-item {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-table-card > .el-card__body {
|
||||
padding-top: 14px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .el-pagination-container {
|
||||
flex-basis: 48px;
|
||||
min-height: 48px;
|
||||
margin-top: 8px !important;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,286 @@
|
||||
.options {
|
||||
-webkit-transform: scale(0.7);
|
||||
-moz-transform: scale(0.7);
|
||||
-ms-transform: scale(0.7);
|
||||
transform: scale(0.7);
|
||||
-webkit-backface-visibility: hidden;
|
||||
opacity: 0;
|
||||
-webkit-transition: all 300ms;
|
||||
-moz-transition: all 300ms;
|
||||
transition: all 300ms;
|
||||
}
|
||||
|
||||
.playground.opened {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.opened .options {
|
||||
-webkit-transform: scale(1);
|
||||
-moz-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.pg-cal {
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.pg-val {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 95px;
|
||||
margin-right: 13px;
|
||||
margin-bottom: 10px;
|
||||
padding: 5px;
|
||||
border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
-webkit-border-radius: 4px;
|
||||
text-transform: uppercase;
|
||||
white-space: nowrap;
|
||||
color: #5f5f5f;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.pg-val:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.pg-val:hover,
|
||||
.pg-val.active {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.pg-val i {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.playground {
|
||||
/* display: none;
|
||||
visibility: hidden; */
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
height: auto;
|
||||
z-index: 9999;
|
||||
-webkit-transform: translateX(-50%) translateY(-50%);
|
||||
-moz-transform: translateX(-50%) translateY(-50%);
|
||||
-ms-transform: translateX(-50%) translateY(-50%);
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
visibility: hidden;
|
||||
-webkit-backface-visibility: hidden;
|
||||
}
|
||||
|
||||
.playground > .options {
|
||||
position: relative;
|
||||
background: #fff;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
padding: 15px 0;
|
||||
}
|
||||
|
||||
.playground > .options:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 50%;
|
||||
background-color: #f5f5f5;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.playground h6 {
|
||||
font-size: 11px;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.pg-toggle {
|
||||
/* display: none;
|
||||
visibility: hidden;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
margin: 0;
|
||||
z-index: 9999;
|
||||
cursor: pointer;
|
||||
background: #fff;
|
||||
border: 1px solid #8d8d8d;
|
||||
border-right: 0;
|
||||
border-radius: 4px 0 0 4px;
|
||||
-moz-border-radius: 4px 0 0 4px;
|
||||
-webkit-border-radius: 4px 0 0 4px;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
-webkit-transform: translateX(0) translateY(-50%);
|
||||
-moz-transform: translateX(0) translateY(-50%);
|
||||
-ms-transform: translateX(0) translateY(-50%);
|
||||
transform: translateX(0) translateY(-50%)*/
|
||||
}
|
||||
|
||||
.playground .pg-close {
|
||||
position: absolute;
|
||||
padding: 15px;
|
||||
right: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.playground select {
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
outline: none !important;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.playground .options-container {
|
||||
width: 50%;
|
||||
float: left;
|
||||
padding: 3px 15px;
|
||||
}
|
||||
|
||||
.playground small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.playground .cs_color {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 95px;
|
||||
margin-right: 13px;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
-webkit-border-radius: 4px;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.cs_color > div:first-child {
|
||||
width: 30%;
|
||||
height: 12px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.cs_color > div:nth-child(2) {
|
||||
width: 70%;
|
||||
height: 12px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.cs_color > div:nth-child(3) {
|
||||
width: 30%;
|
||||
height: 71px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.cs_color > div:nth-child(4) {
|
||||
width: 70%;
|
||||
height: 71px;
|
||||
background-color: #f1f4f9;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.playground .cs_color.active,
|
||||
.playground .cs_color:hover,
|
||||
.pg-val:hover,
|
||||
.pg-val.active {
|
||||
border: 1px solid #a55ee7;
|
||||
}
|
||||
|
||||
.playground .cs_1 div:first-child {
|
||||
background: #147bd0;
|
||||
}
|
||||
|
||||
.playground .cs_1 div:nth-child(2) {
|
||||
background: #1582dc;
|
||||
}
|
||||
|
||||
.playground .cs_1 div:nth-child(3) {
|
||||
background: #2e353d;
|
||||
}
|
||||
|
||||
.playground .cs_2 div:first-child {
|
||||
background: #14a5d3;
|
||||
}
|
||||
|
||||
.playground .cs_2 div:nth-child(2) {
|
||||
background: #15acdc;
|
||||
}
|
||||
|
||||
.playground .cs_2 div:nth-child(3) {
|
||||
background: #4f576b;
|
||||
}
|
||||
|
||||
.playground .cs_3 div:first-child {
|
||||
background: #353d46;
|
||||
}
|
||||
|
||||
.playground .cs_3 div:nth-child(2) {
|
||||
background: #353d46;
|
||||
}
|
||||
|
||||
.playground .cs_3 div:nth-child(3) {
|
||||
background: #353d46;
|
||||
}
|
||||
|
||||
.playground .cs_4 div:first-child {
|
||||
background: #fff;
|
||||
height: 10px;
|
||||
border: 1px solid #eee;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.playground .cs_4 div:nth-child(2) {
|
||||
background: #fff;
|
||||
height: 10px;
|
||||
border: 1px solid #eee;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.playground .cs_4 div:nth-child(3) {
|
||||
background: #39424c;
|
||||
}
|
||||
|
||||
.playground .cs_5 div:first-child {
|
||||
background: #2dbe60;
|
||||
}
|
||||
|
||||
.playground .cs_5 div:nth-child(2) {
|
||||
background: #2dbe60;
|
||||
}
|
||||
|
||||
.playground .cs_5 div:nth-child(3) {
|
||||
background: #f1f4f9;
|
||||
}
|
||||
|
||||
.playground .cs_5 div:nth-child(4) {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.pg-footer {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.layout-toggleMenu__item {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
margin-left: 5px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.layout-toggleMenu__item.is-active {
|
||||
border-color: #a55ee7;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,138 @@
|
||||
:root {
|
||||
--color-primary: #006db9; /* 主色 */
|
||||
--color-primary-1: #e6f3ff; /* 最浅,用于浅色背景 */
|
||||
--color-primary-2: #b3d9ff; /* 较浅,用于 hover/light-bg */
|
||||
--color-primary-3: #80c0ff; /* 轻微强调 */
|
||||
--color-primary-4: #4da6ff; /* 中等强调 */
|
||||
--color-primary-5: #1a8cff; /* 较强强调 */
|
||||
--color-primary-6: #006db9; /* 主色(默认) */
|
||||
--color-primary-7: #005aa3; /* 点击/active 状态 */
|
||||
--color-primary-8: #00468c; /* 较深,用于文字/强调 */
|
||||
--color-primary-9: #003370; /* 更深,用于深色模式 */
|
||||
--color-primary-10: #002054; /* 最深,用于特殊强调 */
|
||||
|
||||
--color-success: #52c41a;
|
||||
--color-success-1: #f6ffed;
|
||||
--color-success-2: #d9f7be;
|
||||
--color-success-3: #b7eb8f;
|
||||
--color-success-4: #95de64;
|
||||
--color-success-5: #73d13d;
|
||||
--color-success-6: #52c41a;
|
||||
--color-success-7: #389e0d;
|
||||
--color-success-8: #237804;
|
||||
--color-success-9: #135200;
|
||||
--color-success-10: #092b00;
|
||||
--color-warning: #faad14;
|
||||
--color-warning-1: #fffbe6;
|
||||
--color-warning-2: #fff1b8;
|
||||
--color-warning-3: #ffe58f;
|
||||
--color-warning-4: #ffd666;
|
||||
--color-warning-5: #ffc53d;
|
||||
--color-warning-6: #faad14;
|
||||
--color-warning-7: #d48806;
|
||||
--color-warning-8: #ad6800;
|
||||
--color-warning-9: #874d00;
|
||||
--color-warning-10: #613400;
|
||||
--color-danger: #ff4d4f;
|
||||
--color-danger-1: #fff1f0;
|
||||
--color-danger-2: #ffccc7;
|
||||
--color-danger-3: #ffa39e;
|
||||
--color-danger-4: #ff7875;
|
||||
--color-danger-5: #ff4d4f;
|
||||
--color-danger-6: #f5222d;
|
||||
--color-danger-7: #cf1322;
|
||||
--color-danger-8: #a8071a;
|
||||
--color-danger-9: #820014;
|
||||
--color-danger-10: #5c0011;
|
||||
--color-info: #909399;
|
||||
--color-info-1: #f4f4f5;
|
||||
--color-info-2: #dedfe0;
|
||||
--color-info-3: #d3d4d6;
|
||||
--color-info-4: #bcbec2;
|
||||
--color-info-5: #a6a9ad;
|
||||
--color-info-6: #909399;
|
||||
--color-info-7: #6e7074;
|
||||
--color-info-8: #58595c;
|
||||
--color-info-9: #414244;
|
||||
--color-info-10: #2a2b2b;
|
||||
--color-white: #fff;
|
||||
--color-white-5: hsla(0, 0%, 100%, 0.5);
|
||||
--color-black: #000;
|
||||
--color-black-1: rgba(0, 0, 0, 0.1);
|
||||
--color-black-3: rgba(0, 0, 0, 0.3);
|
||||
--color-black-5: rgba(0, 0, 0, 0.5);
|
||||
--color-text-primary: #303133;
|
||||
--color-text-regular: #606266;
|
||||
--color-text-secondary: #909399;
|
||||
--color-text-placeholder: #c0c4cc;
|
||||
--color-text-dark-primary: #fff;
|
||||
--color-text-dark-regular: hsla(0, 0%, 100%, 0.8);
|
||||
--border-color-base: #ddd;
|
||||
--border-color-light: #e5e5e5;
|
||||
--border-color-lighter: #ededed;
|
||||
--border-color-extra-light: #f4f4f4;
|
||||
--background-color-base: #fafafa;
|
||||
--box-shadow-base: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
|
||||
--box-shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.12);
|
||||
--box-shadow-light: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
|
||||
--checkbox-background-color: var(--color-white);
|
||||
--radio-input-background-color: var(--color-white);
|
||||
--radio-checked-icon-color: var(--color-white);
|
||||
--input-background-color: var(--color-white);
|
||||
--button-default-background-color: var(--color-white);
|
||||
--button-disabled-background-color: var(--color-white);
|
||||
--button-default-border-color-5: hsla(0, 0%, 87%, 0.5);
|
||||
--table-header-background-color: var(--background-color-base);
|
||||
--table-fixed-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
|
||||
--popup-modal-background-color: #000;
|
||||
--popup-modal-opacity: 0.5;
|
||||
--popover-background-color: var(--color-white);
|
||||
--dialog-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||
--tooltip-fill: var(--color-text-primary);
|
||||
--tooltip-color: var(--color-text-dark-primary);
|
||||
--tooltip-border-color: var(--tooltip-fill);
|
||||
--scrollbar-background-color: hsla(0, 0%, 67%, 0.5);
|
||||
--scrollbar-hover-background-color: hsla(0, 0%, 67%, 0.8);
|
||||
--backtop-background-color: var(--color-white);
|
||||
--backtop-font-color: var(--color-primary);
|
||||
--backtop-hover-background-color: var(--border-color-extra-light);
|
||||
--avatar-background-color: #c0c4cc;
|
||||
--skeleton-color: #f2f2f2;
|
||||
--skeleton-to-color: #e6e6e6;
|
||||
--svg-monochrome-grey: #dcdde0;
|
||||
--loading-mask-bg: hsla(0, 0%, 100%, 0.9);
|
||||
--menu-dark-background: #191a23;
|
||||
--layout-body-background: #f0f2f5;
|
||||
--sidebar-background-light: var(--color-white);
|
||||
--sidebar-background-dark: var(--menu-dark-background);
|
||||
--sidebar-light-shadow: 1px 3px 3px rgba(0, 21, 41, 0.08);
|
||||
--sidebar-dark-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
|
||||
--header-background: var(--menu-dark-background);
|
||||
--header-light-background: var(--color-white);
|
||||
--header-light-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
|
||||
--header-dark-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
||||
--header-tool-hover-bg: rgba(0, 0, 0, 0.025);
|
||||
--header-dark-tool-hover-bg: hsla(0, 0%, 100%, 0.05);
|
||||
--logo-light-shadow: 1px 2px 3px rgba(0, 21, 41, 0.08);
|
||||
--logo-dark-shadow: 0 3px 4px rgba(0, 0, 0, 0.35);
|
||||
--content-image-filter: none;
|
||||
--el-mask-color: rgba(255, 255, 255, 0.4);
|
||||
--el-mask-color-extra-light: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
||||
background-color: #f5f7fa;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
height: 100%;
|
||||
}
|
||||
@@ -0,0 +1,314 @@
|
||||
::-moz-selection {
|
||||
background: #15acdc;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #15acdc;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.loader:after {
|
||||
border: solid 1px transparent;
|
||||
border-top-color: #15db81;
|
||||
border-left-color: #15db81;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:focus,
|
||||
a:hover {
|
||||
color: #11ac66;
|
||||
}
|
||||
|
||||
.app > .header {
|
||||
background-color: #15acdc;
|
||||
}
|
||||
|
||||
.app > .header .brand {
|
||||
background-color: #14a5d3;
|
||||
}
|
||||
|
||||
.app > .header .brand a,
|
||||
.app > .header .brand a:hover {
|
||||
color: rgba(219, 244, 252, 0.9);
|
||||
}
|
||||
|
||||
.app > .header .navbar-toggle,
|
||||
.app > .header .nav > li > a,
|
||||
.app > .header .bg-none {
|
||||
color: #dbf4fc;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.header .nav > li > a:hover,
|
||||
.header .nav > li > a:focus,
|
||||
.header .nav .open > a,
|
||||
.header .nav .open > a:hover,
|
||||
.header .nav .open > a:focus {
|
||||
background-color: #139dc9;
|
||||
}
|
||||
}
|
||||
|
||||
.header .nav .dropdown-menu .open > a {
|
||||
background-color: #dcdff0;
|
||||
}
|
||||
|
||||
.header .open a.toggle-search,
|
||||
.header a.toggle-search:hover {
|
||||
background-color: #139dc9;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-color: #4f576b;
|
||||
color: #bec8e0;
|
||||
}
|
||||
|
||||
.sidebar a,
|
||||
.sidebar .nav-title {
|
||||
color: #bec8e0;
|
||||
}
|
||||
|
||||
.compact-menu .main-navigation > ul > li {
|
||||
border-bottom: 1px solid #4b5265;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li:hover > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li.open .sub-menu {
|
||||
background-color: #525b6f;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.small-menu .main-navigation > ul > li.open {
|
||||
background-color: #4b5265;
|
||||
}
|
||||
}
|
||||
|
||||
.gallery .overlay {
|
||||
background-color: #15acdc;
|
||||
background-color: rgba(21, 172, 220, 0.9);
|
||||
}
|
||||
|
||||
.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #15acdc;
|
||||
border-color: #15acdc;
|
||||
}
|
||||
|
||||
a.btn-color {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-color:hover,
|
||||
.btn-color:focus,
|
||||
.btn-color:active,
|
||||
.btn-color.active,
|
||||
.open .dropdown-toggle.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #139ac5;
|
||||
background-image: none;
|
||||
border-color: #139ac5;
|
||||
}
|
||||
|
||||
.btn-color.disabled,
|
||||
.btn-color[disabled],
|
||||
fieldset[disabled] .btn-color,
|
||||
.btn-color.disabled:hover,
|
||||
.btn-color[disabled]:hover,
|
||||
fieldset[disabled] .btn-color:hover,
|
||||
.btn-color.disabled:focus,
|
||||
.btn-color[disabled]:focus,
|
||||
fieldset[disabled] .btn-color:focus,
|
||||
.btn-color.disabled:active,
|
||||
.btn-color[disabled]:active,
|
||||
fieldset[disabled] .btn-color:active,
|
||||
.btn-color.disabled.active,
|
||||
.btn-color[disabled].active,
|
||||
fieldset[disabled] .btn-color.active {
|
||||
background-color: #15acdc;
|
||||
border-color: #15acdc;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline {
|
||||
background-color: transparent;
|
||||
color: #15acdc;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline:hover,
|
||||
.btn-color.btn-outline:focus,
|
||||
.btn-color.btn-outline:active,
|
||||
.btn-color.btn-outline.active {
|
||||
background-color: #15acdc;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.color {
|
||||
color: #15acdc;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle {
|
||||
color: #b9e6f5;
|
||||
border: 1px solid #15acdc;
|
||||
background-color: #15acdc;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle:hover {
|
||||
background-color: #21b9ea;
|
||||
}
|
||||
|
||||
.slider-color .slider-selection {
|
||||
background-color: #15acdc;
|
||||
}
|
||||
|
||||
.slider-color .slider-handle {
|
||||
box-shadow:
|
||||
rgba(0, 0, 0, 0.2) 0px 2px 5px,
|
||||
#15acdc 0px 0px 0px 1px;
|
||||
}
|
||||
|
||||
.panel-color {
|
||||
border-color: #15acdc;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading {
|
||||
color: #b9e6f5;
|
||||
background-color: #15acdc;
|
||||
border-color: #15acdc;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading + .panel-collapse .panel-body {
|
||||
border-top-color: #15acdc;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading a {
|
||||
color: #b9e6f5;
|
||||
}
|
||||
|
||||
.panel-color > .panel-footer + .panel-collapse .panel-body {
|
||||
border-bottom-color: #15acdc;
|
||||
}
|
||||
|
||||
.label-color {
|
||||
background-color: #15acdc;
|
||||
}
|
||||
|
||||
.label-color[href]:hover,
|
||||
.label-color[href]:focus {
|
||||
background-color: #1188ad;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #15acdc;
|
||||
color: #b9e6f5;
|
||||
}
|
||||
|
||||
.bg-color a {
|
||||
color: #b9e6f5;
|
||||
}
|
||||
|
||||
.bg-color a:active,
|
||||
.bg-color a:focus,
|
||||
.bg-color a:hover {
|
||||
color: #8cd6ee;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.bg-color .nav > li:hover > a,
|
||||
.bg-color .nav > li:focus > a,
|
||||
.bg-color .nav > li:active > a,
|
||||
.bg-color .nav > li.active > a,
|
||||
.bg-color .nav > li > a:hover,
|
||||
.bg-color .nav > li > a:focus {
|
||||
background-color: #14a1ce;
|
||||
}
|
||||
|
||||
.pagination > .active > a,
|
||||
.pagination > .active > span,
|
||||
.pagination > .active > a:hover,
|
||||
.pagination > .active > span:hover,
|
||||
.pagination > .active > a:focus,
|
||||
.pagination > .active > span:focus {
|
||||
border-color: #15acdc;
|
||||
background-color: #15acdc;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.progress-bar-color {
|
||||
background-color: #15acdc;
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style {
|
||||
border-color: #15acdc;
|
||||
background-color: #15acdc;
|
||||
background-color: rgba(21, 172, 220, 0.9);
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#jqstooltip {
|
||||
background-color: #15acdc;
|
||||
border-color: #15acdc;
|
||||
}
|
||||
|
||||
#tooltip {
|
||||
background-color: #15acdc;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tooltip:before {
|
||||
border-color: transparent #15acdc transparent transparent;
|
||||
}
|
||||
|
||||
.jvectormap-label {
|
||||
border: solid 1px #15acdc;
|
||||
background-color: #15acdc;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin,
|
||||
.jvectormap-zoomout {
|
||||
background-color: #15acdc;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.app.small-menu .sidebar .main-navigation > ul > li .leftMenu__twoIcon {
|
||||
display: inline;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li a {
|
||||
padding: 5px 20px !important;
|
||||
color: #59595a;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu li.active,
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li a:hover {
|
||||
background-color: #f1f2f9;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a + .sub-menu > li > a {
|
||||
padding: 5px 20px 5px 40px !important;
|
||||
}
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul li a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.main-navigation > ul > li .sub-menu .sub-menu {
|
||||
background-color: #5b657b;
|
||||
}
|
||||
|
||||
.small-menu .main-navigation > ul > li .sub-menu .sub-menu {
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -0,0 +1,314 @@
|
||||
::-moz-selection {
|
||||
background: #353d46;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #353d46;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.loader:after {
|
||||
border: solid 1px transparent;
|
||||
border-top-color: #2e353d;
|
||||
border-left-color: #2e353d;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:focus,
|
||||
a:hover {
|
||||
color: #181c20;
|
||||
}
|
||||
|
||||
.app > .header {
|
||||
background-color: #353d46;
|
||||
}
|
||||
|
||||
.app > .header .brand {
|
||||
background-color: #353d46;
|
||||
}
|
||||
|
||||
.app > .header .brand a,
|
||||
.app > .header .brand a:hover {
|
||||
color: rgba(165, 175, 187, 0.9);
|
||||
}
|
||||
|
||||
.app > .header .navbar-toggle,
|
||||
.app > .header .nav > li > a,
|
||||
.app > .header .bg-none {
|
||||
color: #a5afbb;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.header .nav > li > a:hover,
|
||||
.header .nav > li > a:focus,
|
||||
.header .nav .open > a,
|
||||
.header .nav .open > a:hover,
|
||||
.header .nav .open > a:focus {
|
||||
background-color: #2c323a;
|
||||
}
|
||||
}
|
||||
|
||||
.header .nav .dropdown-menu .open > a {
|
||||
background-color: #dcdff0;
|
||||
}
|
||||
|
||||
.header .open a.toggle-search,
|
||||
.header a.toggle-search:hover {
|
||||
background-color: #2c323a;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-color: #353d46;
|
||||
color: #a0a9b4;
|
||||
}
|
||||
|
||||
.sidebar a,
|
||||
.sidebar .nav-title {
|
||||
color: #a0a9b4;
|
||||
}
|
||||
|
||||
.compact-menu .main-navigation > ul > li {
|
||||
border-bottom: 1px solid #303840;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li a:hover {
|
||||
color: #d9dde1;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li:hover > a {
|
||||
color: #d9dde1;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li.open .sub-menu {
|
||||
background-color: #38404a;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.small-menu .main-navigation > ul > li.open {
|
||||
background-color: #303840;
|
||||
}
|
||||
}
|
||||
|
||||
.gallery .overlay {
|
||||
background-color: #353d46;
|
||||
background-color: rgba(53, 61, 70, 0.9);
|
||||
}
|
||||
|
||||
.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #353d46;
|
||||
border-color: #353d46;
|
||||
}
|
||||
|
||||
a.btn-color {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-color:hover,
|
||||
.btn-color:focus,
|
||||
.btn-color:active,
|
||||
.btn-color.active,
|
||||
.open .dropdown-toggle.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #2a3037;
|
||||
background-image: none;
|
||||
border-color: #2a3037;
|
||||
}
|
||||
|
||||
.btn-color.disabled,
|
||||
.btn-color[disabled],
|
||||
fieldset[disabled] .btn-color,
|
||||
.btn-color.disabled:hover,
|
||||
.btn-color[disabled]:hover,
|
||||
fieldset[disabled] .btn-color:hover,
|
||||
.btn-color.disabled:focus,
|
||||
.btn-color[disabled]:focus,
|
||||
fieldset[disabled] .btn-color:focus,
|
||||
.btn-color.disabled:active,
|
||||
.btn-color[disabled]:active,
|
||||
fieldset[disabled] .btn-color:active,
|
||||
.btn-color.disabled.active,
|
||||
.btn-color[disabled].active,
|
||||
fieldset[disabled] .btn-color.active {
|
||||
background-color: #353d46;
|
||||
border-color: #353d46;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline {
|
||||
background-color: transparent;
|
||||
color: #353d46;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline:hover,
|
||||
.btn-color.btn-outline:focus,
|
||||
.btn-color.btn-outline:active,
|
||||
.btn-color.btn-outline.active {
|
||||
background-color: #353d46;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.color {
|
||||
color: #353d46;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle {
|
||||
color: #c2c5c7;
|
||||
border: 1px solid #353d46;
|
||||
background-color: #353d46;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle:hover {
|
||||
background-color: #404954;
|
||||
}
|
||||
|
||||
.slider-color .slider-selection {
|
||||
background-color: #353d46;
|
||||
}
|
||||
|
||||
.slider-color .slider-handle {
|
||||
box-shadow:
|
||||
rgba(0, 0, 0, 0.2) 0px 2px 5px,
|
||||
#353d46 0px 0px 0px 1px;
|
||||
}
|
||||
|
||||
.panel-color {
|
||||
border-color: #353d46;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading {
|
||||
color: #c2c5c7;
|
||||
background-color: #353d46;
|
||||
border-color: #353d46;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading + .panel-collapse .panel-body {
|
||||
border-top-color: #353d46;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading a {
|
||||
color: #c2c5c7;
|
||||
}
|
||||
|
||||
.panel-color > .panel-footer + .panel-collapse .panel-body {
|
||||
border-bottom-color: #353d46;
|
||||
}
|
||||
|
||||
.label-color {
|
||||
background-color: #353d46;
|
||||
}
|
||||
|
||||
.label-color[href]:hover,
|
||||
.label-color[href]:focus {
|
||||
background-color: #1f2329;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #353d46;
|
||||
color: #c2c5c7;
|
||||
}
|
||||
|
||||
.bg-color a {
|
||||
color: #c2c5c7;
|
||||
}
|
||||
|
||||
.bg-color a:active,
|
||||
.bg-color a:focus,
|
||||
.bg-color a:hover {
|
||||
color: #a8abaf;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.bg-color .nav > li:hover > a,
|
||||
.bg-color .nav > li:focus > a,
|
||||
.bg-color .nav > li:active > a,
|
||||
.bg-color .nav > li.active > a,
|
||||
.bg-color .nav > li > a:hover,
|
||||
.bg-color .nav > li > a:focus {
|
||||
background-color: #2e353d;
|
||||
}
|
||||
|
||||
.pagination > .active > a,
|
||||
.pagination > .active > span,
|
||||
.pagination > .active > a:hover,
|
||||
.pagination > .active > span:hover,
|
||||
.pagination > .active > a:focus,
|
||||
.pagination > .active > span:focus {
|
||||
border-color: #353d46;
|
||||
background-color: #353d46;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.progress-bar-color {
|
||||
background-color: #353d46;
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style {
|
||||
border-color: #353d46;
|
||||
background-color: #353d46;
|
||||
background-color: rgba(53, 61, 70, 0.9);
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#jqstooltip {
|
||||
background-color: #353d46;
|
||||
border-color: #353d46;
|
||||
}
|
||||
|
||||
#tooltip {
|
||||
background-color: #353d46;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tooltip:before {
|
||||
border-color: transparent #353d46 transparent transparent;
|
||||
}
|
||||
|
||||
.jvectormap-label {
|
||||
border: solid 1px #353d46;
|
||||
background-color: #353d46;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin,
|
||||
.jvectormap-zoomout {
|
||||
background-color: #353d46;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.app.small-menu .sidebar .main-navigation > ul > li .leftMenu__twoIcon {
|
||||
display: inline;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li a {
|
||||
padding: 5px 20px !important;
|
||||
color: #59595a;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu li.active,
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li a:hover {
|
||||
background-color: #f1f2f9;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a + .sub-menu > li > a {
|
||||
padding: 5px 20px 5px 40px !important;
|
||||
}
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul li a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.main-navigation > ul > li .sub-menu .sub-menu {
|
||||
background-color: #4c5765;
|
||||
}
|
||||
|
||||
.small-menu .main-navigation > ul > li .sub-menu .sub-menu {
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -0,0 +1,291 @@
|
||||
@media screen and (min-width: 768px) {
|
||||
.app > header .dropdown-menu {
|
||||
border-top: 1px solid #e3e6f3 !important;
|
||||
}
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #39424c;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #39424c;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.loader:after {
|
||||
border: solid 1px transparent;
|
||||
border-top-color: #da3e16;
|
||||
border-left-color: #da3e16;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:focus,
|
||||
a:hover {
|
||||
color: #ac3111;
|
||||
}
|
||||
|
||||
.app > .header {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.app > .header .brand {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.app > .header .brand a,
|
||||
.app > .header .brand a:hover {
|
||||
color: rgba(89, 89, 90, 0.9);
|
||||
}
|
||||
|
||||
.app > .header .navbar-toggle,
|
||||
.app > .header .nav > li > a,
|
||||
.app > .header .bg-none {
|
||||
color: #59595a;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.header .nav > li > a:hover,
|
||||
.header .nav > li > a:focus,
|
||||
.header .nav .open > a,
|
||||
.header .nav .open > a:hover,
|
||||
.header .nav .open > a:focus {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
}
|
||||
|
||||
.header .nav .dropdown-menu .open > a {
|
||||
background-color: #dcdff0;
|
||||
}
|
||||
|
||||
.header .open a.toggle-search,
|
||||
.header a.toggle-search:hover {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-color: #39424c;
|
||||
color: #9fadbd;
|
||||
}
|
||||
|
||||
.sidebar a,
|
||||
.sidebar .nav-title {
|
||||
color: #9fadbd;
|
||||
}
|
||||
|
||||
.compact-menu .main-navigation > ul > li {
|
||||
border-bottom: 1px solid #353d46;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li a:hover {
|
||||
color: #dbe1e7;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li:hover > a {
|
||||
color: #dbe1e7;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li.open .sub-menu {
|
||||
background-color: #3c4550;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.small-menu .main-navigation > ul > li.open {
|
||||
background-color: #353d46;
|
||||
}
|
||||
}
|
||||
|
||||
.gallery .overlay {
|
||||
background-color: #39424c;
|
||||
background-color: rgba(57, 66, 76, 0.9);
|
||||
}
|
||||
|
||||
.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #39424c;
|
||||
border-color: #39424c;
|
||||
}
|
||||
|
||||
a.btn-color {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-color:hover,
|
||||
.btn-color:focus,
|
||||
.btn-color:active,
|
||||
.btn-color.active,
|
||||
.open .dropdown-toggle.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #2e353d;
|
||||
background-image: none;
|
||||
border-color: #2e353d;
|
||||
}
|
||||
|
||||
.btn-color.disabled,
|
||||
.btn-color[disabled],
|
||||
fieldset[disabled] .btn-color,
|
||||
.btn-color.disabled:hover,
|
||||
.btn-color[disabled]:hover,
|
||||
fieldset[disabled] .btn-color:hover,
|
||||
.btn-color.disabled:focus,
|
||||
.btn-color[disabled]:focus,
|
||||
fieldset[disabled] .btn-color:focus,
|
||||
.btn-color.disabled:active,
|
||||
.btn-color[disabled]:active,
|
||||
fieldset[disabled] .btn-color:active,
|
||||
.btn-color.disabled.active,
|
||||
.btn-color[disabled].active,
|
||||
fieldset[disabled] .btn-color.active {
|
||||
background-color: #39424c;
|
||||
border-color: #39424c;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline {
|
||||
background-color: transparent;
|
||||
color: #39424c;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline:hover,
|
||||
.btn-color.btn-outline:focus,
|
||||
.btn-color.btn-outline:active,
|
||||
.btn-color.btn-outline.active {
|
||||
background-color: #39424c;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.color {
|
||||
color: #39424c;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle {
|
||||
color: #c4c6c9;
|
||||
border: 1px solid #39424c;
|
||||
background-color: #39424c;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle:hover {
|
||||
background-color: #444e5a;
|
||||
}
|
||||
|
||||
.slider-color .slider-selection {
|
||||
background-color: #39424c;
|
||||
}
|
||||
|
||||
.slider-color .slider-handle {
|
||||
box-shadow:
|
||||
rgba(0, 0, 0, 0.2) 0px 2px 5px,
|
||||
#39424c 0px 0px 0px 1px;
|
||||
}
|
||||
|
||||
.panel-color {
|
||||
border-color: #39424c;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading {
|
||||
color: #c4c6c9;
|
||||
background-color: #39424c;
|
||||
border-color: #39424c;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading + .panel-collapse .panel-body {
|
||||
border-top-color: #39424c;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading a {
|
||||
color: #c4c6c9;
|
||||
}
|
||||
|
||||
.panel-color > .panel-footer + .panel-collapse .panel-body {
|
||||
border-bottom-color: #39424c;
|
||||
}
|
||||
|
||||
.label-color {
|
||||
background-color: #39424c;
|
||||
}
|
||||
|
||||
.label-color[href]:hover,
|
||||
.label-color[href]:focus {
|
||||
background-color: #23282e;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #39424c;
|
||||
color: #c4c6c9;
|
||||
}
|
||||
|
||||
.bg-color a {
|
||||
color: #c4c6c9;
|
||||
}
|
||||
|
||||
.bg-color a:active,
|
||||
.bg-color a:focus,
|
||||
.bg-color a:hover {
|
||||
color: #a9adb1;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.bg-color .nav > li:hover > a,
|
||||
.bg-color .nav > li:focus > a,
|
||||
.bg-color .nav > li:active > a,
|
||||
.bg-color .nav > li.active > a,
|
||||
.bg-color .nav > li > a:hover,
|
||||
.bg-color .nav > li > a:focus {
|
||||
background-color: #323a43;
|
||||
}
|
||||
|
||||
.pagination > .active > a,
|
||||
.pagination > .active > span,
|
||||
.pagination > .active > a:hover,
|
||||
.pagination > .active > span:hover,
|
||||
.pagination > .active > a:focus,
|
||||
.pagination > .active > span:focus {
|
||||
border-color: #39424c;
|
||||
background-color: #39424c;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.progress-bar-color {
|
||||
background-color: #39424c;
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style {
|
||||
border-color: #39424c;
|
||||
background-color: #39424c;
|
||||
background-color: rgba(57, 66, 76, 0.9);
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#jqstooltip {
|
||||
background-color: #39424c;
|
||||
border-color: #39424c;
|
||||
}
|
||||
|
||||
#tooltip {
|
||||
background-color: #39424c;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tooltip:before {
|
||||
border-color: transparent #39424c transparent transparent;
|
||||
}
|
||||
|
||||
.jvectormap-label {
|
||||
border: solid 1px #39424c;
|
||||
background-color: #39424c;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin,
|
||||
.jvectormap-zoomout {
|
||||
background-color: #39424c;
|
||||
color: white;
|
||||
}
|
||||
@@ -0,0 +1,320 @@
|
||||
::-moz-selection {
|
||||
background: #4f5061;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #4f5061;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.loader:after {
|
||||
border: solid 1px transparent;
|
||||
border-top-color: #1582dc;
|
||||
border-left-color: #1582dc;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:focus,
|
||||
a:hover {
|
||||
color: #1166ad;
|
||||
}
|
||||
|
||||
.app > .header {
|
||||
background-color: #1582dc;
|
||||
}
|
||||
|
||||
.app > .header .brand {
|
||||
background-color: #147bd0;
|
||||
}
|
||||
|
||||
.app > .header .brand a,
|
||||
.app > .header .brand a:hover {
|
||||
color: rgba(219, 237, 252, 0.9);
|
||||
}
|
||||
|
||||
.app > .header .navbar-toggle,
|
||||
.app > .header .nav > li > a,
|
||||
.app > .header .bg-none {
|
||||
color: #dbedfc;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.header .nav > li > a:hover,
|
||||
.header .nav > li > a:focus,
|
||||
.header .nav .open > a,
|
||||
.header .nav .open > a:hover,
|
||||
.header .nav .open > a:focus {
|
||||
background-color: #1377c9;
|
||||
}
|
||||
}
|
||||
|
||||
.header .nav .dropdown-menu .open > a {
|
||||
background-color: #dcdff0;
|
||||
}
|
||||
|
||||
.header .open a.toggle-search,
|
||||
.header a.toggle-search:hover {
|
||||
background-color: #1377c9;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-color: #4f5061;
|
||||
color: #e2e4f6;
|
||||
}
|
||||
|
||||
.sidebar a,
|
||||
.sidebar .nav-title {
|
||||
color: #e2e4f6;
|
||||
}
|
||||
|
||||
.compact-menu .main-navigation > ul > li {
|
||||
border-bottom: 1px solid #4a4b5b;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul > li a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li:hover > a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.main-navigation > ul > li .sub-menu {
|
||||
background-color: #525365;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.small-menu .main-navigation > ul > li.open {
|
||||
background-color: #4a4b5b;
|
||||
}
|
||||
.small-menu .main-navigation .nav > li > .sub-menu .sub-menu {
|
||||
background-color: #4f5061;
|
||||
}
|
||||
}
|
||||
|
||||
.gallery .overlay {
|
||||
background-color: #4f5061;
|
||||
background-color: rgba(79, 80, 97, 0.9);
|
||||
}
|
||||
|
||||
.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #4f5061;
|
||||
border-color: #4f5061;
|
||||
}
|
||||
|
||||
a.btn-color {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-color:hover,
|
||||
.btn-color:focus,
|
||||
.btn-color:active,
|
||||
.btn-color.active,
|
||||
.open .dropdown-toggle.btn-color {
|
||||
color: #ffffff;
|
||||
background-color: #444453;
|
||||
background-image: none;
|
||||
border-color: #444453;
|
||||
}
|
||||
|
||||
.btn-color.disabled,
|
||||
.btn-color[disabled],
|
||||
fieldset[disabled] .btn-color,
|
||||
.btn-color.disabled:hover,
|
||||
.btn-color[disabled]:hover,
|
||||
fieldset[disabled] .btn-color:hover,
|
||||
.btn-color.disabled:focus,
|
||||
.btn-color[disabled]:focus,
|
||||
fieldset[disabled] .btn-color:focus,
|
||||
.btn-color.disabled:active,
|
||||
.btn-color[disabled]:active,
|
||||
fieldset[disabled] .btn-color:active,
|
||||
.btn-color.disabled.active,
|
||||
.btn-color[disabled].active,
|
||||
fieldset[disabled] .btn-color.active {
|
||||
background-color: #4f5061;
|
||||
border-color: #4f5061;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline {
|
||||
background-color: transparent;
|
||||
color: #4f5061;
|
||||
}
|
||||
|
||||
.btn-color.btn-outline:hover,
|
||||
.btn-color.btn-outline:focus,
|
||||
.btn-color.btn-outline:active,
|
||||
.btn-color.btn-outline.active {
|
||||
background-color: #4f5061;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.color {
|
||||
color: #4f5061;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle {
|
||||
color: #cacbd0;
|
||||
border: 1px solid #4f5061;
|
||||
background-color: #4f5061;
|
||||
}
|
||||
|
||||
#nestable2 .dd-handle:hover {
|
||||
background-color: #5a5c6f;
|
||||
}
|
||||
|
||||
.slider-color .slider-selection {
|
||||
background-color: #4f5061;
|
||||
}
|
||||
|
||||
.slider-color .slider-handle {
|
||||
box-shadow:
|
||||
rgba(0, 0, 0, 0.2) 0px 2px 5px,
|
||||
#4f5061 0px 0px 0px 1px;
|
||||
}
|
||||
|
||||
.panel-color {
|
||||
border-color: #4f5061;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading {
|
||||
color: #cacbd0;
|
||||
background-color: #4f5061;
|
||||
border-color: #4f5061;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading + .panel-collapse .panel-body {
|
||||
border-top-color: #4f5061;
|
||||
}
|
||||
|
||||
.panel-color > .panel-heading a {
|
||||
color: #cacbd0;
|
||||
}
|
||||
|
||||
.panel-color > .panel-footer + .panel-collapse .panel-body {
|
||||
border-bottom-color: #4f5061;
|
||||
}
|
||||
|
||||
.label-color {
|
||||
background-color: #4f5061;
|
||||
}
|
||||
|
||||
.label-color[href]:hover,
|
||||
.label-color[href]:focus {
|
||||
background-color: #383945;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #4f5061;
|
||||
color: #cacbd0;
|
||||
}
|
||||
|
||||
.bg-color a {
|
||||
color: #cacbd0;
|
||||
}
|
||||
|
||||
.bg-color a:active,
|
||||
.bg-color a:focus,
|
||||
.bg-color a:hover {
|
||||
color: #afb0b7;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.bg-color .nav > li:hover > a,
|
||||
.bg-color .nav > li:focus > a,
|
||||
.bg-color .nav > li:active > a,
|
||||
.bg-color .nav > li.active > a,
|
||||
.bg-color .nav > li > a:hover,
|
||||
.bg-color .nav > li > a:focus {
|
||||
background-color: #484959;
|
||||
}
|
||||
|
||||
.pagination > .active > a,
|
||||
.pagination > .active > span,
|
||||
.pagination > .active > a:hover,
|
||||
.pagination > .active > span:hover,
|
||||
.pagination > .active > a:focus,
|
||||
.pagination > .active > span:focus {
|
||||
border-color: #4f5061;
|
||||
background-color: #4f5061;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.progress-bar-color {
|
||||
background-color: #4f5061;
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style {
|
||||
border-color: #4f5061;
|
||||
background-color: #4f5061;
|
||||
background-color: rgba(79, 80, 97, 0.9);
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#jqstooltip {
|
||||
background-color: #4f5061;
|
||||
border-color: #4f5061;
|
||||
}
|
||||
|
||||
#tooltip {
|
||||
background-color: #4f5061;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tooltip:before {
|
||||
border-color: transparent #4f5061 transparent transparent;
|
||||
}
|
||||
|
||||
.jvectormap-label {
|
||||
border: solid 1px #4f5061;
|
||||
background-color: #4f5061;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin,
|
||||
.jvectormap-zoomout {
|
||||
background-color: #4f5061;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.app.small-menu .sidebar .main-navigation > ul > li .leftMenu__twoIcon {
|
||||
display: inline;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li a {
|
||||
padding: 5px 20px !important;
|
||||
color: #59595a;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu li.active,
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li a:hover {
|
||||
background-color: #f1f2f9;
|
||||
}
|
||||
.small-menu .main-navigation .nav > li > .sub-menu .sub-menu {
|
||||
background-color: transparent;
|
||||
}
|
||||
.app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a + .sub-menu > li > a {
|
||||
padding: 5px 20px 5px 40px !important;
|
||||
}
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul li.active a,
|
||||
.app:not(.small-menu) .main-navigation > ul > li > ul li a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.main-navigation > ul > li .sub-menu .sub-menu {
|
||||
background-color: #57586b;
|
||||
}
|
||||
|
||||
.small-menu .main-navigation > ul > li .sub-menu .sub-menu {
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -0,0 +1,202 @@
|
||||
.clearfix {
|
||||
zoom: 1;
|
||||
}
|
||||
.clearfix:before,
|
||||
.clearfix:after {
|
||||
content: "";
|
||||
display: table;
|
||||
}
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
::-moz-selection {
|
||||
background: #800080;
|
||||
color: #fff;
|
||||
text-shadow: none;
|
||||
}
|
||||
::selection {
|
||||
background: #800080;
|
||||
color: #fff;
|
||||
text-shadow: none;
|
||||
}
|
||||
a {
|
||||
color: #800080;
|
||||
text-decoration: none;
|
||||
-webkit-transition: all 300ms;
|
||||
-moz-transition: all 300ms;
|
||||
-o-transition: all 300ms;
|
||||
transition: all 300ms;
|
||||
}
|
||||
a:active,
|
||||
.sidebar a:active,
|
||||
a:focus,
|
||||
.sidebar a:focus,
|
||||
a:hover,
|
||||
.sidebar a:hover {
|
||||
color: #4d004d;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
.loader:after {
|
||||
border: solid 1px transparent;
|
||||
border-top-color: #800080;
|
||||
border-left-color: #800080;
|
||||
}
|
||||
.tags ul li a {
|
||||
border: 1px solid #800080;
|
||||
}
|
||||
.btn-color {
|
||||
color: #fff;
|
||||
background-color: #800080;
|
||||
border-color: #800080;
|
||||
}
|
||||
.btn-color:hover,
|
||||
.btn-color:focus,
|
||||
.btn-color:active,
|
||||
.btn-color.active,
|
||||
.open .dropdown-toggle.btn-color {
|
||||
color: #fff;
|
||||
background-color: #670066;
|
||||
border-color: #670066;
|
||||
}
|
||||
.btn-color.btn-outline {
|
||||
background-color: transparent;
|
||||
color: #800080;
|
||||
}
|
||||
.btn-color.btn-outline:hover,
|
||||
.btn-color.btn-outline:focus,
|
||||
.btn-color.btn-outline:active,
|
||||
.btn-color.btn-outline.active {
|
||||
background-color: #800080;
|
||||
color: #fff;
|
||||
}
|
||||
a.btn-color {
|
||||
color: #fff;
|
||||
}
|
||||
.btn-color:active,
|
||||
.btn-color.active,
|
||||
.open .dropdown-toggle.btn-color {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-color.disabled,
|
||||
.btn-color[disabled],
|
||||
fieldset[disabled] .btn-color,
|
||||
.btn-color.disabled:hover,
|
||||
.btn-color[disabled]:hover,
|
||||
fieldset[disabled] .btn-color:hover,
|
||||
.btn-color.disabled:focus,
|
||||
.btn-color[disabled]:focus,
|
||||
fieldset[disabled] .btn-color:focus,
|
||||
.btn-color.disabled:active,
|
||||
.btn-color[disabled]:active,
|
||||
fieldset[disabled] .btn-color:active,
|
||||
.btn-color.disabled.active,
|
||||
.btn-color[disabled].active,
|
||||
fieldset[disabled] .btn-color.active {
|
||||
background-color: #800080;
|
||||
border-color: #800080;
|
||||
}
|
||||
.color,
|
||||
.drop-cap {
|
||||
color: #800080;
|
||||
}
|
||||
.drop-cap.boxed {
|
||||
background-color: #800080;
|
||||
color: #fff;
|
||||
}
|
||||
.portfolio-item .overlay-hover {
|
||||
background-color: #800080;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.overlay-colored-1,
|
||||
.overlay-colored-2,
|
||||
.overlay-colored-3,
|
||||
.overlay-colored-4,
|
||||
.overlay-colored-5,
|
||||
.overlay-colored-6,
|
||||
.overlay-colored-7,
|
||||
.overlay-colored-8,
|
||||
.overlay-colored-9 {
|
||||
position: absolute;
|
||||
z-index: 1000;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
}
|
||||
.overlay-colored-1 {
|
||||
background-color: rgba(128, 0, 128, 0.1);
|
||||
}
|
||||
.overlay-colored-2 {
|
||||
background-color: rgba(128, 0, 128, 0.2);
|
||||
}
|
||||
.overlay-colored-3 {
|
||||
background-color: rgba(128, 0, 128, 0.3);
|
||||
}
|
||||
.overlay-colored-4 {
|
||||
background-color: rgba(128, 0, 128, 0.4);
|
||||
}
|
||||
.overlay-colored-5 {
|
||||
background-color: rgba(128, 0, 128, 0.5);
|
||||
}
|
||||
.overlay-colored-6 {
|
||||
background-color: rgba(128, 0, 128, 0.6);
|
||||
}
|
||||
.overlay-colored-7 {
|
||||
background-color: rgba(128, 0, 128, 0.7);
|
||||
}
|
||||
.overlay-colored-8 {
|
||||
background-color: rgba(128, 0, 128, 0.8);
|
||||
}
|
||||
.overlay-colored-9 {
|
||||
background-color: rgba(128, 0, 128, 0.9);
|
||||
}
|
||||
header.open,
|
||||
header.sticky,
|
||||
header.fixed-sticky {
|
||||
background-color: rgba(128, 0, 128, 0.95);
|
||||
}
|
||||
.header .navigation > .nav > li > a:hover,
|
||||
.header .navigation > .nav > li.active > a,
|
||||
.nav .open > a {
|
||||
color: rgba(255, 102, 255, 0.95);
|
||||
}
|
||||
.header .dropdown-menu > .active > a,
|
||||
.header .dropdown-menu > .active > a:hover,
|
||||
.header .dropdown-menu > .active > a:focus,
|
||||
.header .dropdown-menu > li > a:hover,
|
||||
.header .dropdown-menu > li > a:focus {
|
||||
color: #800080;
|
||||
background-color: transparent;
|
||||
}
|
||||
nav.filter a.active,
|
||||
nav.filter a:active,
|
||||
nav.filter a:focus,
|
||||
nav.filter a:hover {
|
||||
color: #800080;
|
||||
}
|
||||
.pagination > .active > a,
|
||||
.pagination > .active > span,
|
||||
.pagination > .active > a:hover,
|
||||
.pagination > .active > span:hover,
|
||||
.pagination > .active > a:focus,
|
||||
.pagination > .active > span:focus {
|
||||
border-color: #800080;
|
||||
background-color: #800080;
|
||||
color: #fff;
|
||||
}
|
||||
.bg-color {
|
||||
background-color: #800080;
|
||||
}
|
||||
.progress-bar-color {
|
||||
background-color: #d0dbec;
|
||||
}
|
||||
.heading-font {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
Reference in New Issue
Block a user