Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
bb21f6ed
Unverified
Commit
bb21f6ed
authored
May 21, 2020
by
takumi9942
Committed by
GitHub
May 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: resize Font Awesome icon (#1897)
parent
5c2c312c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
admin-navigation.vue
client/components/admin/admin-navigation.vue
+3
-1
nav-sidebar.vue
client/themes/default/components/nav-sidebar.vue
+2
-1
No files found.
client/components/admin/admin-navigation.vue
View file @
bb21f6ed
...
...
@@ -95,7 +95,9 @@
:class='(navItem === current) ? "blue" : ""'
@click='selectItem(navItem)'
)
v-list-item-avatar(size='24', tile): v-icon
{{
navItem
.
icon
}}
v-list-item-avatar(size='24', tile)
v-icon(v-if='navItem.icon.match(/fa[a-z] fa-/)', size='19')
{{
navItem
.
icon
}}
v-icon(v-else)
{{
navItem
.
icon
}}
v-list-item-title
{{
navItem
.
label
}}
.py-2.clickable(
v-else-if='navItem.kind === "divider"'
...
...
client/themes/default/components/nav-sidebar.vue
View file @
bb21f6ed
...
...
@@ -20,7 +20,8 @@
:rel='item.y === `externalblank` ? `noopener` : ``'
)
v-list-item-avatar(size='24', tile)
v-icon
{{
item
.
c
}}
v-icon(v-if='item.c.match(/fa[a-z] fa-/)', size='19')
{{
item
.
c
}}
v-icon(v-else)
{{
item
.
c
}}
v-list-item-title
{{
item
.
l
}}
v-divider.my-2(v-else-if='item.k === `divider`')
v-subheader.pl-4(v-else-if='item.k === `header`')
{{
item
.
l
}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment