Merge pull request #11502 from nextcloud/share-header

Fix share header text on small widths
This commit is contained in:
Morris Jobke 2018-10-01 15:19:01 +02:00 committed by GitHub
commit b5bf83fb4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View file

@ -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 {
}
}
}
}
}

View file

@ -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 */

View file

@ -8,8 +8,6 @@ $footer-height: 65px;
}
#header-secondary-action {
margin-right: 13px;
ul li {
min-width: 270px;
}