diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-11-06 15:44:18 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-01-21 12:04:03 +0100 |
commit | 0f1a756eae0d59b6b3db36cbea36602d8ec385b9 (patch) | |
tree | 0d3acb871eecbd1a9f05fbfdff7f852ab8bae130 /install/ui/less/dialog.less | |
parent | f0b42ed06000e7c6a8a72bbbdb0673018af8a58b (diff) | |
download | freeipa.git-0f1a756eae0d59b6b3db36cbea36602d8ec385b9.tar.gz freeipa.git-0f1a756eae0d59b6b3db36cbea36602d8ec385b9.tar.xz freeipa.git-0f1a756eae0d59b6b3db36cbea36602d8ec385b9.zip |
Use font awesome glyph for dialog close button
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/less/dialog.less')
-rw-r--r-- | install/ui/less/dialog.less | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/install/ui/less/dialog.less b/install/ui/less/dialog.less index 94b18e55..10f07a68 100644 --- a/install/ui/less/dialog.less +++ b/install/ui/less/dialog.less @@ -57,17 +57,21 @@ } .rcue-button-close { - background-image: url("../img/dialog-button-close.png"); - width: 25px; - height: 25px; - background-repeat: no-repeat; - background-position: center; - display: inline-block; - margin-top: -4px; - margin-right: -6px; + position: absolute; top: 15px; right: 19px; + display: inline-block; + + .fa; + + &:before { + content: @fa-var-times; + } + + &:hover { + text-decoration: none; + } } } |