@spark-hire/bootstrap-themes 0.8.0 → 0.8.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-hire/bootstrap-themes",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "Custom Bootstrap 4 Themes",
5
5
  "repository": {
6
6
  "type": "git",
package/scss/buttons.scss CHANGED
@@ -106,16 +106,12 @@
106
106
  @include button-variant($value, $value);
107
107
  @include button-svg($value);
108
108
  }
109
- }
110
109
 
111
- @each $color, $value in $colors {
112
110
  .btn-outline-#{$color} {
113
111
  @include button-outline-variant($value);
114
112
  @include button-outline-svg($value);
115
113
  }
116
- }
117
114
 
118
- @each $color, $value in $colors {
119
115
  .btn-link-#{$color} {
120
116
  color: $value;
121
117
 
@@ -123,6 +119,14 @@
123
119
  fill: $value;
124
120
  }
125
121
  }
122
+
123
+ .btn-link-#{$color}:hover {
124
+ color: lighten($value, 4%);
125
+
126
+ svg {
127
+ fill: lighten($value, 4%);
128
+ }
129
+ }
126
130
  }
127
131
 
128
132
  @each $color, $value in $theme-colors {
@@ -0,0 +1,9 @@
1
+ @for $i from 1 through 10 {
2
+ .line-clamp-#{$i} {
3
+ display: -webkit-inline-box;
4
+ -webkit-line-clamp: $i;
5
+ -webkit-box-orient: vertical;
6
+ overflow: hidden;
7
+ word-break: break-word;
8
+ }
9
+ }
package/scss/shared.scss CHANGED
@@ -14,3 +14,4 @@
14
14
  @import "labels";
15
15
  @import "paragraph";
16
16
  @import "icons";
17
+ @import "line-clamp"