@spark-hire/bootstrap-themes 0.9.13 → 1.0.0-ada-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-hire/bootstrap-themes",
3
- "version": "0.9.13",
3
+ "version": "1.0.0-ada-1",
4
4
  "description": "Custom Bootstrap 4 Themes",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@ $dark-blue: #213d55;
29
29
  $midnight-blue: #1a3043;
30
30
 
31
31
  $primary: $blue;
32
- $secondary: $gray-600;
32
+ $secondary: $gray-700;
33
33
  $info: $cyan;
34
34
  $success: #28a745;
35
35
  $warning: #ffc107;
@@ -100,7 +100,7 @@ $btn-line-height-lg: 1.4;
100
100
  $btn-disabled-opacity: .45;
101
101
  $btn-padding-y-sm: .75;
102
102
 
103
- $link-color: $blue;
103
+ $link-color: #155E9D;
104
104
  $link-decoration: none;
105
105
  $link-hover-color: lighten($link-color, 13%);
106
106
  $link-hover-decoration: none;
@@ -123,6 +123,7 @@ $modal-sm: 350px;
123
123
  $modal-content-box-shadow-xs: 0 0.15rem 0.6rem rgba(0, 0, 0, 0.4);
124
124
  $modal-content-box-shadow-sm-up: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.4);
125
125
 
126
+ $grays: (); // For some reason we started getting an error where these was undefined
126
127
 
127
128
  @import "~bootstrap/scss/functions";
128
129
  @import "~bootstrap/scss/mixins";
@@ -1,15 +1,15 @@
1
1
  @import "../global_variables";
2
2
 
3
- $gray-100: #f8f9fa;
4
- $gray-200: #e9ecef;
5
- $gray-300: #dee2e6;
6
- $gray-400: #ced4da;
7
- $gray-500: #adb5bd;
8
- $gray-600: #868e96;
9
- $gray-700: #495057;
10
- $gray-800: #343a40;
3
+ $gray-100: #F8F9FA;
4
+ $gray-200: #DEE3E6;
5
+ $gray-300: #CDD3D9;
6
+ $gray-400: #B6BFC7;
7
+ $gray-500: #96A0AA;
8
+ $gray-600: #6E7780;
9
+ $gray-700: #4F565D;
10
+ $gray-800: #343A40;
11
11
  $gray-900: #212529;
12
- $gray-1000: #1a1c20;
12
+ $gray-1000: #1A1C20;
13
13
 
14
14
  $light: $gray-800;
15
15
  $dark: $gray-1000;
@@ -81,3 +81,5 @@ $dropdown-link-hover-bg: $gray-200;
81
81
  $dropdown-border-color: transparent;
82
82
 
83
83
  $opacifiedBg: rgba(255,255,255,.25);
84
+
85
+ $link-color: #6ba3d5;
@@ -23,3 +23,11 @@
23
23
  .bg-light {
24
24
  background-color: $gray-700 !important;
25
25
  }
26
+
27
+ .btn-secondary {
28
+ @include button-variant($gray-300, $gray-300);
29
+ }
30
+
31
+ .form-control {
32
+ background-color: $gray-300;
33
+ }
package/scss/link.scss CHANGED
@@ -1,9 +1,9 @@
1
- a:hover {
2
- @include transition($btn-transition);
3
- }
4
-
5
1
  a:not([href]),
6
2
  a:not([href]):hover {
7
3
  color: inherit;
8
- text-decoration: none;
4
+ }
5
+
6
+ a:hover {
7
+ text-decoration: underline;
8
+ color: lighten($link-color, 8%);
9
9
  }