@spark-hire/bootstrap-themes 0.6.0 → 0.6.1

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/dark.html CHANGED
@@ -1431,7 +1431,7 @@
1431
1431
  </div>
1432
1432
 
1433
1433
  <script src="../node_modules/jquery/dist/jquery.min.js"></script>
1434
- <script src="../node_modules/popper.js/dist/popper.min.js"></script>
1434
+ <script src="../node_modules/popper.js/dist/umd/popper.min.js"></script>
1435
1435
  <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
1436
1436
  </body>
1437
1437
  </html>
package/html/light.html CHANGED
@@ -1431,7 +1431,7 @@
1431
1431
  </div>
1432
1432
 
1433
1433
  <script src="../node_modules/jquery/dist/jquery.min.js"></script>
1434
- <script src="../node_modules/popper.js/dist/popper.min.js"></script>
1434
+ <script src="../node_modules/popper.js/dist/umd/popper.min.js"></script>
1435
1435
  <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
1436
1436
  </body>
1437
1437
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-hire/bootstrap-themes",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Custom Bootstrap 4 Themes",
5
5
  "repository": {
6
6
  "type": "git",
@@ -2,6 +2,7 @@
2
2
  @import "~bootstrap/scss/mixins";
3
3
 
4
4
  $enable-rounded: false;
5
+ $enable-shadows: true;
5
6
 
6
7
  $white: #fff;
7
8
 
@@ -73,16 +74,18 @@ $theme-colors: map-merge(
73
74
  $theme-colors
74
75
  );
75
76
 
77
+ $btn-transition: color .175s ease-in-out, background-color .175s ease-in-out, border-color .175s ease-in-out, box-shadow .175s ease-in-out !default;
78
+
76
79
  $link-color: $blue;
77
80
  $link-decoration: none;
78
- $link-hover-color: darken($link-color, 15%);
81
+ $link-hover-color: lighten($link-color, 13%);
79
82
  $link-hover-decoration: none;
80
83
 
81
84
  $border-width: 1px;
82
85
 
83
86
  $font-size-base: 1rem;
84
87
  $font-size-lg: 1.10rem;
85
- $font-size-sm: .95rem;
88
+ $font-size-sm: .9rem;
86
89
 
87
90
  $input-btn-padding-y-sm: .35rem;
88
91
  $input-btn-padding-x-sm: .6rem;
@@ -0,0 +1,5 @@
1
+ .alert-dismissible {
2
+ .close {
3
+ @include transition($btn-transition);
4
+ }
5
+ }
@@ -6,3 +6,7 @@
6
6
  .btn-lg {
7
7
  @include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);
8
8
  }
9
+
10
+ .btn svg {
11
+ fill: $body-color;
12
+ }
@@ -8,6 +8,8 @@ $dark: $gray-1000;
8
8
  $body-bg: $gray-900;
9
9
  $body-color: $gray-100;
10
10
 
11
+ $app-bg: $gray-900;
12
+
11
13
  $input-bg: $gray-400;
12
14
  $input-disabled-bg: $gray-600;
13
15
 
@@ -23,7 +25,6 @@ $input-focus-color: $input-color;
23
25
  $input-placeholder-color: $gray-700;
24
26
 
25
27
  $border-color: rgba(0,0,0,.25);
26
- @debug $border-color;
27
28
 
28
29
  $modal-content-bg: $gray-700;
29
30
  $modal-header-border-color: $gray-600;
@@ -67,4 +68,8 @@ $progress-bg: $gray-1000;
67
68
 
68
69
  $table-color: $gray-100;
69
70
 
71
+ $dropdown-bg: $gray-100;
72
+ $dropdown-link-hover-bg: $gray-200;
73
+ $dropdown-border-color: transparent;
74
+
70
75
  @import "~bootstrap/scss/variables";
@@ -0,0 +1,4 @@
1
+ .dropdown-toggle::after {
2
+ margin-left: .5rem;
3
+ vertical-align: .1em;
4
+ }
package/scss/fonts.scss CHANGED
@@ -8,4 +8,8 @@ html, body {
8
8
  h1, h2, h3, h4, h5 {
9
9
  font-family: 'Roboto', sans-serif;
10
10
  font-weight: 700;
11
+ }
12
+
13
+ small {
14
+ font-size: $font-size-sm;
11
15
  }
@@ -1,6 +1,7 @@
1
1
  @import "../global_variables";
2
2
 
3
3
  $light: $gray-200;
4
+ $app-bg: #e5e5e5;
4
5
 
5
6
  $emphasized-link-hover-darken-percentage: 90%;
6
7
 
package/scss/link.scss ADDED
@@ -0,0 +1,3 @@
1
+ a:hover {
2
+ @include transition($btn-transition);
3
+ }
package/scss/nav.scss ADDED
@@ -0,0 +1,15 @@
1
+ .nav-tabs {
2
+ .nav-link {
3
+ border-width: 3px 0 0 0;
4
+ @include transition($btn-transition);
5
+ }
6
+
7
+ .nav-link.active, .nav-item.show .nav-link {
8
+ border-color: $primary transparent $border-color transparent;
9
+ border-width: 3px 0 1px 0;
10
+ }
11
+ }
12
+
13
+ .nav-link svg {
14
+ fill: $body-color;
15
+ }
package/scss/shared.scss CHANGED
@@ -1,3 +1,9 @@
1
1
  @import "fonts";
2
- @import "buttons";
2
+ @import "button";
3
3
  @import "pagination";
4
+ @import "table";
5
+ @import "link";
6
+ @import "alert";
7
+ @import "link";
8
+ @import "nav";
9
+ @import "dropdowns";
@@ -0,0 +1,7 @@
1
+ .table {
2
+ tbody tr:last-child {
3
+ td, th {
4
+ border-bottom: 1px solid $border-color;
5
+ }
6
+ }
7
+ }