Skip to content

Commit c2a504f

Browse files
Merge branch 'development' into feature/BKL-73-RefactorSearchComponent
2 parents c76ced4 + 4d5b09c commit c2a504f

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@import "../../signifly-variables/colors.scss";
2+
3+
div.alert {
4+
> h3,
5+
> p {
6+
color: $loop-black;
7+
}
8+
&.alert-success {
9+
background-color: $loop-green-100;
10+
border-color: $loop-green-100;
11+
}
12+
}

web/profiles/custom/os2loop/themes/os2loop_theme/assets/bootstrap-custom/bootstrap-custom-index.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
@import "variables/variables.scss";
44
@import "typography/typography.scss";
55

6+
@import "alert/alert.scss";
67
@import "badge/badge.scss";
78
@import "button-group/button-group.scss";
89
@import "dropdown/dropdown.scss";

web/profiles/custom/os2loop/themes/os2loop_theme/assets/signifly-variables/colors.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,6 @@ $loop-red: #dc3545;
3232

3333
// System white
3434
$loop-white: #fff;
35+
36+
// System black
37+
$loop-black: #000;

web/profiles/custom/os2loop/themes/os2loop_theme/templates/field/field--os2loop-documents-info-box.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ highlight_color
3232
%}
3333
<div{{ attributes.addClass(classes) }}>
3434
{% for item in items %}
35-
<div{{ item.attributes }}>{{ item.content }}</div>
35+
<div {{ item.attributes.addClass('alert alert-success') }}>{{ item.content }}</div>
3636
{% endfor %}
3737
</div>

0 commit comments

Comments
 (0)