@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/css/dark.css +1 -1
- package/css/dark.map +8 -2
- package/css/light.css +1 -1
- package/css/light.map +8 -2
- package/html/dark.html +1 -1
- package/html/light.html +1 -1
- package/package.json +1 -1
- package/scss/_global_variables.scss +5 -2
- package/scss/alert.scss +5 -0
- package/scss/{buttons.scss → button.scss} +4 -0
- package/scss/dark/_variables.scss +6 -1
- package/scss/dropdowns.scss +4 -0
- package/scss/fonts.scss +4 -0
- package/scss/light/_variables.scss +1 -0
- package/scss/link.scss +3 -0
- package/scss/nav.scss +15 -0
- package/scss/shared.scss +7 -1
- package/scss/table.scss +7 -0
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
|
@@ -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:
|
|
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: .
|
|
88
|
+
$font-size-sm: .9rem;
|
|
86
89
|
|
|
87
90
|
$input-btn-padding-y-sm: .35rem;
|
|
88
91
|
$input-btn-padding-x-sm: .6rem;
|
package/scss/alert.scss
ADDED
|
@@ -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";
|
package/scss/fonts.scss
CHANGED
package/scss/link.scss
ADDED
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