uikit 3.9.5-dev.1c5ab040d → 3.9.5-dev.3bc3deb62
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/CHANGELOG.md +12 -2
- package/README.md +4 -4
- package/dist/css/uikit-core-rtl.css +17 -6
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +17 -6
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +17 -6
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +17 -6
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +1 -1
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +58 -64
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +58 -64
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/core/cover.js +1 -2
- package/src/js/core/drop.js +3 -2
- package/src/js/core/img.js +38 -53
- package/src/js/core/sticky.js +6 -1
- package/src/js/util/dom.js +2 -5
- package/src/less/components/cover.less +1 -2
- package/src/less/components/link.less +6 -3
- package/src/less/components/search.less +31 -6
- package/src/less/components/utility.less +6 -0
- package/src/less/theme/search.less +6 -0
- package/src/scss/components/cover.scss +1 -2
- package/src/scss/components/link.scss +6 -3
- package/src/scss/components/search.scss +23 -6
- package/src/scss/components/utility.scss +6 -0
- package/src/scss/mixins-theme.scss +12 -0
- package/src/scss/mixins.scss +12 -0
- package/src/scss/theme/search.scss +6 -0
- package/src/scss/variables-theme.scss +3 -0
- package/src/scss/variables.scss +3 -0
- package/tests/search.html +1 -1
package/src/scss/mixins.scss
CHANGED
|
@@ -992,11 +992,19 @@
|
|
|
992
992
|
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
993
993
|
}
|
|
994
994
|
|
|
995
|
+
.uk-search-navbar .uk-search-input:focus {
|
|
996
|
+
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
997
|
+
}
|
|
998
|
+
|
|
995
999
|
.uk-search-large .uk-search-input {
|
|
996
1000
|
background-color: $inverse-search-large-background;
|
|
997
1001
|
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
998
1002
|
}
|
|
999
1003
|
|
|
1004
|
+
.uk-search-large .uk-search-input:focus {
|
|
1005
|
+
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1000
1008
|
//
|
|
1001
1009
|
// Toggle
|
|
1002
1010
|
//
|
|
@@ -1525,14 +1533,18 @@
|
|
|
1525
1533
|
@mixin hook-search-default-input(){}
|
|
1526
1534
|
@mixin hook-search-default-input-focus(){}
|
|
1527
1535
|
@mixin hook-search-navbar-input(){}
|
|
1536
|
+
@mixin hook-search-navbar-input-focus(){}
|
|
1528
1537
|
@mixin hook-search-large-input(){}
|
|
1538
|
+
@mixin hook-search-large-input-focus(){}
|
|
1529
1539
|
@mixin hook-search-toggle(){}
|
|
1530
1540
|
@mixin hook-search-toggle-hover(){}
|
|
1531
1541
|
@mixin hook-search-misc(){}
|
|
1532
1542
|
@mixin hook-inverse-search-default-input(){}
|
|
1533
1543
|
@mixin hook-inverse-search-default-input-focus(){}
|
|
1534
1544
|
@mixin hook-inverse-search-navbar-input(){}
|
|
1545
|
+
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
1535
1546
|
@mixin hook-inverse-search-large-input(){}
|
|
1547
|
+
@mixin hook-inverse-search-large-input-focus(){}
|
|
1536
1548
|
@mixin hook-inverse-search-toggle(){}
|
|
1537
1549
|
@mixin hook-inverse-search-toggle-hover(){}
|
|
1538
1550
|
@mixin hook-section(){}
|
|
@@ -38,12 +38,16 @@ $search-default-focus-border: $global-primary-background
|
|
|
38
38
|
|
|
39
39
|
// @mixin hook-search-navbar-input(){}
|
|
40
40
|
|
|
41
|
+
// @mixin hook-search-navbar-input-focus(){}
|
|
42
|
+
|
|
41
43
|
|
|
42
44
|
// Large modifiers
|
|
43
45
|
// ========================================================================
|
|
44
46
|
|
|
45
47
|
// @mixin hook-search-large-input(){}
|
|
46
48
|
|
|
49
|
+
// @mixin hook-search-large-input-focus(){}
|
|
50
|
+
|
|
47
51
|
|
|
48
52
|
// Toggle
|
|
49
53
|
// ========================================================================
|
|
@@ -68,8 +72,10 @@ $inverse-search-default-background: transparent !default;
|
|
|
68
72
|
// @mixin hook-inverse-search-default-input-focus(){}
|
|
69
73
|
|
|
70
74
|
// @mixin hook-inverse-search-navbar-input(){}
|
|
75
|
+
// @mixin hook-inverse-search-navbar-input-focus(){}
|
|
71
76
|
|
|
72
77
|
// @mixin hook-inverse-search-large-input(){}
|
|
78
|
+
// @mixin hook-inverse-search-large-input-focus(){}
|
|
73
79
|
|
|
74
80
|
// @mixin hook-inverse-search-toggle(){}
|
|
75
81
|
// @mixin hook-inverse-search-toggle-hover(){}
|
|
@@ -836,16 +836,19 @@ $search-default-padding-horizontal: 10px !default;
|
|
|
836
836
|
$search-default-background: transparent !default;
|
|
837
837
|
$search-default-focus-background: darken($search-default-background, 5%) !default;
|
|
838
838
|
$search-default-icon-width: $global-control-height !default;
|
|
839
|
+
$search-default-icon-padding: 0 !default;
|
|
839
840
|
$search-navbar-width: 400px !default;
|
|
840
841
|
$search-navbar-height: 40px !default;
|
|
841
842
|
$search-navbar-background: transparent !default;
|
|
842
843
|
$search-navbar-font-size: $global-large-font-size !default;
|
|
843
844
|
$search-navbar-icon-width: 40px !default;
|
|
845
|
+
$search-navbar-icon-padding: 0 !default;
|
|
844
846
|
$search-large-width: 500px !default;
|
|
845
847
|
$search-large-height: 80px !default;
|
|
846
848
|
$search-large-background: transparent !default;
|
|
847
849
|
$search-large-font-size: $global-2xlarge-font-size !default;
|
|
848
850
|
$search-large-icon-width: 80px !default;
|
|
851
|
+
$search-large-icon-padding: 0 !default;
|
|
849
852
|
$search-toggle-color: $global-muted-color !default;
|
|
850
853
|
$search-toggle-hover-color: $global-color !default;
|
|
851
854
|
$inverse-search-color: $inverse-global-color !default;
|
package/src/scss/variables.scss
CHANGED
|
@@ -834,16 +834,19 @@ $search-default-padding-horizontal: 10px !default;
|
|
|
834
834
|
$search-default-background: $global-muted-background !default;
|
|
835
835
|
$search-default-focus-background: darken($search-default-background, 5%) !default;
|
|
836
836
|
$search-default-icon-width: $global-control-height !default;
|
|
837
|
+
$search-default-icon-padding: 0 !default;
|
|
837
838
|
$search-navbar-width: 400px !default;
|
|
838
839
|
$search-navbar-height: 40px !default;
|
|
839
840
|
$search-navbar-background: transparent !default;
|
|
840
841
|
$search-navbar-font-size: $global-large-font-size !default;
|
|
841
842
|
$search-navbar-icon-width: 40px !default;
|
|
843
|
+
$search-navbar-icon-padding: 0 !default;
|
|
842
844
|
$search-large-width: 500px !default;
|
|
843
845
|
$search-large-height: 80px !default;
|
|
844
846
|
$search-large-background: transparent !default;
|
|
845
847
|
$search-large-font-size: $global-2xlarge-font-size !default;
|
|
846
848
|
$search-large-icon-width: 80px !default;
|
|
849
|
+
$search-large-icon-padding: 0 !default;
|
|
847
850
|
$search-toggle-color: $global-muted-color !default;
|
|
848
851
|
$search-toggle-hover-color: $global-color !default;
|
|
849
852
|
$inverse-search-color: $inverse-global-color !default;
|
package/tests/search.html
CHANGED