Update screen 13, grid color #64
@ -62,9 +62,11 @@
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
.tui-grid-table {
|
||||
|
||||
.tui-grid-cell-header,
|
||||
.tui-grid-cell-has-input .tui-grid-cell-content {
|
||||
padding: 8px;
|
||||
@ -76,6 +78,14 @@
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.tui-grid-cell {
|
||||
&:last-child {
|
||||
input[type=checkbox] {
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.treeGrid {
|
||||
@ -155,6 +165,7 @@
|
||||
width: auto !important;
|
||||
|
||||
.tui-grid-table-container {
|
||||
|
||||
// width: 100% !important;
|
||||
.tui-grid-table {
|
||||
// width: 100% !important;
|
||||
@ -166,6 +177,13 @@
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
.tui-grid-layer-editing {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"tui-grid-border-vertical-color"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
&-summary-area,
|
||||
@ -285,6 +303,7 @@
|
||||
#{$theme},
|
||||
"ant-btn-primary-color"
|
||||
);
|
||||
|
||||
.radio-mark {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
@ -294,6 +313,7 @@
|
||||
#{$theme},
|
||||
"arow-line-btn-bg-color"
|
||||
);
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
@ -311,6 +331,33 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tui-grid-cell-content {
|
||||
|
||||
input[type='text'],
|
||||
input[type='password'] {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"v-input-fieldset-color"
|
||||
);
|
||||
background: map-deep-get($config,
|
||||
#{$theme},
|
||||
"v-input-backgroundColor"
|
||||
);
|
||||
border-radius: 4px;
|
||||
color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"tui-grid-cell-color"
|
||||
);
|
||||
}
|
||||
|
||||
&.tui-grid-layer-editing {
|
||||
background:map-deep-get($config,
|
||||
#{$theme},
|
||||
"tui-grid-cell-insert-color"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-cell {
|
||||
@ -395,14 +442,14 @@
|
||||
background-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"tui-grid-cell-insert-color"
|
||||
);
|
||||
) !important;
|
||||
}
|
||||
|
||||
&.row-modify {
|
||||
background-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"tui-grid-cell-modify-color"
|
||||
);
|
||||
) !important;
|
||||
}
|
||||
|
||||
&.row-removed {
|
||||
@ -497,6 +544,7 @@
|
||||
|
||||
&-tree-button-expand {
|
||||
z-index: 9999;
|
||||
|
||||
.tui-grid-btn-tree {
|
||||
i {
|
||||
width: 16px;
|
||||
@ -516,6 +564,7 @@
|
||||
|
||||
&-tree-button-collapse {
|
||||
z-index: 9999;
|
||||
|
||||
.tui-grid-btn-tree {
|
||||
i {
|
||||
width: 16px;
|
||||
|
@ -113,7 +113,7 @@ $config: (
|
||||
tui-grid-cell-color: #FFFFFFD9,
|
||||
tui-grid-cell-insert-color: #2B2111,
|
||||
tui-grid-cell-selected-color: #0A224F,
|
||||
tui-grid-cell-modify-color: #13636c,
|
||||
tui-grid-cell-modify-color: #2B2111,
|
||||
tui-grid-cell-removed-color: #2A1215,
|
||||
tui-grid-cell-disabled-color: rgb(170, 170, 170),
|
||||
tui-grid-cell-hover-backgroundColor: #2d4571,
|
||||
@ -263,7 +263,7 @@ $config: (
|
||||
tui-grid-cell-color: #000000E0,
|
||||
tui-grid-cell-insert-color: #FFFBE6,
|
||||
tui-grid-cell-selected-color: #E6F4FF,
|
||||
tui-grid-cell-modify-color: #e6f5f7,
|
||||
tui-grid-cell-modify-color: #FFFBE6,
|
||||
tui-grid-cell-removed-color: #FFF1F0,
|
||||
tui-grid-cell-hover-backgroundColor: #f5f5f5,
|
||||
v-tabs-items-border-color: #0000000F,
|
||||
|
@ -301,7 +301,7 @@ export default {
|
||||
// console.log('startEditing2...')
|
||||
if (this.editorGrid && e.rowKey >= 0) {
|
||||
this.editorStartKey = e.rowKey;
|
||||
this.gridInstance.invoke('startEditing', e.rowKey, e.columnName);
|
||||
this.gridInstance.invoke('startEditing', e.rowKey, e.columnName, 'row-modify');
|
||||
this.$emit(
|
||||
'getRowsData',
|
||||
this.gridInstance.invoke('getRow', e.rowKey),
|
||||
|
@ -238,7 +238,13 @@ export default {
|
||||
type: Object,
|
||||
require: false,
|
||||
default: () => {
|
||||
return {};
|
||||
return {
|
||||
selectTimeValue1: "00 : 00", // selectBoxTime에 필요한 prop
|
||||
selectTimeValueList1: [], // selectBoxTime에 필요한 prop
|
||||
selectTimeValue2: "01 : 00", // selectBoxTime에 필요한 prop
|
||||
selectTimeValueList2: [], // selectBoxTime에 필요한 prop
|
||||
minInterval: 10,
|
||||
};
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -20,7 +20,7 @@
|
||||
item-value="value"
|
||||
solo
|
||||
outlined
|
||||
:menu-props="{ auto: true, offsetY: true }"
|
||||
:menu-props="{ top: false, offsetY: true }"
|
||||
:hide-details="true"
|
||||
:class="['v-select__custom', customClass]"
|
||||
:disabled="disabled"
|
||||
|
Reference in New Issue
Block a user