Files
zulip/web/styles/portico/dev_help.css
Shubham Padia c3fbe00eb0 help: Add default page to display on /help when help server is off.
We've copied the button and error colors from portico_signin.css. We did
not want the new HTML file to depend on portico_signin.css since they
are unrelated. In addition, having those colors diverge over time might
not be an issue.

We make the raw mode work with /help and /help/ both.

See https://chat.zulip.org/#narrow/channel/19-documentation/topic/edits.20not.20appearing.20with.20vagrant/near/2257442

Co-authored-by: Alya Abbott <alya@zulip.com>
2025-09-26 11:41:10 -07:00

45 lines
974 B
CSS

.dev-help-page {
.white-box {
width: 40%;
margin: 0 auto;
}
.dev-help-header {
text-align: center;
margin-bottom: 1em;
}
.invalid-path-error {
color: hsl(1.1deg 44.7% 50.4%);
font-weight: 400;
display: block;
text-align: center;
margin-top: 1em;
}
.dev-help-actions {
margin-top: 1.5em;
display: flex;
justify-content: center;
gap: 5px;
.dev-help-action-button {
display: inline-block;
font-weight: 400;
color: hsl(170deg 41% 52%);
border: 1px solid hsl(170deg 41% 52%);
border-radius: 4px;
padding: 6px 12px;
transition:
color 0.3s ease,
border-color 0.3s ease;
&:hover {
color: hsl(156deg 62% 61%);
border-color: hsl(156deg 62% 61%);
}
}
}
}