first commit

This commit is contained in:
2020-06-08 23:57:36 +02:00
commit 6277454f7a
16057 changed files with 1715382 additions and 0 deletions
@@ -0,0 +1,11 @@
/**
* @file
* Styles for administration pages.
*/
/**
* Revisions overview screen.
*/
.revision-current {
background: #ffc;
}
@@ -0,0 +1,69 @@
/**
* @file
* Styles for administration pages.
*/
/* Narrow screens */
.layout-region {
box-sizing: border-box;
}
/* Wide screens */
@media screen and (min-width: 780px), (orientation: landscape) and (min-device-height: 780px) {
.layout-region-node-main,
.layout-region-node-footer {
float: left; /* LTR */
width: 65%;
padding-right: 20px; /* LTR */
box-sizing: border-box;
}
[dir="rtl"] .layout-region-node-main,
[dir="rtl"] .layout-region-node-footer {
float: right;
padding-left: 20px;
padding-right: 0;
}
.layout-region-node-secondary {
float: right; /* LTR */
width: 35%;
}
[dir="rtl"] .layout-region-node-secondary {
float: left;
}
/* @todo File an issue to add a standard class to all text-like inputs */
.layout-region-node-secondary .form-autocomplete,
.layout-region-node-secondary .form-text,
.layout-region-node-secondary .form-tel,
.layout-region-node-secondary .form-email,
.layout-region-node-secondary .form-url,
.layout-region-node-secondary .form-search,
.layout-region-node-secondary .form-number,
.layout-region-node-secondary .form-color,
.layout-region-node-secondary textarea {
box-sizing: border-box;
width: 100%;
max-width: 100%;
}
}
/**
* The vertical toolbar mode gets triggered for narrow screens, which throws off
* the intent of media queries written for the viewport width. When the vertical
* toolbar is on, we need to suppress layout for the original media width + the
* toolbar width (240px). In this case, 240px + 780px.
*/
@media screen and (max-width: 1020px) {
.toolbar-vertical.toolbar-tray-open .layout-region-node-main,
.toolbar-vertical.toolbar-tray-open .layout-region-node-footer,
.toolbar-vertical.toolbar-tray-open .layout-region-node-secondary {
float: none;
width: auto;
padding-right: 0;
}
}
@@ -0,0 +1,36 @@
/**
* @file
* Styles for node preview page.
*/
.node-preview-container {
width: 100%;
padding: 20px;
box-sizing: border-box;
background: #f5f5f5;
border-bottom: 1px solid #ddd;
}
.node-preview-form-select {
width: 100%;
}
.node-preview-container .node-preview-backlink {
color: white;
float: left;
background-color: #7cbc48;
border-color: #7cbc48;
padding: 13px 24px;
text-decoration: none;
font-weight: 700;
font-size: 12px;
line-height: 1;
text-transform: uppercase;
margin-right: 20px;
}
.node-preview-container .form-type-select {
float: right;
width: auto;
align-items: center;
}