Skip to content

Commit

Permalink
Admonitions attempt.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinguericke committed Jul 5, 2024
1 parent b84a720 commit ceaf90c
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 19 deletions.
3 changes: 2 additions & 1 deletion eLearning/playground-site-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ Each datasource is set up in a similar way, but there are some key differences.

![Exclusive RegEx for a datasource](../../static/images/datasource-exclusive-regex.png "Datasource exclusive RegEx")

> [!NOTE]
>
> In many cases, key datasource configurations can be found in the advanced view. Toggle **Advanced** on to view these settings.
{:.info}

#### Index pipelines

Expand Down
63 changes: 45 additions & 18 deletions lib/public/global-training.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,23 +132,6 @@ pre code p {
font-family: Consolas, Menlo, Monaco, source-code-pro, Courier New, monospace;
}

blockquote {
background: var(--dark-teal);
margin-left: -1.75rem;
margin-right: 1.75rem;
margin-top: 0;
padding-bottom: 0;
padding-left: 1.42188rem;
padding-right: 0;
padding-top: 0;
margin-bottom: 1.75rem;
font-size: 1.00rem;
line-height: 1.75rem;
color: var(--white);
font-style: italic;
border-left: 0.32813rem solid hsla(0, 0%, 0%, 0.9);
}

button {
background-color: rgba(197, 37, 116, 1.0);
border: none;
Expand Down Expand Up @@ -216,4 +199,48 @@ a:active {

a:hover {
border-bottom-width: 2px;
}
}


blockquote {
@extend .alert;
@extend .alert-primary;
@extend .pb-0;
font-size:15px;
}

blockquote.success {
@extend .alert-success;
}
blockquote.success p:before {
content: "✓ Success ";
font-weight:bold;
font-size:16px;
}

blockquote.danger {
@extend .alert-danger;
}
blockquote.danger p:before {
content: "⊠ Danger ";
font-weight:bold;
font-size:16px;
}

blockquote.warning {
@extend .alert-warning;
}
blockquote.warning p:before {
content: "⚠ Warning ";
font-weight:bold;
font-size:16px;
}

blockquote.info {
@extend .alert-info;
}
blockquote.info p:before {
content: "ⓘ Further Information ";
font-weight:bold;
font-size:16px;
}

0 comments on commit ceaf90c

Please sign in to comment.