2020-10-21 12:10:21 +02:00
|
|
|
|
|
|
|
|
.editor
|
|
|
|
|
{
|
2021-01-06 12:30:24 +01:00
|
|
|
width: 100%;
|
2021-09-23 15:04:36 +02:00
|
|
|
max-width: 960px;
|
2021-01-06 12:30:24 +01:00
|
|
|
margin: 0 auto;
|
2021-01-11 00:34:41 +01:00
|
|
|
padding: 0 var(--padding) var(--padding);
|
2021-01-06 12:30:24 +01:00
|
|
|
|
2021-01-09 19:09:31 +01:00
|
|
|
&:not(.display-tabs), &.hide-tabs
|
2020-10-21 12:10:21 +02:00
|
|
|
{
|
|
|
|
|
.ui-tabs-list
|
|
|
|
|
{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-tab, .editor-infos
|
|
|
|
|
{
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2021-01-09 19:09:31 +01:00
|
|
|
|
|
|
|
|
.editor-aside
|
|
|
|
|
{
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.has-sidebar
|
|
|
|
|
{
|
2021-03-21 15:14:29 +01:00
|
|
|
max-width: 1580px;
|
2021-01-09 19:09:31 +01:00
|
|
|
display: grid;
|
2021-03-21 15:14:29 +01:00
|
|
|
grid-template-columns: minmax(auto, 1fr) 260px;
|
|
|
|
|
grid-gap: 0 var(--padding);
|
2020-10-21 12:10:21 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 10:25:56 +02:00
|
|
|
.editor.has-below .ui-tab.ui-box
|
|
|
|
|
{
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-14 16:09:39 +01:00
|
|
|
.editor.display-boxes .ui-tab
|
|
|
|
|
{
|
|
|
|
|
display: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor.display-boxes .ui-tab + .ui-tab
|
|
|
|
|
{
|
|
|
|
|
margin-top: var(--padding-m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-tab-headline
|
|
|
|
|
{
|
2021-08-11 16:31:39 +02:00
|
|
|
font-size: var(--font-size-l) !important;
|
|
|
|
|
font-weight: 900 !important;
|
2021-01-14 16:09:39 +01:00
|
|
|
margin-bottom: var(--padding) !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-09 19:09:31 +01:00
|
|
|
.editor-tabs
|
2020-10-23 13:22:41 +02:00
|
|
|
{
|
|
|
|
|
.ui-tabs-list
|
|
|
|
|
{
|
2021-01-09 19:09:31 +01:00
|
|
|
padding: 0;
|
|
|
|
|
margin-bottom: 0;
|
2020-10-23 13:22:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-tab
|
|
|
|
|
{
|
2021-01-09 19:09:31 +01:00
|
|
|
margin: 0;
|
2020-10-23 13:22:41 +02:00
|
|
|
}
|
2021-01-09 19:09:31 +01:00
|
|
|
}
|
2020-10-23 13:22:41 +02:00
|
|
|
|
2021-01-09 19:09:31 +01:00
|
|
|
.editor-aside
|
|
|
|
|
{
|
|
|
|
|
margin-top: 58px;
|
|
|
|
|
}
|
2020-10-29 21:44:22 +01:00
|
|
|
|
2021-01-09 19:09:31 +01:00
|
|
|
.editor-infos
|
|
|
|
|
{
|
|
|
|
|
display: block;
|
2021-09-23 10:58:14 +02:00
|
|
|
//border-top: 1px solid var(--color-line-onbg);
|
2021-01-09 19:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-04 22:22:20 +01:00
|
|
|
.theme-dark .editor-infos
|
|
|
|
|
{
|
|
|
|
|
border-top: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-09 19:09:31 +01:00
|
|
|
.editor-infos .ui-box
|
|
|
|
|
{
|
|
|
|
|
margin: 0;
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: var(--padding-l);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-10 17:11:00 +01:00
|
|
|
.editor-infos .ui-property
|
|
|
|
|
{
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
border-top: none;
|
2021-09-08 15:06:56 +02:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
grid-gap: 6px !important;
|
2021-01-10 17:11:00 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-09 19:09:31 +01:00
|
|
|
.editor-infos .ui-property-label
|
|
|
|
|
{
|
|
|
|
|
font-size: var(--font-size-s);
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: var(--color-text-dim);
|
2021-01-10 17:11:00 +01:00
|
|
|
width: 100%;
|
|
|
|
|
padding-right: 0;
|
2021-01-09 19:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-infos .ui-property-content
|
|
|
|
|
{
|
|
|
|
|
font-size: var(--font-size-s);
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: var(--color-text-dim);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-infos-aside .ui-property + .ui-property
|
|
|
|
|
{
|
|
|
|
|
margin-top: 0;
|
2021-09-08 15:06:56 +02:00
|
|
|
padding-top: 0;
|
|
|
|
|
border-top: none;
|
2021-09-14 11:24:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-aside-links
|
|
|
|
|
{
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: -5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-aside-links .ui-link
|
|
|
|
|
{
|
|
|
|
|
color: var(--color-text-dim);
|
|
|
|
|
font-size: var(--font-size-s);
|
|
|
|
|
text-decoration: none !important;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-aside-links .ui-link + .ui-link
|
|
|
|
|
{
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-aside-links .ui-link + .ui-link:before
|
|
|
|
|
{
|
|
|
|
|
content: '·';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -12px;
|
|
|
|
|
top: -1px;
|
2020-10-21 12:10:21 +02:00
|
|
|
}
|