mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
* jekyll redirect from * Organizations rev (#262) * Organizations revisions initial commit. * API doc updates * Fix absolute link causing build failure. * Add import to org article, and downstream order changes. * Bitwarden 101 videos: 1st steps toward proliferating these throughout /help. * Added 'Create Your Account' article, which references B101 Videos. * About SSO redirect & promote importing for orgs up the list * Create Org FAQs & trim Feature FAQs accordingly. * Image for Org FAQs * Move 'About the Business Portal' to Orgs category, and re-order accordingly. * Final edits. * Dchoi/bootstrap upgrade (#264) * bootstrap 4 upgrade and cleanup update gulp tasks * bootstrap package updates * renaming file convention * general outline of help outline * bitwarden help cleanup * article cleanup * article general styling complete * bootstrap help page upgrades * sidebar updates * Dchoi/bootstrap upgrade (#267) * bootstrap 4 upgrade and cleanup update gulp tasks * bootstrap package updates * renaming file convention * general outline of help outline * bitwarden help cleanup * article cleanup * article general styling complete * bootstrap help page upgrades * sidebar updates * toc dynamic and more updates * fix callout conditions * sidebar collapse functionality added * sidebar header toggle functionality * sidebar article fixes * Update sidebar.html Fix sidebar Release Notes link. * Update releasenotes.md Remove unnecessary category tag. * Delete release-notes.md Remove unnecessary category. * Update why-choose-bitwarden-for-your-team.md Test table image differentiation * Update why-choose-bitwarden-for-your-team.md Second image differentiation test * removed links from category breadcrumb and replaced with badges Co-authored-by: fred_the_tech_writer <69817454+fschillingeriv@users.noreply.github.com>
57 lines
915 B
SCSS
57 lines
915 B
SCSS
.callout {
|
|
padding: 1rem;
|
|
margin: 1rem 0;
|
|
border: 1px solid $border-color;
|
|
border-left-width: 4px;
|
|
border-radius: $border-radius;
|
|
background-color: #fafafa;
|
|
|
|
> *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
h5 {
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
&.callout-primary, &.callout-info {
|
|
border-left-color: $primary;
|
|
|
|
h5 {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
&.callout-default {
|
|
border-left-color: $border-color;
|
|
|
|
h5 {
|
|
color: $border-color;
|
|
}
|
|
}
|
|
|
|
&.callout-danger {
|
|
border-left-color: $danger;
|
|
|
|
h5 {
|
|
color: $danger;
|
|
}
|
|
}
|
|
|
|
&.callout-success {
|
|
border-left-color: $success;
|
|
|
|
h5 {
|
|
color: $success;
|
|
}
|
|
}
|
|
|
|
&.callout-warning {
|
|
border-left-color: $warning;
|
|
|
|
h5 {
|
|
color: $warning;
|
|
}
|
|
}
|
|
}
|