@steroidsjs/bootstrap 2.1.1 → 2.1.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.
@@ -59,7 +59,7 @@
59
59
 
60
60
  &_link {
61
61
  justify-content: flex-start;
62
- background-color: #fff;
62
+ background-color: transparent;
63
63
  }
64
64
 
65
65
  &__icon {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steroidsjs/bootstrap",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "Vladimir Kozhin <hello@kozhindev.com>",
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "@ckeditor/ckeditor5-react": "^3.0.2",
21
21
  "@steroidsjs/ckeditor5": "^27.0.2-rc.2",
22
- "@steroidsjs/core": "^2.1.1",
22
+ "@steroidsjs/core": "^2.2.8",
23
23
  "bootstrap": "^4.5.2",
24
24
  "lodash": "^4.17.20",
25
25
  "lodash-es": "^4.17.20",
@@ -1,52 +1,52 @@
1
- $primary: #651FFF;
2
- $primary-dark: #410FAD;
3
- $primary-light: #D8CCF7;
1
+ $primary: #651FFF !default;
2
+ $primary-dark: darken($primary, 25) !default;
3
+ $primary-light: lighten($primary, 50) !default;
4
4
 
5
- $secondary: #97A7C8;
6
- $secondary-dark: #596886;
7
- $secondary-light: #E3EAF9;
5
+ $secondary: #97A7C8 !default;
6
+ $secondary-dark: darken($secondary, 25) !default;
7
+ $secondary-light: lighten($secondary, 50) !default;
8
8
 
9
- $heading: #152536;
10
- $body: #68717A;
11
- $white: #FFFFFF;
9
+ $success: #64D03E !default;
10
+ $success-dark: darken($success, 25) !default;
11
+ $success-light: lighten($success, 50) !default;
12
12
 
13
- $success: #64D03E;
14
- $success-dark: #218838;
15
- $success-light: #ABED94;
13
+ $danger: #FF4557 !default;
14
+ $danger-dark: darken($danger, 25) !default;
15
+ $danger-light: lighten($danger, 50) !default;
16
16
 
17
- $danger: #FF4557;
18
- $danger-dark: #DA2839;
19
- $danger-light: #ff99a3;
17
+ $warning: #fad826 !default;
18
+ $warning-dark: darken($warning, 25) !default;
19
+ $warning-light: lighten($warning, 50) !default;
20
20
 
21
- $warning: #fad826;
22
- $warning-dark: #dcc131;
23
- $warning-light: #fff3b2;
21
+ $info: #39bbd8 !default;
22
+ $info-dark: darken($info, 25) !default;
23
+ $info-light: lighten($info, 50) !default;
24
24
 
25
- $info: #39bbd8;
26
- $info-dark: #2796af;
27
- $info-light: #a7efff;
25
+ $light: #f8f9fa !default;
26
+ $light-dark: darken($light, 25) !default;
27
+ $light-light: lighten($light, 50) !default;
28
28
 
29
- $light: #f8f9fa;
30
- $light-dark: #e2e6ea;
31
- $light-light: #fafafa;
29
+ $dark: #343a40 !default;
30
+ $dark-dark: darken($dark, 25) !default;
31
+ $dark-light: lighten($dark, 50) !default;
32
32
 
33
- $dark: #343a40;
34
- $dark-dark: #1a1c1e;
35
- $dark-light: #acacac;
33
+ $heading: #152536 !default;
34
+ $body: #68717A !default;
35
+ $white: #FFFFFF !default;
36
36
 
37
37
  $color-themes: () !default;
38
38
  $color-themes: map-merge(
39
- (
40
- "primary": ("color": $primary, "color-dark": $primary-dark, "color-light": $primary-light, "text-color": $white),
41
- "secondary": ("color": $secondary, "color-dark": $secondary-dark, "color-light": $secondary-light, "text-color": $white),
42
- "success": ("color": $success, "color-dark": $success-dark, "color-light": $success-light, "text-color": $white),
43
- "danger": ("color": $danger, "color-dark": $danger-dark, "color-light": $danger-light, "text-color": $white),
44
- "warning": ("color": $warning, "color-dark": $warning-dark, "color-light": $warning-light, "text-color": $dark),
45
- "info": ("color": $info, "color-dark": $info-dark, "color-light": $info-light, "text-color": $white),
46
- "light": ("color": $light, "color-dark": $light-dark, "color-light": $light-light, "text-color": $dark),
47
- "dark": ("color": $dark, "color-dark": $dark-dark, "color-light": $dark-light, "text-color": $white)
48
- ),
49
- $color-themes
39
+ (
40
+ "primary": ("color": $primary, "color-dark": $primary-dark, "color-light": $primary-light, "text-color": $white),
41
+ "secondary": ("color": $secondary, "color-dark": $secondary-dark, "color-light": $secondary-light, "text-color": $white),
42
+ "success": ("color": $success, "color-dark": $success-dark, "color-light": $success-light, "text-color": $white),
43
+ "danger": ("color": $danger, "color-dark": $danger-dark, "color-light": $danger-light, "text-color": $white),
44
+ "warning": ("color": $warning, "color-dark": $warning-dark, "color-light": $warning-light, "text-color": $dark),
45
+ "info": ("color": $info, "color-dark": $info-dark, "color-light": $info-light, "text-color": $white),
46
+ "light": ("color": $light, "color-dark": $light-dark, "color-light": $light-light, "text-color": $dark),
47
+ "dark": ("color": $dark, "color-dark": $dark-dark, "color-light": $dark-light, "text-color": $white)
48
+ ),
49
+ $color-themes
50
50
  );
51
51
 
52
52
  $grey-light: #D9D9D9;