@coreui/coreui 5.0.0-beta.2 → 5.0.0-rc.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/README.md +1 -1
- package/dist/css/coreui-grid.css +1 -1
- package/dist/css/coreui-grid.css.map +1 -1
- package/dist/css/coreui-grid.min.css +1 -1
- package/dist/css/coreui-grid.min.css.map +1 -1
- package/dist/css/coreui-grid.rtl.css +1 -1
- package/dist/css/coreui-grid.rtl.css.map +1 -1
- package/dist/css/coreui-grid.rtl.min.css +1 -1
- package/dist/css/coreui-grid.rtl.min.css.map +1 -1
- package/dist/css/coreui-reboot.css +1 -1
- package/dist/css/coreui-reboot.css.map +1 -1
- package/dist/css/coreui-reboot.min.css +1 -1
- package/dist/css/coreui-reboot.min.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.css +1 -1
- package/dist/css/coreui-reboot.rtl.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.min.css +1 -1
- package/dist/css/coreui-reboot.rtl.min.css.map +1 -1
- package/dist/css/coreui-utilities.css +1 -1
- package/dist/css/coreui-utilities.css.map +1 -1
- package/dist/css/coreui-utilities.min.css +1 -1
- package/dist/css/coreui-utilities.min.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.css +1 -1
- package/dist/css/coreui-utilities.rtl.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.min.css +1 -1
- package/dist/css/coreui-utilities.rtl.min.css.map +1 -1
- package/dist/css/coreui.css +3 -3
- package/dist/css/coreui.css.map +1 -1
- package/dist/css/coreui.min.css +2 -2
- package/dist/css/coreui.min.css.map +1 -1
- package/dist/css/coreui.rtl.css +3 -3
- package/dist/css/coreui.rtl.css.map +1 -1
- package/dist/css/coreui.rtl.min.css +2 -2
- package/dist/css/coreui.rtl.min.css.map +1 -1
- package/dist/js/coreui.bundle.js +2 -2
- package/dist/js/coreui.bundle.js.map +1 -1
- package/dist/js/coreui.bundle.min.js +2 -2
- package/dist/js/coreui.bundle.min.js.map +1 -1
- package/dist/js/coreui.esm.js +2 -2
- package/dist/js/coreui.esm.js.map +1 -1
- package/dist/js/coreui.esm.min.js +2 -2
- package/dist/js/coreui.esm.min.js.map +1 -1
- package/dist/js/coreui.js +2 -2
- package/dist/js/coreui.js.map +1 -1
- package/dist/js/coreui.min.js +2 -2
- package/dist/js/coreui.min.js.map +1 -1
- package/js/dist/alert.js +1 -1
- package/js/dist/base-component.js +2 -2
- package/js/dist/base-component.js.map +1 -1
- package/js/dist/button.js +1 -1
- package/js/dist/carousel.js +1 -1
- package/js/dist/collapse.js +1 -1
- package/js/dist/dom/data.js +1 -1
- package/js/dist/dom/event-handler.js +1 -1
- package/js/dist/dom/manipulator.js +1 -1
- package/js/dist/dom/selector-engine.js +1 -1
- package/js/dist/dropdown.js +1 -1
- package/js/dist/modal.js +1 -1
- package/js/dist/navigation.js +1 -1
- package/js/dist/offcanvas.js +1 -1
- package/js/dist/popover.js +1 -1
- package/js/dist/scrollspy.js +1 -1
- package/js/dist/sidebar.js +1 -1
- package/js/dist/tab.js +1 -1
- package/js/dist/toast.js +1 -1
- package/js/dist/tooltip.js +1 -1
- package/js/dist/util/backdrop.js +1 -1
- package/js/dist/util/component-functions.js +1 -1
- package/js/dist/util/config.js +1 -1
- package/js/dist/util/focustrap.js +1 -1
- package/js/dist/util/index.js +1 -1
- package/js/dist/util/sanitizer.js +1 -1
- package/js/dist/util/scrollbar.js +1 -1
- package/js/dist/util/swipe.js +1 -1
- package/js/dist/util/template-factory.js +1 -1
- package/js/src/base-component.js +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +15 -15
- package/scss/mixins/_banner.scss +1 -1
- package/scss/sidebar/_sidebar.scss +4 -5
package/js/dist/alert.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI base-component.js v5.0.0-
|
|
2
|
+
* CoreUI base-component.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* Constants
|
|
25
25
|
*/
|
|
26
26
|
|
|
27
|
-
const VERSION = '5.0.0-
|
|
27
|
+
const VERSION = '5.0.0-rc.0';
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
* Class definition
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-component.js","sources":["../src/base-component.js"],"sourcesContent":["/**\n * --------------------------------------------------------------------------\n * CoreUI base-component.js\n * Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)\n *\n * This component is a modified version of the Bootstrap's base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Data from './dom/data.js'\nimport EventHandler from './dom/event-handler.js'\nimport Config from './util/config.js'\nimport { executeAfterTransition, getElement } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst VERSION = '5.0.0-
|
|
1
|
+
{"version":3,"file":"base-component.js","sources":["../src/base-component.js"],"sourcesContent":["/**\n * --------------------------------------------------------------------------\n * CoreUI base-component.js\n * Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)\n *\n * This component is a modified version of the Bootstrap's base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Data from './dom/data.js'\nimport EventHandler from './dom/event-handler.js'\nimport Config from './util/config.js'\nimport { executeAfterTransition, getElement } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst VERSION = '5.0.0-rc.0'\n\n/**\n * Class definition\n */\n\nclass BaseComponent extends Config {\n constructor(element, config) {\n super()\n\n element = getElement(element)\n if (!element) {\n return\n }\n\n this._element = element\n this._config = this._getConfig(config)\n\n Data.set(this._element, this.constructor.DATA_KEY, this)\n }\n\n // Public\n dispose() {\n Data.remove(this._element, this.constructor.DATA_KEY)\n EventHandler.off(this._element, this.constructor.EVENT_KEY)\n\n for (const propertyName of Object.getOwnPropertyNames(this)) {\n this[propertyName] = null\n }\n }\n\n _queueCallback(callback, element, isAnimated = true) {\n executeAfterTransition(callback, element, isAnimated)\n }\n\n _getConfig(config) {\n config = this._mergeConfigObj(config, this._element)\n config = this._configAfterMerge(config)\n this._typeCheckConfig(config)\n return config\n }\n\n // Static\n static getInstance(element) {\n return Data.get(getElement(element), this.DATA_KEY)\n }\n\n static getOrCreateInstance(element, config = {}) {\n return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null)\n }\n\n static get VERSION() {\n return VERSION\n }\n\n static get DATA_KEY() {\n return `coreui.${this.NAME}`\n }\n\n static get EVENT_KEY() {\n return `.${this.DATA_KEY}`\n }\n\n static eventName(name) {\n return `${name}${this.EVENT_KEY}`\n }\n}\n\nexport default BaseComponent\n"],"names":["VERSION","BaseComponent","Config","constructor","element","config","getElement","_element","_config","_getConfig","Data","set","DATA_KEY","dispose","remove","EventHandler","off","EVENT_KEY","propertyName","Object","getOwnPropertyNames","_queueCallback","callback","isAnimated","executeAfterTransition","_mergeConfigObj","_configAfterMerge","_typeCheckConfig","getInstance","get","getOrCreateInstance","NAME","eventName","name"],"mappings":"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"}
|
package/js/dist/button.js
CHANGED
package/js/dist/carousel.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI carousel.js v5.0.0-
|
|
2
|
+
* CoreUI carousel.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/collapse.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI collapse.js v5.0.0-
|
|
2
|
+
* CoreUI collapse.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/dom/data.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI event-handler.js v5.0.0-
|
|
2
|
+
* CoreUI event-handler.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI manipulator.js v5.0.0-
|
|
2
|
+
* CoreUI manipulator.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI selector-engine.js v5.0.0-
|
|
2
|
+
* CoreUI selector-engine.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/dropdown.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI dropdown.js v5.0.0-
|
|
2
|
+
* CoreUI dropdown.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/modal.js
CHANGED
package/js/dist/navigation.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI navigation.js v5.0.0-
|
|
2
|
+
* CoreUI navigation.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/offcanvas.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI offcanvas.js v5.0.0-
|
|
2
|
+
* CoreUI offcanvas.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/popover.js
CHANGED
package/js/dist/scrollspy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI scrollspy.js v5.0.0-
|
|
2
|
+
* CoreUI scrollspy.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/sidebar.js
CHANGED
package/js/dist/tab.js
CHANGED
package/js/dist/toast.js
CHANGED
package/js/dist/tooltip.js
CHANGED
package/js/dist/util/backdrop.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI backdrop.js v5.0.0-
|
|
2
|
+
* CoreUI backdrop.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI component-functions.js v5.0.0-
|
|
2
|
+
* CoreUI component-functions.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/util/config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI focustrap.js v5.0.0-
|
|
2
|
+
* CoreUI focustrap.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/util/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI sanitizer.js v5.0.0-
|
|
2
|
+
* CoreUI sanitizer.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI scrollbar.js v5.0.0-
|
|
2
|
+
* CoreUI scrollbar.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/dist/util/swipe.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* CoreUI template-factory.js v5.0.0-
|
|
2
|
+
* CoreUI template-factory.js v5.0.0-rc.0 (https://coreui.io)
|
|
3
3
|
* Copyright 2023 The CoreUI Team (https://github.com/orgs/coreui/people)
|
|
4
4
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
5
5
|
*/
|
package/js/src/base-component.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/coreui",
|
|
3
3
|
"description": "The most popular front-end framework for developing responsive, mobile-first projects on the web rewritten and maintained by the CoreUI Team",
|
|
4
|
-
"version": "5.0.0-
|
|
4
|
+
"version": "5.0.0-rc.0",
|
|
5
5
|
"config": {
|
|
6
6
|
"version_short": "5.0"
|
|
7
7
|
},
|
|
@@ -94,8 +94,8 @@
|
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"@babel/cli": "^7.23.0",
|
|
97
|
-
"@babel/core": "^7.23.
|
|
98
|
-
"@babel/preset-env": "^7.23.
|
|
97
|
+
"@babel/core": "^7.23.3",
|
|
98
|
+
"@babel/preset-env": "^7.23.3",
|
|
99
99
|
"@popperjs/core": "^2.11.8",
|
|
100
100
|
"@rollup/plugin-babel": "^6.0.4",
|
|
101
101
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"find-unused-sass-variables": "^5.0.0",
|
|
115
115
|
"globby": "^11.1.0",
|
|
116
116
|
"hammer-simulator": "0.0.1",
|
|
117
|
-
"hugo-bin": "^0.116.
|
|
117
|
+
"hugo-bin": "^0.116.4",
|
|
118
118
|
"ip": "^2.0.0",
|
|
119
119
|
"jasmine": "^4.6.0",
|
|
120
120
|
"jquery": "^3.7.1",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"postcss": "^8.4.31",
|
|
134
134
|
"postcss-cli": "^10.1.0",
|
|
135
135
|
"postcss-combine-duplicated-selectors": "^10.0.3",
|
|
136
|
-
"rollup": "^4.
|
|
136
|
+
"rollup": "^4.4.1",
|
|
137
137
|
"rollup-plugin-istanbul": "^5.0.0",
|
|
138
138
|
"rtlcss": "^4.1.1",
|
|
139
139
|
"sass": "^1.69.5",
|
package/scss/_variables.scss
CHANGED
|
@@ -1896,21 +1896,21 @@ $sidebar-nav-link-icon-bullet-border-width: 1px !default;
|
|
|
1896
1896
|
$sidebar-nav-link-icon-bullet-border-color: var(--#{$prefix}tertiary-color) !default;
|
|
1897
1897
|
$sidebar-nav-link-icon-bullet-border-radius: 50rem !default;
|
|
1898
1898
|
|
|
1899
|
-
$sidebar-nav-link-hover-color:
|
|
1900
|
-
$sidebar-nav-link-hover-bg:
|
|
1901
|
-
$sidebar-nav-link-hover-icon-color:
|
|
1902
|
-
$sidebar-nav-link-hover-icon-bullet-bg:
|
|
1903
|
-
$sidebar-nav-link-hover-icon-bullet-border-color:
|
|
1904
|
-
|
|
1905
|
-
$sidebar-nav-link-active-color:
|
|
1906
|
-
$sidebar-nav-link-active-bg:
|
|
1907
|
-
$sidebar-nav-link-active-icon-color:
|
|
1908
|
-
$sidebar-nav-link-active-icon-bullet-bg:
|
|
1909
|
-
$sidebar-nav-link-active-icon-bullet-border-color:
|
|
1910
|
-
|
|
1911
|
-
$sidebar-nav-link-disabled-color:
|
|
1912
|
-
$sidebar-nav-link-disabled-icon-color:
|
|
1913
|
-
$sidebar-nav-link-disabled-icon-bullet-bg:
|
|
1899
|
+
$sidebar-nav-link-hover-color: var(--#{$prefix}emphasis-color) !default;
|
|
1900
|
+
$sidebar-nav-link-hover-bg: var(--#{$prefix}tertiary-bg) !default;
|
|
1901
|
+
$sidebar-nav-link-hover-icon-color: var(--#{$prefix}body-color) !default;
|
|
1902
|
+
$sidebar-nav-link-hover-icon-bullet-bg: transparent !default;
|
|
1903
|
+
$sidebar-nav-link-hover-icon-bullet-border-color: var(--#{$prefix}body-color) !default;
|
|
1904
|
+
|
|
1905
|
+
$sidebar-nav-link-active-color: var(--#{$prefix}emphasis-color) !default;
|
|
1906
|
+
$sidebar-nav-link-active-bg: var(--#{$prefix}tertiary-bg) !default;
|
|
1907
|
+
$sidebar-nav-link-active-icon-color: var(--#{$prefix}emphasis-color) !default;
|
|
1908
|
+
$sidebar-nav-link-active-icon-bullet-bg: transparent !default;
|
|
1909
|
+
$sidebar-nav-link-active-icon-bullet-border-color: var(--#{$prefix}emphasis-color) !default;
|
|
1910
|
+
|
|
1911
|
+
$sidebar-nav-link-disabled-color: var(--#{$prefix}tertiary-color) !default;
|
|
1912
|
+
$sidebar-nav-link-disabled-icon-color: var(--#{$prefix}tertiary-color) !default;
|
|
1913
|
+
$sidebar-nav-link-disabled-icon-bullet-bg: transparent !default;
|
|
1914
1914
|
$sidebar-nav-link-disabled-icon-bullet-border-color: var(--#{$prefix}tertiary-color) !default;
|
|
1915
1915
|
|
|
1916
1916
|
$sidebar-nav-group-bg: transparent !default;
|
package/scss/mixins/_banner.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@mixin bsBanner($file) {
|
|
2
2
|
/*!
|
|
3
|
-
* CoreUI #{$file} v5.0.0-
|
|
3
|
+
* CoreUI #{$file} v5.0.0-rc.0 (https://coreui.io)
|
|
4
4
|
* Copyright (c) 2023 creativeLabs Łukasz Holeczek
|
|
5
5
|
* Licensed under MIT (https://github.com/coreui/coreui/blob/main/LICENSE)
|
|
6
6
|
*/
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
|
|
15
15
|
position: relative;
|
|
16
16
|
display: flex;
|
|
17
|
-
// $sidebar-width is the width of the columns
|
|
18
17
|
flex: 0 0 var(--#{$prefix}sidebar-width);
|
|
19
18
|
flex-direction: column;
|
|
20
19
|
// put the nav on the left
|
|
@@ -107,9 +106,9 @@
|
|
|
107
106
|
}
|
|
108
107
|
|
|
109
108
|
&.sidebar-overlaid {
|
|
110
|
-
// scss-docs-start sidebar-css-vars
|
|
109
|
+
// scss-docs-start sidebar-overlaid-css-vars
|
|
111
110
|
--#{$prefix}sidebar-overlaid-box-shadow: #{$sidebar-overlaid-box-shadow};
|
|
112
|
-
// scss-docs-end sidebar-css-vars
|
|
111
|
+
// scss-docs-end sidebar-overlaid-css-vars
|
|
113
112
|
|
|
114
113
|
position: fixed;
|
|
115
114
|
top: 0;
|
|
@@ -137,7 +136,7 @@
|
|
|
137
136
|
&:not(.sidebar-end) {
|
|
138
137
|
@include ltr-rtl("margin-left", 0);
|
|
139
138
|
}
|
|
140
|
-
|
|
139
|
+
|
|
141
140
|
&.sidebar-end {
|
|
142
141
|
@include ltr-rtl("margin-right", 0);
|
|
143
142
|
}
|
|
@@ -215,7 +214,7 @@
|
|
|
215
214
|
--#{$prefix}sidebar-toggler-width: #{$sidebar-toggler-width};
|
|
216
215
|
--#{$prefix}sidebar-toggler-height: #{$sidebar-toggler-height};
|
|
217
216
|
--#{$prefix}sidebar-toggler-color: #{$sidebar-toggler-color};
|
|
218
|
-
--#{$prefix}sidebar-toggler-bg: #{
|
|
217
|
+
--#{$prefix}sidebar-toggler-bg: #{escape-svg($sidebar-toggler-bg)};
|
|
219
218
|
--#{$prefix}sidebar-toggler-hover-color: #{$sidebar-toggler-hover-color};
|
|
220
219
|
--#{$prefix}sidebar-toggler-focus-shadow: #{$sidebar-toggler-focus-shadow};
|
|
221
220
|
--#{$prefix}sidebar-toggler-focus-color: #{$sidebar-toggler-focus-color};
|