This repository was archived by the owner on Jan 27, 2025. It is now read-only.
File tree 3 files changed +24
-7
lines changed
3 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 23
23
:icon-tooltip-label =" iconTooltipLabel"
24
24
:has-separator =" hasSeparator"
25
25
:label =" label"
26
+ :image =" image"
26
27
/>
27
28
</router-link >
28
29
<component
44
45
:icon-tooltip-label =" iconTooltipLabel"
45
46
:has-separator =" hasSeparator"
46
47
:label =" label"
48
+ :image =" image"
47
49
/>
48
50
</component >
49
51
<slot />
@@ -131,6 +133,10 @@ export default {
131
133
type: Boolean ,
132
134
default: false ,
133
135
},
136
+ image: {
137
+ type: String ,
138
+ default: null ,
139
+ },
134
140
},
135
141
136
142
computed: {
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div class =" sb-sidebar-link-inner" >
3
3
<SbAvatar v-if =" hasAvatar" v-bind =" avatar" />
4
+ <img
5
+ v-else-if =" image"
6
+ :src =" image"
7
+ width =" 22"
8
+ height =" 22"
9
+ class =" sb-sidebar-sidebar-icon"
10
+ />
4
11
5
- <SbIcon v-else-if =" hasIcon " :size =" iconSize" :name =" icon" />
12
+ <SbIcon v-else-if =" icon " :size =" iconSize" :name =" icon" />
6
13
7
14
<div v-if =" hasSeparator" class =" sb-separator" ></div >
8
15
@@ -77,16 +84,16 @@ export default {
77
84
type: Boolean ,
78
85
default: false ,
79
86
},
87
+ image: {
88
+ type: String ,
89
+ default: null ,
90
+ },
80
91
},
81
92
82
93
computed: {
83
94
hasAvatar () {
84
95
return this .avatar !== null
85
96
},
86
-
87
- hasIcon () {
88
- return this .icon
89
- },
90
97
},
91
98
}
92
99
</script >
Original file line number Diff line number Diff line change 158
158
.sb-sidebar-item--child {
159
159
margin : 1px 0 0 ;
160
160
161
+ & :first-of-type {
162
+ padding-left : 37px ;
163
+ }
164
+
161
165
& .sb-sidebar-item--active {
162
166
.sb-sidebar-link {
163
167
background-color : #373f57 ;
164
168
}
165
169
}
166
170
167
171
.sb-sidebar-link {
168
- padding-left : 32px ;
169
172
170
173
& :hover {
171
174
background-color : #373f57 ;
193
196
@include activeItemState ();
194
197
}
195
198
196
- .sb-icon {
199
+ .sb-icon ,
200
+ .sb-sidebar-sidebar-icon {
197
201
margin-right : 12px ;
198
202
}
199
203
You can’t perform that action at this time.
0 commit comments