mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Updates core dependencies with vulnerabilities Updates all outdated core minor / patch dependencies Fixes new lint errors due to updated stylelint (these errors were good)
73 lines
1.7 KiB
SCSS
73 lines
1.7 KiB
SCSS
@import "./split-pane.vars";
|
|
@import "../menu/menu.vars";
|
|
|
|
// Split Pane
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
/**
|
|
* @prop --border: Border between panes
|
|
* @prop --side-min-width: Minimum width of the side pane. Does not apply when split pane is collapsed.
|
|
* @prop --side-max-width: Maximum width of the side pane. Does not apply when split pane is collapsed.
|
|
* @prop --side-width: Width of the side pane. Does not apply when split pane is collapsed.
|
|
*/
|
|
--side-width: 100%;
|
|
|
|
@include position(0, 0, 0, 0);
|
|
|
|
display: flex;
|
|
position: absolute;
|
|
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
|
|
contain: strict;
|
|
}
|
|
|
|
/**
|
|
* Do not pass CSS Variables down on larger
|
|
* screens as we want them to affect the outer
|
|
* `ion-menu` rather than the inner content
|
|
*/
|
|
::slotted(ion-menu.menu-pane-visible) {
|
|
flex: 0 1 auto;
|
|
|
|
width: var(--side-width);
|
|
min-width: var(--side-min-width);
|
|
max-width: var(--side-max-width);
|
|
}
|
|
|
|
:host(.split-pane-visible) ::slotted(.split-pane-side),
|
|
:host(.split-pane-visible) ::slotted(.split-pane-main) {
|
|
@include position(0, 0, 0, 0);
|
|
|
|
position: relative;
|
|
|
|
/* stylelint-disable-next-line declaration-no-important */
|
|
box-shadow: none !important;
|
|
z-index: 0;
|
|
}
|
|
|
|
:host(.split-pane-visible) ::slotted(.split-pane-main) {
|
|
flex: 1;
|
|
}
|
|
|
|
:host(.split-pane-visible) ::slotted(.split-pane-side:not(ion-menu)),
|
|
:host(.split-pane-visible) ::slotted(ion-menu.split-pane-side.menu-enabled) {
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
::slotted(.split-pane-side:not(ion-menu)) {
|
|
display: none;
|
|
}
|
|
|
|
:host(.split-pane-visible) ::slotted(.split-pane-side) {
|
|
order: -1;
|
|
}
|
|
|
|
:host(.split-pane-visible) ::slotted(.split-pane-side[side=end]) {
|
|
order: 1;
|
|
}
|