mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
ae60352c16
no issue - disables user email input field when using Ghost OAuth because email addresses are synced from the central identity management system - adds a link to my.ghost.org account management when using Ghost OAuth and viewing your own user
29 lines
542 B
CSS
29 lines
542 B
CSS
/* Alerts
|
|
/* ---------------------------------------------------------- */
|
|
|
|
.gh-box {
|
|
position: relative;
|
|
padding: 12px 10px 14px 40px;
|
|
border: 1px solid var(--lightgrey);
|
|
border-left-width: 5px;
|
|
color: var(--midgrey);
|
|
line-height: 1.4em;
|
|
letter-spacing: 0.2px;
|
|
background: #fff;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.gh-box i:first-of-type {
|
|
position: absolute;
|
|
top: 13px;
|
|
left: 15px;
|
|
font-size: 2.1rem;
|
|
}
|
|
|
|
.gh-box-info {
|
|
border-left-color: var(--blue);
|
|
}
|
|
.gh-box-info i {
|
|
color: var(--blue);
|
|
}
|