Create #right:before on narrow screens to give a solid background.
This commit is contained in:
parent
23cdd4dc2b
commit
4d235c427c
2 changed files with 28 additions and 0 deletions
|
@ -84,10 +84,24 @@
|
|||
bottom: 8px;
|
||||
height: 200px;
|
||||
|
||||
outline: 8px solid var(--color_theme_primary);
|
||||
background-color: var(--color_theme_primary) !important;
|
||||
|
||||
grid-template:
|
||||
"toolbox message_area" 1fr
|
||||
/1fr minmax(50px, 200px);
|
||||
}
|
||||
#right:before
|
||||
{
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: var(--color_site_transparency);
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
@ -81,10 +81,24 @@ h2, h3
|
|||
bottom: 8px;
|
||||
height: 150px;
|
||||
|
||||
outline: 8px solid var(--color_theme_primary);
|
||||
background-color: var(--color_theme_primary) !important;
|
||||
|
||||
grid-template:
|
||||
"editor_area message_area" 1fr
|
||||
/1fr minmax(50px, 200px);
|
||||
}
|
||||
#right:before
|
||||
{
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: var(--color_site_transparency);
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
|
Loading…
Reference in a new issue