0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fixed alignment of main title in Admin (#19911)

Ref DES-188

- the alignment of the main page title and the site title in the sidebar
was off
- also the top right dropdown's vertical positioning was off
This commit is contained in:
Peter Zimon 2024-03-25 12:23:24 +01:00 committed by GitHub
parent 3fa363f944
commit cda909fdb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 9 deletions

View file

@ -725,8 +725,9 @@
.gh-canvas-title.gh-post-title { .gh-canvas-title.gh-post-title {
max-width: 880px; max-width: 880px;
padding: 12px 0 8px; padding: 20px 0 12px;
font-size: 3.2rem; font-size: 3.2rem;
line-height: 1.2em;
overflow: inherit; overflow: inherit;
white-space: inherit; white-space: inherit;
} }

View file

@ -1059,7 +1059,7 @@ Dashboard Attribution */
} }
.gh-dashboard .gh-canvas-header.sticky .gh-dashboard-select { .gh-dashboard .gh-canvas-header.sticky .gh-dashboard-select {
top: 8px !important; top: 0px !important;
right: -6px !important; right: -6px !important;
} }
@ -3001,7 +3001,7 @@ Share publication modal */
margin: 32px 0 0 0; margin: 32px 0 0 0;
} }
.gh-share-links li { .gh-share-links li {
font-size: 1.5rem; font-size: 1.5rem;
font-weight: 600; font-weight: 600;
color: var(--darkgrey); color: var(--darkgrey);
@ -3056,7 +3056,7 @@ span.tip {
display: block; display: block;
} }
span.tip a { span.tip a {
text-decoration: underline; text-decoration: underline;
color: var(--midgrey); color: var(--midgrey);
} }

View file

@ -1444,14 +1444,13 @@
display: flex; display: flex;
align-items: center; align-items: center;
overflow: hidden; overflow: hidden;
margin: -8px 0 0 0; margin: -0.1em 0 0;
padding: 0; padding: 0 6px 0 0;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap;
font-size: 3.2rem; font-size: 3.2rem;
line-height: 1.3em; line-height: 1.25em;
font-weight: 700; font-weight: 700;
letter-spacing: -0.05em; letter-spacing: -0.025em;
/* match button height to avoid jump on navigation between screens*/ /* match button height to avoid jump on navigation between screens*/
min-height: 35px; min-height: 35px;
color: var(--black); color: var(--black);