summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/hbactest.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-11-05 19:21:57 +0100
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:03 +0100
commitc4abe3a2d9741be55ee37f2d8857c4110d32f113 (patch)
tree8866ec4d5e06bca139176342e0c2bbff98c15ea4 /install/ui/src/freeipa/hbactest.js
parent4bc1942f53bad0168f0a41d5783f038cf704873d (diff)
downloadfreeipa-c4abe3a2d9741be55ee37f2d8857c4110d32f113.tar.gz
freeipa-c4abe3a2d9741be55ee37f2d8857c4110d32f113.tar.xz
freeipa-c4abe3a2d9741be55ee37f2d8857c4110d32f113.zip
Replace icons with the ones from Font Awesome
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/hbactest.js')
-rw-r--r--install/ui/src/freeipa/hbactest.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/hbactest.js b/install/ui/src/freeipa/hbactest.js
index a127db9b7..93155b5ac 100644
--- a/install/ui/src/freeipa/hbactest.js
+++ b/install/ui/src/freeipa/hbactest.js
@@ -182,7 +182,7 @@ IPA.hbac.test_facet = function(spec) {
that.prev_button = IPA.button({
name: 'prev',
label: '@i18n:widget.prev',
- icon: 'prev-icon',
+ icon: 'fa-chevron-left',
click: function() {
if (!that.prev_button.hasClass('action-button-disabled')) {
that.prev();
@@ -197,7 +197,7 @@ IPA.hbac.test_facet = function(spec) {
that.next_button = IPA.button({
name: 'next',
label: '@i18n:widget.next',
- icon: 'next-icon',
+ icon: 'fa-chevron-right',
click: function() {
if (!that.next_button.hasClass('action-button-disabled')) {
that.next();
@@ -309,7 +309,7 @@ IPA.hbac.test_select_facet = function(spec) {
that.find_button = IPA.action_button({
name: 'find',
- icon: 'search-icon',
+ icon: 'fa-search',
click: function() {
that.find();
return false;
@@ -533,6 +533,7 @@ IPA.hbac.test_run_facet = function(spec) {
that.run_button = IPA.button({
name: 'run_test',
label: '@i18n:objects.hbactest.run_test',
+ icon: 'fa-gear',
click: function() {
if (!that.run_button.hasClass('action-button-disabled')) {
that.run();
@@ -605,7 +606,7 @@ IPA.hbac.test_run_facet = function(spec) {
that.prev_button = IPA.button({
name: 'prev',
label: '@i18n:widget.prev',
- icon: 'prev-icon',
+ icon: 'fa-chevron-left',
click: function() {
if (!that.prev_button.hasClass('action-button-disabled')) {
that.prev();
@@ -619,6 +620,7 @@ IPA.hbac.test_run_facet = function(spec) {
that.new_test_button = IPA.button({
name: 'new_test',
label: '@i18n:objects.hbactest.new_test',
+ icon: 'fa-repeat',
click: function() {
if (!that.new_test_button.hasClass('action-button-disabled')) {
that.new_test();