diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-04 16:44:26 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-04 16:44:26 -0400 |
commit | 002ad4ba16eb6cd0b2131f012b1a0a8b6b0b777f (patch) | |
tree | bb8013d457a03e3c6fed498f5b0d97dc870adf28 | |
parent | 086397d8a18391823e223eeee23e6ef04350b354 (diff) | |
download | nextcloud-server-002ad4ba16eb6cd0b2131f012b1a0a8b6b0b777f.tar.gz nextcloud-server-002ad4ba16eb6cd0b2131f012b1a0a8b6b0b777f.zip |
Tweak users delete notification
-rw-r--r-- | apps/files/css/files.css | 3 | ||||
-rw-r--r-- | core/css/styles.css | 1 | ||||
-rw-r--r-- | settings/js/users.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 317c0b8a1e2..7298a7ef6e6 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -88,5 +88,4 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #navigation>ul>li:first-child { background:url('%webroot%/core/img/breadcrumb-start.svg') no-repeat 12.5em 0px; width:12.5em; padding-right:1em; position:fixed; } #navigation>ul>li:first-child+li { padding-top:2.9em; } -#scanning-message{ top:40%; left:40%; position:absolute; display:none; } -#notification span { cursor:pointer; font-weight:bold; margin-left:1em; }
\ No newline at end of file +#scanning-message{ top:40%; left:40%; position:absolute; display:none; }
\ No newline at end of file diff --git a/core/css/styles.css b/core/css/styles.css index d032dcab2ea..52d6373d4e9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -109,6 +109,7 @@ label.infield { cursor: text !important; } .center { text-align: center; } #notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position:fixed; left:50%; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } +#notification span { cursor:pointer; font-weight:bold; margin-left:1em; } .action, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } .action { width: 16px; height: 16px; } diff --git a/settings/js/users.js b/settings/js/users.js index 79c95b3729e..43b726fbfc8 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -27,7 +27,7 @@ UserList={ $('tr').filterAttr( 'data-uid', UserList.deleteUid ).hide(); // Provide user with option to undo - $('#notification').text(t('files','undo delete user')); + $('#notification').html(t('users', 'deleted')+' '+uid+'<span class="undo">'+t('users', 'undo')+'</span>'); $('#notification').data('deleteuser',true); $('#notification').fadeIn(); |