Skip to content

Commit dc8a2f8

Browse files
committed
Fix wellspring icons
1 parent d48915a commit dc8a2f8

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

styles/css/global/form.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@
178178
.fu-icon__container {
179179
display: flex;
180180
padding: 2px;
181+
justify-content: center;
182+
align-items: center;
183+
text-align: center;
181184
}
182185

183186
.fu-icon__badge {

templates/feature/invoker/wellspring-manager-application.hbs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<div class="flexrow">
1010
{{#each global as |active|}}
1111
{{#with (lookup @root.wellsprings @key)}}
12-
<a class="wellspring fu-icon--s {{icon}} {{#unless active}}inactive{{/unless}}"
12+
<a class="wellspring fu-icon__container {{#unless active}}inactive{{/unless}}"
1313
data-tooltip="{{name}}" data-action="toggleWellspring"
1414
data-wellspring="{{@key}}">
15+
<i class="fu-icon--s {{icon}}"></i>
1516
</a>
1617
{{/with}}
1718
{{/each}}
@@ -27,9 +28,10 @@
2728
<div class="flexrow">
2829
{{#each active.wellsprings as |active|}}
2930
{{#with (lookup @root.wellsprings @key)}}
30-
<a class="wellspring fu-icon--s {{icon}} {{#unless active}}inactive{{/unless}}"
31+
<a class="wellspring fu-icon__container {{#unless active}}inactive{{/unless}}"
3132
data-tooltip="{{name}}" data-action="toggleWellspring"
3233
data-wellspring="{{@key}}">
34+
<i class="fu-icon--s {{icon}}"></i>
3335
</a>
3436
{{/with}}
3537
{{/each}}
@@ -45,9 +47,10 @@
4547
<div class="flexrow">
4648
{{#each current.wellsprings as |active|}}
4749
{{#with (lookup @root.wellsprings @key)}}
48-
<a class="wellspring fu-icon--s {{icon}} {{#unless active}}inactive{{/unless}}"
50+
<a class="wellspring fu-icon__container {{#unless active}}inactive{{/unless}}"
4951
data-tooltip="{{name}}" data-action="toggleWellspring"
5052
data-wellspring="{{@key}}">
53+
<i class="fu-icon--s {{icon}}"></i>
5154
</a>
5255
{{/with}}
5356
{{/each}}

0 commit comments

Comments
 (0)