mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Merge pull request #11502 from nextcloud/share-header
Fix share header text on small widths
This commit is contained in:
commit
b5bf83fb4c
3 changed files with 9 additions and 4 deletions
|
|
@ -165,6 +165,8 @@ thead {
|
|||
font-weight: 300;
|
||||
font-size: 11px;
|
||||
opacity: .57;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
#note-content {
|
||||
|
|
@ -186,4 +188,4 @@ thead {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,6 +65,8 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
overflow: hidden;
|
||||
|
||||
&:focus {
|
||||
opacity: .75;
|
||||
}
|
||||
|
|
@ -151,6 +153,7 @@
|
|||
flex: 0 0;
|
||||
flex-grow: 1;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#header-right, .header-right {
|
||||
|
|
@ -206,7 +209,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
/* show appname next to logo */
|
||||
/* only used for public share pages now as we have the app icons when logged in */
|
||||
.header-appname {
|
||||
color: var(--color-primary-text);
|
||||
font-size: 16px;
|
||||
|
|
@ -214,6 +217,8 @@
|
|||
margin: 0;
|
||||
padding: 0;
|
||||
padding-right: 5px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
/* do not show menu toggle on public share links as there is no menu */
|
||||
|
|
|
|||
|
|
@ -8,8 +8,6 @@ $footer-height: 65px;
|
|||
}
|
||||
|
||||
#header-secondary-action {
|
||||
margin-right: 13px;
|
||||
|
||||
ul li {
|
||||
min-width: 270px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue