Commit d5e329fffd8455dbe7a3e8d36ee0dab82e57725c

Authored by 梁灏
1 parent 74ef0a6a

fixed #4162

src/components/tree/node.vue
... ... @@ -3,7 +3,7 @@
3 3 <ul :class="classes">
4 4 <li>
5 5 <span :class="arrowClasses" @click="handleExpand">
6   - <Icon v-if="showArrow" type="md-arrow-dropright"></Icon>
  6 + <Icon v-if="showArrow" type="ios-arrow-forward"></Icon>
7 7 <Icon v-if="showLoading" type="ios-loading" class="ivu-load-loop"></Icon>
8 8 </span>
9 9 <Checkbox
... ...
src/styles/components/tree.less
... ... @@ -43,7 +43,7 @@
43 43 display: inline-block;
44 44 i {
45 45 transition: all @transition-time @ease-in-out;
46   - font-size: @font-size-large;
  46 + font-size: @font-size-base;
47 47 vertical-align: middle;
48 48 }
49 49 &-open{
... ...