diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-02-08 22:13:36 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-02-08 22:13:36 +0100 |
commit | ca8a25172e1b209b2c70230a9701ea3606e0030d (patch) | |
tree | e7990d6335779e6eeb105ed7f5623695863c5a15 /view/theme | |
parent | 72c30deb645abaa12d03b49aeb157486501dc3ce (diff) | |
download | volse-hubzilla-ca8a25172e1b209b2c70230a9701ea3606e0030d.tar.gz volse-hubzilla-ca8a25172e1b209b2c70230a9701ea3606e0030d.tar.bz2 volse-hubzilla-ca8a25172e1b209b2c70230a9701ea3606e0030d.zip |
quattro: added delete buttons to groups and contacts
Diffstat (limited to 'view/theme')
-rwxr-xr-x | view/theme/quattro/quattro.less | 18 | ||||
-rwxr-xr-x | view/theme/quattro/style.css | 26 |
2 files changed, 44 insertions, 0 deletions
diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 475e16997..3bc01a839 100755 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -321,12 +321,30 @@ aside { #contact-edit-drop-link { float: right; margin-right: 20px; + .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + opacity: 0.3; + } + .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + } } /* group member */ .group-delete-wrapper { float: right; margin-right: 50px; + .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + opacity: 0.3; + } + .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + } } #group-members { margin-top: 20px; diff --git a/view/theme/quattro/style.css b/view/theme/quattro/style.css index deb2cd62f..f05dbefa8 100755 --- a/view/theme/quattro/style.css +++ b/view/theme/quattro/style.css @@ -568,11 +568,37 @@ aside #profiles-menu { float: right; margin-right: 20px; } +#contact-edit-drop-link .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; +} +#contact-edit-drop-link .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; +} /* group member */ .group-delete-wrapper { float: right; margin-right: 50px; } +.group-delete-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; +} +.group-delete-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; +} #group-members { margin-top: 20px; padding: 10px; |