@spark-hire/bootstrap-themes 0.7.14 → 0.7.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/html/light.html CHANGED
@@ -948,7 +948,13 @@
948
948
  <div class="bs-component">
949
949
  <div class="alert alert-dismissible alert-danger">
950
950
  <button type="button" class="close" data-dismiss="alert">&times;</button>
951
- <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
951
+ <strong>
952
+ <svg id="glyphicons-basic" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="mr-1" width="20">
953
+ <path id="circle-info" d="M16,4A12,12,0,1,0,28,16,12.01312,12.01312,0,0,0,16,4Zm2.42529,10.91565L16.6,21h1.25958a.5.5,0,0,1,.48505.62134l-.25,1A.50007.50007,0,0,1,17.60962,23H14a1.40763,1.40763,0,0,1-1.42529-1.91565L14.4,15h-.75958a.5.5,0,0,1-.48505-.62134l.25-1A.49994.49994,0,0,1,13.89038,13H17A1.40763,1.40763,0,0,1,18.42529,14.91565Zm.14435-3.33337A.5.5,0,0,1,18.07642,12H15.59021a.5.5,0,0,1-.49316-.58228l.33331-2A.5.5,0,0,1,15.92358,9h2.48621a.5.5,0,0,1,.49316.58228Z"/>
954
+ </svg>
955
+ Oh snap!
956
+ </strong>
957
+ <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
952
958
  </div>
953
959
  </div>
954
960
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-hire/bootstrap-themes",
3
- "version": "0.7.14",
3
+ "version": "0.7.15",
4
4
  "description": "Custom Bootstrap 4 Themes",
5
5
  "repository": {
6
6
  "type": "git",
package/scss/alert.scss CHANGED
@@ -3,3 +3,12 @@
3
3
  @include transition($btn-transition);
4
4
  }
5
5
  }
6
+
7
+ @each $color,
8
+ $value in $theme-colors {
9
+ .alert.alert-#{$color} {
10
+ svg {
11
+ fill: theme-color-level($color, 6);
12
+ }
13
+ }
14
+ }