diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-09-16 18:28:39 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-09-16 18:28:39 +0200 |
commit | 129e2d3c321b89381e87a02f94af3b1a9d430d97 (patch) | |
tree | 3b0180e9530f41112441069c258005e93f1dc553 /core/css | |
parent | d2743e6ad66ba6827a0e49487ed83667671895c8 (diff) | |
parent | ef028fcd9aa36a52e75f0ac04b23385bf2e8348a (diff) | |
download | nextcloud-server-129e2d3c321b89381e87a02f94af3b1a9d430d97.tar.gz nextcloud-server-129e2d3c321b89381e87a02f94af3b1a9d430d97.zip |
Merge pull request #10896 from owncloud/undo-nav-entry
Add delete undo styles
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index b84bbaa8b42..32582a8026a 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -148,6 +148,41 @@ } +/* Deleted entries with undo button */ +#app-navigation .app-navigation-entry-deleted { + display: inline-block; + height: 44px; + width: 100%; +} + + #app-navigation .app-navigation-entry-deleted-description { + padding-left: 12px; + position: relative; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + display: inline-block; + width: 201px; /* fallback for IE8 */ + width: calc(100% - 49px); + line-height: 44px; + float: left; + } + + #app-navigation .app-navigation-entry-deleted-button { + margin: 0; + height: 44px; + width: 44px; + line-height: 44px; + border: 0; + display: inline-block; + background-color: transparent; + opacity: .5; + } + + #app-navigation .app-navigation-entry-deleted-button:hover { + opacity: 1; + } + /* counter and actions, legacy code */ #app-navigation .utils { position: absolute; |