2020-09-03 18:50:16 +00:00
|
|
|
:root
|
|
|
|
{
|
|
|
|
--size_sticky_side: 300px;
|
2020-09-19 02:58:22 +00:00
|
|
|
--size_sticky_bottom: 150px;
|
2020-09-03 18:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input, select, textarea
|
|
|
|
{
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
2021-01-02 21:49:43 +00:00
|
|
|
iframe.embedded_search
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
max-height: 500px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:50:52 +00:00
|
|
|
p:last-of-type
|
|
|
|
{
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-09-03 18:50:16 +00:00
|
|
|
.header_element:hover
|
|
|
|
{
|
|
|
|
background-color: var(--color_secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
#left
|
|
|
|
{
|
|
|
|
grid-area: left;
|
|
|
|
}
|
|
|
|
#right
|
|
|
|
{
|
|
|
|
grid-area: right;
|
|
|
|
}
|
|
|
|
|
2020-09-19 02:58:22 +00:00
|
|
|
@media screen and (min-width: 800px)
|
2020-09-03 18:50:16 +00:00
|
|
|
{
|
2020-09-19 02:58:22 +00:00
|
|
|
#content_body.sticky_side_left
|
|
|
|
{
|
|
|
|
grid-template:
|
|
|
|
"left right"
|
|
|
|
/var(--size_sticky_side) 1fr;
|
|
|
|
}
|
|
|
|
#content_body.sticky_side_right
|
|
|
|
{
|
|
|
|
grid-template:
|
|
|
|
"left right"
|
|
|
|
/1fr var(--size_sticky_side);
|
|
|
|
}
|
2020-09-03 18:50:16 +00:00
|
|
|
|
2020-09-19 02:58:22 +00:00
|
|
|
#content_body.sticky_side_left #left,
|
|
|
|
#content_body.sticky_side_right #right
|
|
|
|
{
|
|
|
|
z-index: 1;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 8px;
|
|
|
|
top: 34px;
|
|
|
|
width: var(--size_sticky_side);
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
#content_body.sticky_side_left #left
|
|
|
|
{
|
|
|
|
left: 8px;
|
|
|
|
}
|
|
|
|
#content_body.sticky_side_right #right
|
|
|
|
{
|
|
|
|
right: 8px;
|
|
|
|
}
|
2020-09-03 18:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px)
|
|
|
|
{
|
2020-09-19 02:58:22 +00:00
|
|
|
#content_body.sticky_bottom_left
|
|
|
|
{
|
|
|
|
grid-template:
|
|
|
|
"right" 1fr
|
|
|
|
"left" var(--size_sticky_bottom)
|
|
|
|
/ 1fr;
|
|
|
|
}
|
|
|
|
#content_body.sticky_bottom_right
|
|
|
|
{
|
|
|
|
grid-template:
|
|
|
|
"left" 1fr
|
|
|
|
"right" var(--size_sticky_bottom)
|
|
|
|
/ 1fr;
|
|
|
|
}
|
2021-01-03 07:53:14 +00:00
|
|
|
/*
|
|
|
|
Usually, the panels are made by giving them a translucent background, which
|
|
|
|
stands out from the body layer. But, since the sticky_bottom will probably
|
|
|
|
be on top of content, we don't want to see through it! So we give it the
|
|
|
|
same background as the body color, and then use a pseudoelement to get the
|
|
|
|
transparent panel look back again.
|
|
|
|
An alternative solution might be to really split the page into a scrollable
|
|
|
|
top half and the non-scrollable sticky_bottom. I will look into this at
|
|
|
|
some point.
|
|
|
|
*/
|
2020-09-19 02:58:22 +00:00
|
|
|
#content_body.sticky_bottom_left #left,
|
|
|
|
#content_body.sticky_bottom_right #right
|
2020-09-03 18:50:16 +00:00
|
|
|
{
|
2020-09-19 02:58:22 +00:00
|
|
|
z-index: 1;
|
|
|
|
position: fixed;
|
|
|
|
background-color: var(--color_primary);
|
2020-09-03 18:50:16 +00:00
|
|
|
outline: 8px solid var(--color_primary);
|
2020-09-19 02:58:22 +00:00
|
|
|
top: unset;
|
|
|
|
width: unset;
|
|
|
|
left: 8px;
|
|
|
|
right: 8px;
|
|
|
|
bottom: 8px;
|
|
|
|
height: var(--size_sticky_bottom);
|
2021-01-05 09:25:50 +00:00
|
|
|
overflow-y: scroll;
|
2020-09-03 18:50:16 +00:00
|
|
|
}
|
2020-09-19 02:58:22 +00:00
|
|
|
#content_body.sticky_bottom_left #left:before,
|
|
|
|
#content_body.sticky_bottom_right #right:before
|
2020-09-03 18:50:16 +00:00
|
|
|
{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: var(--color_transparency);
|
|
|
|
z-index: -1;
|
|
|
|
}
|
2020-11-05 01:35:54 +00:00
|
|
|
.photos_holder
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2020-09-03 18:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.editor_input
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel
|
|
|
|
{
|
|
|
|
background-color: var(--color_transparency);
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remove_tag_button,
|
|
|
|
.remove_tag_button_perm
|
|
|
|
{
|
|
|
|
/*position: absolute;*/
|
|
|
|
vertical-align: middle;
|
2020-10-18 00:28:32 +00:00
|
|
|
font-size: 8pt;
|
2020-09-03 18:50:16 +00:00
|
|
|
|
|
|
|
min-width: 18px;
|
|
|
|
min-height: 14px;
|
2020-10-18 00:28:32 +00:00
|
|
|
padding: 0;
|
2020-09-03 18:50:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
The Remove button will be display:none by default, but is shown when the tag
|
|
|
|
is hovered over.
|
|
|
|
*/
|
|
|
|
.remove_tag_button
|
|
|
|
{
|
|
|
|
display: none;
|
|
|
|
}
|
2021-01-08 22:16:59 +00:00
|
|
|
|
2021-01-08 21:57:27 +00:00
|
|
|
.tag_card:hover ~ * .remove_tag_button,
|
|
|
|
.tag_card:hover ~ .remove_tag_button,
|
2020-09-03 18:50:16 +00:00
|
|
|
.remove_tag_button:hover,
|
|
|
|
.remove_tag_button_perm:hover
|
|
|
|
{
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message_area
|
|
|
|
{
|
|
|
|
flex: 2;
|
|
|
|
}
|