blue-web 1.14.2 → 1.15.0
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/dist/merged.scss +28 -20
- package/dist/style.css +145 -104
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_bootstrap-variables.scss +3 -3
- package/dist/styles/_buttons.scss +14 -14
- package/dist/styles/_menu-item.scss +2 -0
- package/dist/styles/_page-header.scss +2 -2
- package/dist/styles/_tabs.scss +6 -0
- package/package.json +2 -2
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.
|
|
2
|
+
* Blue Web v1.15.0 (https://bruegmann.github.io/blue-web)
|
|
3
3
|
* Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -33,9 +33,9 @@ $h4-font-size: $font-size-base * 1.125 !default;
|
|
|
33
33
|
$h5-font-size: $font-size-base * 1.1 !default;
|
|
34
34
|
$h6-font-size: $font-size-base !default;
|
|
35
35
|
|
|
36
|
-
$border-radius: 0.
|
|
37
|
-
$border-radius-lg:
|
|
38
|
-
$border-radius-sm: 0.
|
|
36
|
+
$border-radius: 0.7rem !default;
|
|
37
|
+
$border-radius-lg: 1rem !default;
|
|
38
|
+
$border-radius-sm: 0.5rem !default;
|
|
39
39
|
|
|
40
40
|
$custom-checkbox-indicator-border-radius: $border-radius-sm !default;
|
|
41
41
|
|
|
@@ -11071,6 +11071,8 @@ body {
|
|
|
11071
11071
|
}
|
|
11072
11072
|
|
|
11073
11073
|
border: none;
|
|
11074
|
+
box-shadow: none;
|
|
11075
|
+
background-image: none;
|
|
11074
11076
|
|
|
11075
11077
|
&:focus {
|
|
11076
11078
|
box-shadow: none;
|
|
@@ -11288,8 +11290,8 @@ body {
|
|
|
11288
11290
|
}
|
|
11289
11291
|
|
|
11290
11292
|
.blue-header-title-image {
|
|
11291
|
-
width: 2rem;
|
|
11292
|
-
height: 2rem;
|
|
11293
|
+
width: var(--blue-header-title-image-width, var(--blue-header-title-image-size, 2rem));
|
|
11294
|
+
height: var(--blue-header-title-image-height, var(--blue-header-title-image-size, 2rem));
|
|
11293
11295
|
}
|
|
11294
11296
|
|
|
11295
11297
|
.blue-search {
|
|
@@ -11750,6 +11752,11 @@ body {
|
|
|
11750
11752
|
);
|
|
11751
11753
|
|
|
11752
11754
|
.blue-btn-plain-#{$color} {
|
|
11755
|
+
&:not(:hover) {
|
|
11756
|
+
box-shadow: none;
|
|
11757
|
+
background-image: none;
|
|
11758
|
+
}
|
|
11759
|
+
|
|
11753
11760
|
@if $color == "light" {
|
|
11754
11761
|
$text-color: color-contrast($value);
|
|
11755
11762
|
}
|
|
@@ -11758,19 +11765,14 @@ body {
|
|
|
11758
11765
|
transparent,
|
|
11759
11766
|
transparent,
|
|
11760
11767
|
$text-color,
|
|
11761
|
-
$hover-background:
|
|
11762
|
-
$hover-border:
|
|
11763
|
-
$
|
|
11764
|
-
$active-
|
|
11765
|
-
|
|
11766
|
-
|
|
11767
|
-
|
|
11768
|
-
|
|
11769
|
-
),
|
|
11770
|
-
$active-color: color-contrast($active-background),
|
|
11771
|
-
$disabled-background: $value,
|
|
11772
|
-
$disabled-border: $value,
|
|
11773
|
-
$disabled-color: color-contrast($value)
|
|
11768
|
+
$hover-background: tint-color($value, 80%),
|
|
11769
|
+
$hover-border: tint-color($value, 80%),
|
|
11770
|
+
$hover-color: if($color == "light", color-contrast($value), shade-color($value, 60%)),
|
|
11771
|
+
$active-background: shade-color($bg, $btn-hover-bg-shade-amount),
|
|
11772
|
+
$active-border: shade-color($bg, $btn-hover-border-shade-amount),
|
|
11773
|
+
$disabled-background: transparent,
|
|
11774
|
+
$disabled-border: transparent,
|
|
11775
|
+
$disabled-color: $text-color
|
|
11774
11776
|
);
|
|
11775
11777
|
}
|
|
11776
11778
|
}
|
|
@@ -11778,7 +11780,7 @@ body {
|
|
|
11778
11780
|
@include color-mode(dark) {
|
|
11779
11781
|
@each $color, $value in $theme-colors {
|
|
11780
11782
|
$bg: shade-color($value, 80%);
|
|
11781
|
-
$text-color: $value;
|
|
11783
|
+
$text-color: tint-color($value, 40%);
|
|
11782
11784
|
|
|
11783
11785
|
.blue-btn-plain-#{$color} {
|
|
11784
11786
|
@if $color == "dark" {
|
|
@@ -11858,10 +11860,16 @@ body {
|
|
|
11858
11860
|
}
|
|
11859
11861
|
|
|
11860
11862
|
.blue-tab {
|
|
11863
|
+
// Unsetting to solve issues in Safari
|
|
11864
|
+
width: unset;
|
|
11865
|
+
height: unset;
|
|
11866
|
+
border-radius: unset;
|
|
11867
|
+
|
|
11861
11868
|
position: relative;
|
|
11862
11869
|
order: 0;
|
|
11863
11870
|
cursor: pointer;
|
|
11864
11871
|
user-select: none;
|
|
11872
|
+
-webkit-appearance: none;
|
|
11865
11873
|
appearance: none;
|
|
11866
11874
|
}
|
|
11867
11875
|
|