[Icons] FF - requested icon changes (#2306)

* [Icons] Remove FA

* Icon changes
This commit is contained in:
Vincent Salucci 2022-02-03 10:25:38 -06:00 committed by Vincent Salucci
parent 357a646fde
commit cf2e5ebb12
6 changed files with 4 additions and 26 deletions

14
package-lock.json generated
View File

@ -22,7 +22,6 @@
"@bitwarden/jslib-common": "file:jslib/common", "@bitwarden/jslib-common": "file:jslib/common",
"core-js": "^3.11.0", "core-js": "^3.11.0",
"date-input-polyfill": "^2.14.0", "date-input-polyfill": "^2.14.0",
"font-awesome": "4.7.0",
"mousetrap": "^1.6.5", "mousetrap": "^1.6.5",
"ngx-toastr": "14.1.4", "ngx-toastr": "14.1.4",
"nord": "^0.2.1", "nord": "^0.2.1",
@ -4173,14 +4172,6 @@
} }
} }
}, },
"node_modules/font-awesome": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz",
"integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=",
"engines": {
"node": ">=0.10.3"
}
},
"node_modules/for-in": { "node_modules/for-in": {
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
@ -14411,11 +14402,6 @@
"integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==", "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==",
"dev": true "dev": true
}, },
"font-awesome": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz",
"integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM="
},
"for-in": { "for-in": {
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",

View File

@ -90,7 +90,6 @@
"@bitwarden/jslib-common": "file:jslib/common", "@bitwarden/jslib-common": "file:jslib/common",
"core-js": "^3.11.0", "core-js": "^3.11.0",
"date-input-polyfill": "^2.14.0", "date-input-polyfill": "^2.14.0",
"font-awesome": "4.7.0",
"mousetrap": "^1.6.5", "mousetrap": "^1.6.5",
"ngx-toastr": "14.1.4", "ngx-toastr": "14.1.4",
"nord": "^0.2.1", "nord": "^0.2.1",

View File

@ -19,7 +19,7 @@
</li> </li>
<li routerLinkActive="active"> <li routerLinkActive="active">
<a routerLink="generator" appA11yTitle="{{ 'passGen' | i18n }}"> <a routerLink="generator" appA11yTitle="{{ 'passGen' | i18n }}">
<i class="bwi bwi-generate bwi-2x" aria-hidden="true"></i>{{ "generator" | i18n }} <i class="bwi bwi-generate-f bwi-2x" aria-hidden="true"></i>{{ "generator" | i18n }}
</a> </a>
</li> </li>
<li routerLinkActive="active"> <li routerLinkActive="active">

View File

@ -464,7 +464,7 @@
appA11yTitle="{{ 'toggleOptions' | i18n }}" appA11yTitle="{{ 'toggleOptions' | i18n }}"
(click)="toggleUriOptions(u)" (click)="toggleUriOptions(u)"
> >
<i class="bwi bwi-lg bwi-cog-f" aria-hidden="true"></i> <i class="bwi bwi-lg bwi-cog" aria-hidden="true"></i>
</button> </button>
</div> </div>
</div> </div>

View File

@ -41,11 +41,7 @@
> >
<div class="row-main"> <div class="row-main">
<div class="icon"> <div class="icon">
<i <i class="bwi bwi-fw bwi-lg bwi-folder" aria-hidden="true"></i>
class="bwi bwi-fw bwi-lg"
aria-hidden="true"
[ngClass]="{ 'bwi-bw-folder-open-f': f.node.id, 'bwi-folder-open': !f.node.id }"
></i>
</div> </div>
<span class="text">{{ f.node.name }}</span> <span class="text">{{ f.node.name }}</span>
</div> </div>

View File

@ -130,10 +130,7 @@
> >
<div class="row-main"> <div class="row-main">
<div class="icon"> <div class="icon">
<i <i class="bwi bwi-fw bwi-lg bwi-folder"></i>
class="bwi bwi-fw bwi-lg"
[ngClass]="{ 'bwi-bw-folder-open-f': f.node.id, 'bwi-folder-open': !f.node.id }"
></i>
</div> </div>
<span class="text">{{ f.node.name }}</span> <span class="text">{{ f.node.name }}</span>
</div> </div>