This commit is contained in:
2020-07-13 17:09:59 +02:00
parent 03559a7b76
commit 3a082e23cc
492 changed files with 4129 additions and 982 deletions
@@ -155,7 +155,6 @@
/* Form action buttons are moved in dialogs. Remove empty space. */
.ui-dialog .ui-dialog-content .form-actions {
padding: 0;
margin: 0;
}
@@ -127,7 +127,8 @@ label[for] {
}
table .form-actions {
margin-top: 0;
background: transparent;
border-top: 0;
}
@media screen and (min-width: 640px) {
@@ -15,6 +15,12 @@
width: 100%;
}
@media screen and (min-width: 782px) {
.gutenberg__editor .edit-post-layout.is-sidebar-opened .edit-post-sidebar {
min-width: 350px;
}
}
.components-panel__header.edit-post-sidebar__panel-tabs li {
flex: 1;
}
@@ -81,6 +87,13 @@
padding-left: 0 !important;
}
.gutenberg__editor .edit-post-layout .edit-post-sidebar .form-type-radio .form-radio {
margin-left: 0;
margin-right: 0;
width: 20px;
height: 20px;
}
@media screen and (min-width: 782px) {
body .gutenberg__editor .edit-post-layout .edit-post-header {
@@ -116,7 +129,7 @@
}
.toolbar-horizontal.toolbar-tray-open .interface-interface-skeleton {
top: 120px;
top: 102px;
}
.edit-post-layout__metaboxes {
@@ -10,6 +10,23 @@
margin-left: 10px;
}
.form--inline.webform-ui-element-form-inline--input .form-item {
min-width: 150px;
flex-basis: 45%;
}
.form--inline.webform-ui-element-form-inline--input .form-item select {
min-width: 150px;
}
.webform-ui-element-form .form-actions {
position: relative;
}
.webform-ui-element-form .form-actions input {
margin-top: 10px;
}
.webform-contribute-community-info {
display: inline-block;
border-radius: 0;
@@ -38,6 +55,7 @@
.form--inline.webform-ui-element-form-inline--input .form-item input[type="text"],
.form--inline.webform-ui-element-form-inline--input .form-item input[type="number"] {
width: 100%;
min-width: 170px !important;
}
.button-webform-play {
@@ -66,7 +84,7 @@ html.js .webform-message--close .webform-message__link {
html.js .webform-message--close .messages.messages--promotion_drupal_association .webform-message__link {
top: 22px;
right: 24px;
right: 24px;
}
.webform-multiple-table td.webform-multiple-table--operations {
@@ -139,7 +157,7 @@ td.webform-results-table__icon {
}
.button.button-webform-play:before {
content: '► ';
content: '► ';
}
.ui-dialog-content .webform-ajax-link {
@@ -73,6 +73,7 @@
}
.toolbar .toolbar-tray-vertical .toolbar-menu a.toolbar-icon {
padding-left: 50px;
position: relative;
}
.toolbar .toolbar-tray-vertical .toolbar-menu ul .level-2 a {
padding-left: 50px; /* LTR */
@@ -244,7 +245,7 @@
*/
.toolbar-fixed .toolbar .toolbar-toggle-orientation button {
height: 60px;
height: 44px;
padding: 0;
font-size: 0;
}
@@ -81,12 +81,12 @@
@media only screen and (min-width: 1280px) {
.toolbar-tray a {
padding: 20px 24px;
padding: 12px 24px;
}
}
.toolbar-tray-vertical.toolbar-tray a {
padding: 20px 24px;
padding: 12px 24px;
}
.toolbar-tray a:hover,
@@ -323,7 +323,7 @@ regions:
icon: images/mediteran.svg
screenshot: images/mediteran.png
# Information added by Drupal.org packaging script on 2020-05-28
version: '8.x-1.10'
# Information added by Drupal.org packaging script on 2020-07-12
version: '8.x-1.11'
project: 'mediteran'
datestamp: 1590662210
datestamp: 1594537824
@@ -8,3 +8,12 @@ base theme: false
libraries:
- popsu_colloque/global-styling
- popsu_colloque/global-scripts
regions:
header: Header
primary_menu: 'Primary menu'
highlighted: Highlighted
content: Content
sidebar_first: 'Sidebar first'
sidebar_second: 'Sidebar second'
footer: 'Footer'
@@ -0,0 +1,21 @@
{#
/**
* @file
* Default theme implementation to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region <div>.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*
* @ingroup themeable
*/
#}
{% if content %}
<div{{ attributes }}>
{{ content }}
</div>
{% endif %}
@@ -0,0 +1,21 @@
{#
/**
* @file
* Default theme implementation to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region <div>.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*
* @ingroup themeable
*/
#}
{% if content %}
<div{{ attributes }}>
{{ content }}
</div>
{% endif %}