mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
add delete undo styles
use less right padding better styling, fix padding issues no special color for undo nav entry fix fallback width use class for button
This commit is contained in:
parent
d48b672791
commit
ef028fcd9a
1 changed files with 35 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue