Skip to content

Commit

Permalink
fix(theme): update unresolved smb style
Browse files Browse the repository at this point in the history
  • Loading branch information
shenjunjian committed Sep 13, 2024
1 parent 6f5f9e9 commit cb3c0b4
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions examples/sites/demos/pc/app/tree/icons-composition-api.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { Tree as TinyTree } from '@opentiny/vue'
import { iconPutAway, iconExpand, iconRightO, iconEditorTable, iconFile } from '@opentiny/vue-icon'
const icon = iconRightO()
const shrinkIcon = iconPutAway()
const expandIcon = iconExpand()
const shrinkIcon = iconExpand()
const expandIcon = iconPutAway()
const tinyIconEditorTable = iconEditorTable()
const tinyIconFile = iconFile()
Expand Down
4 changes: 2 additions & 2 deletions examples/sites/demos/pc/app/tree/icons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export default {
data() {
return {
icon: iconRightO(),
shrinkIcon: iconPutAway(),
expandIcon: iconExpand(),
shrinkIcon: iconExpand(),
expandIcon: iconPutAway(),
tinyIconEditorTable: iconEditorTable(),
tinyIconFile: iconFile(),
data: [
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/transfer/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
display: inline-block;
box-sizing: border-box;
border-radius: var(--ti-transfer-panel-filter-border-radius);
border-bottom-color: #c2c2c2 !important;
border-bottom-color: #f0f0f0 !important;
padding-left: 24px;
padding-right: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/tree/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
.@{tree-node-prefix-cls}.is-current:not(.show-checkbox) > .@{tree-node-prefix-cls}__content {
.@{tree-node-prefix-cls}__content-box,
.@{tree-node-prefix-cls}__content-right {
background-color: var(--ti-tree-node-content-current-bg-color);
background-color: var(--ti-tree-node-highlight-bg-color);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/tree/vars.less
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
// 节点左内边距
--ti-tree-node-padding-left: var(--ti-common-space-4x);
// 节点高亮背景色
--ti-tree-node-highlight-bg-color: var(--ti-common-color-light);
--ti-tree-node-highlight-bg-color: var(--ti-base-text-color-2);
// 节点内容高度
--ti-tree-node-content-height: var(--ti-common-space-8x);
// 节点内容边框弧度
Expand Down
4 changes: 2 additions & 2 deletions packages/vue/src/cascader-node/src/pc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { $prefix, setup, h, $props, defineComponent } from '@opentiny/vue-common
import Checkbox from '@opentiny/vue-checkbox'
import Radio from '@opentiny/vue-radio'
import { isEqual } from '@opentiny/vue-renderless/common/object'
import { iconLoadingShadow, iconRightward, iconYes } from '@opentiny/vue-icon'
import { iconLoadingShadow, iconChevronRight, iconYes } from '@opentiny/vue-icon'
import type { PropType } from '@opentiny/vue-common'
import type { ICascaderNodeApi, ICascaderNodeRenderlessParams } from '@opentiny/vue-renderless/types/cascader-node.type'
import type { ICascaderPanelNode } from '@opentiny/vue-renderless/types/cascader-panel.type'
Expand All @@ -28,7 +28,7 @@ export default defineComponent({
TinyRadio: Radio,
IconYes: iconYes(),
IconLoading: iconLoadingShadow(),
IconChevronRight: iconRightward()
IconChevronRight: iconChevronRight()
},
inheritAttrs: false,
emits: ['expand', 'update:modelValue', 'expand-change', 'active-item-change', 'change'],
Expand Down
6 changes: 3 additions & 3 deletions packages/vue/src/cascader/src/pc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ import Scrollbar from '@opentiny/vue-scrollbar'
import CascaderPanel from '@opentiny/vue-cascader-panel'
import FilterBox from '@opentiny/vue-filter-box'
import Tooltip from '@opentiny/vue-tooltip'
import { iconClose, iconChevronDown, iconChevronUp, iconYes } from '@opentiny/vue-icon'
import { iconClose, IconTriangleDown, IconUpWard, iconYes } from '@opentiny/vue-icon'
import '@opentiny/vue-theme/cascader/index.less'

export default defineComponent({
Expand Down Expand Up @@ -259,8 +259,8 @@ export default defineComponent({
TinyFilterBox: FilterBox,
TinyCascaderPanel: CascaderPanel,
IconClose: iconClose(),
IconChevronDown: iconChevronDown(),
IconChevronUp: iconChevronUp(),
IconChevronDown: IconTriangleDown(),
IconChevronUp: IconUpWard(),
IconYes: iconYes(),
TinyTooltip: Tooltip
},
Expand Down

0 comments on commit cb3c0b4

Please sign in to comment.