forked from github/dataease
Merge pull request #915 from dataease/pr@dev@fix_style_tapd
Pr@dev@fix style tapd
This commit is contained in:
commit
044969a2ca
@ -234,7 +234,7 @@ export default {
|
|||||||
right: 178px;
|
right: 178px;
|
||||||
top: 8px;
|
top: 8px;
|
||||||
background: red;
|
background: red;
|
||||||
color: var(--TextActive);
|
color: var(--TextActive, #fff);
|
||||||
border-radius: 17px;
|
border-radius: 17px;
|
||||||
padding: 4px 7px;
|
padding: 4px 7px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
@ -633,5 +633,38 @@ div:focus {
|
|||||||
background: #38393a !important;
|
background: #38393a !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blackTheme .el-message-box__content {
|
||||||
|
color:#F2F6FC;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blackTheme .el-message-box__btns {
|
||||||
|
.el-button--default:not(.el-button--primary) {
|
||||||
|
background-color: #171b22 ;
|
||||||
|
color: #2681ff;
|
||||||
|
}
|
||||||
|
.el-button--primary {
|
||||||
|
color: #21333b;
|
||||||
|
background-color: #2681ff;
|
||||||
|
border-color: #2681ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blackTheme .vue-treeselect__menu {
|
||||||
|
border: 1px solid var(--TableBorderColor, #cfcfcf);
|
||||||
|
background: var(--MainBG, #fff);
|
||||||
|
}
|
||||||
|
|
||||||
|
.blackTheme .vue-treeselect__option:not(.vue-treeselect__option--highlight) {
|
||||||
|
color: #606266;
|
||||||
|
}
|
||||||
|
.blackTheme .vue-treeselect__option--highlight {
|
||||||
|
color: #2681ff;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blackTheme .el-table__body tr.current-row > td {
|
||||||
|
background-color: #324f62;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<el-button v-show="!showSearchInput" class="de-icon" icon="el-icon-search" circle size="mini" @click="showSearchWidget" />
|
<el-button v-show="!showSearchInput" class="de-icon" icon="el-icon-search" circle size="mini" @click="showSearchWidget" />
|
||||||
<div v-show="showSearchInput" class="de-input">
|
<div v-show="showSearchInput" class="de-input">
|
||||||
<el-input v-model="key">
|
<el-input v-model="key" class="main-area-input">
|
||||||
<el-button slot="append" icon="el-icon-close" @click="closeSearchWidget" />
|
<el-button slot="append" icon="el-icon-close" @click="closeSearchWidget" />
|
||||||
</el-input>
|
</el-input>
|
||||||
</div>
|
</div>
|
||||||
|
@ -166,7 +166,8 @@
|
|||||||
group="dimension"
|
group="dimension"
|
||||||
animation="300"
|
animation="300"
|
||||||
:move="onMove"
|
:move="onMove"
|
||||||
style="width:100%;height: 100%;margin:0 10px;border-radius: 4px;overflow-x: auto;display: flex;align-items: center;background-color: white;"
|
class="theme-drag"
|
||||||
|
style="width:100%;height: 100%;margin:0 10px;border-radius: 4px;overflow-x: auto;display: flex;align-items: center;"
|
||||||
@end="end2"
|
@end="end2"
|
||||||
>
|
>
|
||||||
<transition-group class="list-group" :data-value="$t('panel.drag_here')">
|
<transition-group class="list-group" :data-value="$t('panel.drag_here')">
|
||||||
@ -715,7 +716,7 @@ export default {
|
|||||||
padding: 8px;
|
padding: 8px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
border: 1px solid #E6E6E6;
|
border: 1px solid var(--TableBorderColor, #E6E6E6);;
|
||||||
.field-content-text {
|
.field-content-text {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -727,7 +728,7 @@ export default {
|
|||||||
.field-content-right {
|
.field-content-right {
|
||||||
border-left: none;
|
border-left: none;
|
||||||
color: #9ea6b2;
|
color: #9ea6b2;
|
||||||
border: 1px solid #E6E6E6;
|
border: 1px solid var(--TableBorderColor, #E6E6E6);
|
||||||
width: 0%;
|
width: 0%;
|
||||||
max-width: 0%;
|
max-width: 0%;
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -764,7 +765,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.filter-dialog-tabs {
|
.filter-dialog-tabs {
|
||||||
border: 1px solid #E6E6E6;
|
border: 1px solid var(--TableBorderColor, #E6E6E6);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
>>> div.el-tabs__content {
|
>>> div.el-tabs__content {
|
||||||
@ -867,4 +868,8 @@ export default {
|
|||||||
content: attr(data-value);
|
content: attr(data-value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blackTheme .theme-drag {
|
||||||
|
background-color: var(--MainBG, #fff);
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user