mali-applet-ui 0.0.80 → 0.0.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -87,22 +87,27 @@ export default {
|
|
|
87
87
|
&.status-primary {
|
|
88
88
|
color: #ffffff;
|
|
89
89
|
background: $uni-color-primary;
|
|
90
|
+
border-color: $uni-color-primary;
|
|
90
91
|
}
|
|
91
92
|
&.status-success {
|
|
92
93
|
color: #ffffff;
|
|
93
94
|
background: $uni-color-success;
|
|
95
|
+
border-color: $uni-color-success;
|
|
94
96
|
}
|
|
95
97
|
&.status-info {
|
|
96
98
|
color: #ffffff;
|
|
97
99
|
background: #909399;
|
|
100
|
+
border-color: #909399;
|
|
98
101
|
}
|
|
99
102
|
&.status-warning {
|
|
100
103
|
color: #ffffff;
|
|
101
104
|
background: $uni-color-warning;
|
|
105
|
+
border-color: $uni-color-warning;
|
|
102
106
|
}
|
|
103
107
|
&.status-danger {
|
|
104
108
|
color: #ffffff;
|
|
105
109
|
background: $uni-color-error;
|
|
110
|
+
border-color: $uni-color-error;
|
|
106
111
|
}
|
|
107
112
|
}
|
|
108
113
|
&.is-round {
|
|
@@ -68,15 +68,12 @@ export default {
|
|
|
68
68
|
width: nth($spans, $index + 1);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
|
-
&:not(.is-vertical) {
|
|
72
|
-
border-bottom: 1px solid #e5e5e5;
|
|
73
|
-
}
|
|
74
71
|
&.is-vertical {
|
|
75
72
|
flex-direction: row;
|
|
76
73
|
border-bottom: 1px solid #e5e5e5;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
74
|
+
&:last-child {
|
|
75
|
+
border: 0;
|
|
76
|
+
}
|
|
80
77
|
}
|
|
81
78
|
}
|
|
82
79
|
</style>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<text>{{ name }}</text>
|
|
9
9
|
</slot>
|
|
10
10
|
</view>
|
|
11
|
-
<view v-if="showDot" class="ml-list-menu-item-dot">
|
|
11
|
+
<view v-if="showDot && dotNum" class="ml-list-menu-item-dot">
|
|
12
12
|
<text class="ml-list-menu-item-dot-num" :class="[dotStatus ? `status-${dotStatus}` : '']">{{ getDotNum(dotNum) }}</text>
|
|
13
13
|
</view>
|
|
14
14
|
<view v-if="suffixIcon && suffixIcon !== 'none'" class="ml-list-menu-item-right-icon">
|