panels now have shadow-overlay so that it's possible to have inset shadow all
over the panel, without header overlapping it
This commit is contained in:
parent
a79d9d9774
commit
3d6547001e
25
src/App.scss
25
src/App.scss
@ -317,16 +317,33 @@ main-router {
|
|||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
|
|
||||||
background-color: $fallback--bg;
|
background-color: $fallback--bg;
|
||||||
background-color: var(--bg, $fallback--bg);
|
background-color: var(--bg, $fallback--bg);
|
||||||
|
|
||||||
border-radius: $fallback--panelRadius;
|
&::after, & {
|
||||||
border-radius: var(--panelRadius, $fallback--panelRadius);
|
border-radius: $fallback--panelRadius;
|
||||||
box-shadow: 1px 1px 4px rgba(0,0,0,.6);
|
border-radius: var(--panelRadius, $fallback--panelRadius);
|
||||||
box-shadow: var(--panelShadow);
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
box-shadow: 1px 1px 4px rgba(0,0,0,.6);
|
||||||
|
box-shadow: var(--panelShadow);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-body:empty::before {
|
.panel-body:empty::before {
|
||||||
|
Loading…
Reference in New Issue
Block a user