2024-11-22
2024-11-22 fonc(db) exporte la BDD de production
This commit is contained in:
parent
5b1b94c0fe
commit
2b13af6421
77 changed files with 20281 additions and 2988 deletions
|
|
@ -1,94 +1,112 @@
|
|||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Complex
|
||||
========================================================================== */
|
||||
.postbox .cf-complex__inserter-menu, body[class*=taxonomy-] .cf-complex__inserter-menu {
|
||||
.postbox .cf-complex__inserter-menu, body[class*="taxonomy-"] .cf-complex__inserter-menu {
|
||||
margin: 0;
|
||||
border-radius: 3px;
|
||||
background-color: #191e23;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.postbox .cf-complex__inserter-menu:before, body[class*=taxonomy-] .cf-complex__inserter-menu:before {
|
||||
|
||||
.postbox .cf-complex__inserter-menu::before, body[class*="taxonomy-"] .cf-complex__inserter-menu::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 100%;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-width: 5px 5px 5px 0;
|
||||
border-style: solid;
|
||||
border-color: transparent #191e23;
|
||||
margin-top: -5px;
|
||||
content: "";
|
||||
border-color: transparent #191e23;
|
||||
border-style: solid;
|
||||
border-width: 5px 5px 5px 0;
|
||||
}
|
||||
|
||||
.postbox .cf-complex__inserter-item, body[class*=taxonomy-] .cf-complex__inserter-item {
|
||||
.postbox .cf-complex__inserter-item, body[class*="taxonomy-"] .cf-complex__inserter-item {
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
transition: color 0.1s linear;
|
||||
}
|
||||
.postbox .cf-complex__inserter-item:hover, body[class*=taxonomy-] .cf-complex__inserter-item:hover {
|
||||
|
||||
.postbox .cf-complex__inserter-item:hover, body[class*="taxonomy-"] .cf-complex__inserter-item:hover {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.postbox .cf-complex__tabs .cf-complex__inserter-button, body[class*=taxonomy-] .cf-complex__tabs .cf-complex__inserter-button {
|
||||
.postbox .cf-complex__tabs .cf-complex__inserter-button, body[class*="taxonomy-"] .cf-complex__tabs .cf-complex__inserter-button {
|
||||
font-weight: 600;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.postbox .cf-complex__tabs-item, body[class*=taxonomy] .cf-complex__tabs-item {
|
||||
.postbox .cf-complex__tabs-item, body[class*="taxonomy"] .cf-complex__tabs-item {
|
||||
font-weight: 600;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Field
|
||||
========================================================================== */
|
||||
.cf-container .cf-field {
|
||||
flex: 1 1 100%;
|
||||
padding: 12px;
|
||||
border-width: 0 1px 0 0;
|
||||
border-style: solid;
|
||||
border-color: #e2e4e7;
|
||||
border-style: solid;
|
||||
border-width: 0 1px 0 0;
|
||||
}
|
||||
|
||||
.cf-container .cf-field + .cf-field {
|
||||
border-top-width: 1px;
|
||||
}
|
||||
|
|
@ -104,67 +122,85 @@
|
|||
font-weight: 600;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.cf-container-term-meta .cf-field__label, .cf-container-user-meta .cf-field__label {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.cf-field__help {
|
||||
display: inline-block;
|
||||
color: #666;
|
||||
margin-top: 10px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Multiselect
|
||||
========================================================================== */
|
||||
.postbox .cf-multiselect__control {
|
||||
border-color: #ddd;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
|
||||
box-shadow: 0 1px 2px rgb(0 0 0 / 7%) inset;
|
||||
}
|
||||
|
||||
.postbox .cf-multiselect__control--is-focused, .postbox .cf-multiselect__control--is-focused:hover {
|
||||
box-shadow: 0 0 2px rgba(0, 115, 170, 0.8);
|
||||
box-shadow: 0 0 2px rgb(0 115 170 / 80%);
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Media Gallery
|
||||
========================================================================== */
|
||||
|
|
@ -175,13 +211,14 @@
|
|||
.postbox .cf-media-gallery__actions {
|
||||
border-top: 1px solid #e2e4e7;
|
||||
}
|
||||
|
||||
.cf-container-term-meta .cf-media-gallery__actions {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.cf-container-term-meta .cf-media-gallery__list {
|
||||
margin: 0 -8px;
|
||||
max-height: 285px;
|
||||
margin: 0 -8px;
|
||||
}
|
||||
|
||||
.cf-container-term-meta .cf-media-gallery__item {
|
||||
|
|
@ -197,110 +234,140 @@
|
|||
}
|
||||
|
||||
.postbox .cf-media-gallery__item-name, .cf-container-term-meta .cf-media-gallery__item-name {
|
||||
border-top: 1px solid #e2e4e7;
|
||||
background-color: #f3f4f5;
|
||||
border-top: 1px solid #e2e4e7;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Radio
|
||||
========================================================================== */
|
||||
.inside .cf-radio-image .cf-radio__input:focus ~ .cf-radio__label {
|
||||
box-shadow: 0 0 2px rgba(0, 160, 210, 0.8);
|
||||
box-shadow: 0 0 2px rgb(0 160 210 / 80%);
|
||||
}
|
||||
|
||||
.inside .cf-radio-image__image {
|
||||
border: 1px solid #b5bcc2;
|
||||
}
|
||||
|
||||
.inside .cf-radio__input:focus ~ .cf-radio__label .cf-radio-image__image, .inside .cf-radio__input:checked ~ .cf-radio__label .cf-radio-image__image {
|
||||
outline: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Widget
|
||||
========================================================================== */
|
||||
.cf-container-widget {
|
||||
margin-bottom: 13px;
|
||||
}
|
||||
|
||||
.cf-container-widget .cf-field {
|
||||
margin: 1em 0 0;
|
||||
padding: 0;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.cf-container-widget .cf-field + .cf-field {
|
||||
border-top-width: 0;
|
||||
}
|
||||
|
||||
.cf-container-widget .cf-complex__group-body {
|
||||
border-width: 1px 1px 1px 1px;
|
||||
margin-top: 0;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
.cf-container-widget .cf-complex__group-body .cf-field {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.cf-container-widget .cf-complex__group-body .cf-field + .cf-field {
|
||||
border-width: 1px 0 0 0;
|
||||
padding-top: 1em;
|
||||
border-width: 1px 0 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Theme Options
|
||||
========================================================================== */
|
||||
|
|
@ -309,54 +376,70 @@
|
|||
right: 0;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
User Meta
|
||||
========================================================================== */
|
||||
.cf-container-user-meta {
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Colors
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Colors - https://make.wordpress.org/design/handbook/design-guide/foundations/colors/
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Colors - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_colors.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Fonts
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
WordPress Variables
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss
|
||||
========================================================================== */
|
||||
|
||||
/* ==========================================================================
|
||||
Container
|
||||
========================================================================== */
|
||||
|
|
@ -366,41 +449,47 @@
|
|||
|
||||
#poststuff .carbon-box .inside,
|
||||
.carbon-box .inside {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.cf-container--plain {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.cf-container--tabbed {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.cf-container--tabbed-horizontal {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.cf-container--tabbed-vertical {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.cf-container__fields {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex: 1;
|
||||
flex-wrap: wrap;
|
||||
margin: 0 -1px 0 0;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cf-container__fields[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.block-editor .cf-container__fields {
|
||||
border-left: 1px solid #e2e4e7;
|
||||
}
|
||||
|
||||
.cf-container-term-meta .cf-container__fields, .cf-container-user-meta .cf-container__fields {
|
||||
border-width: 0 0 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: #e2e4e7;
|
||||
margin: 0;
|
||||
border-color: #e2e4e7;
|
||||
border-style: solid;
|
||||
border-width: 0 0 1px 1px;
|
||||
}
|
||||
|
||||
.cf-container__tabs {
|
||||
|
|
@ -408,71 +497,85 @@
|
|||
z-index: 1;
|
||||
background-color: #fbfbfc;
|
||||
}
|
||||
|
||||
.cf-container__tabs-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: 0 0 -1px;
|
||||
}
|
||||
|
||||
.cf-container__tabs-list .cf-container__tabs-item {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border: 1px solid #e2e4e7;
|
||||
margin: 0 8px 0 0;
|
||||
background-color: #fbfbfc;
|
||||
font-size: 13px;
|
||||
cursor: pointer;
|
||||
background-color: #fbfbfc;
|
||||
border: 1px solid #e2e4e7;
|
||||
transition: background-color 0.1s linear, border-color 0.1s linear;
|
||||
}
|
||||
|
||||
.cf-container__tabs-list .cf-container__tabs-item button {
|
||||
background: 0;
|
||||
border: 0;
|
||||
padding: 10px 12px;
|
||||
margin: 0;
|
||||
flex: 1;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
flex: 1;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 10px 12px;
|
||||
background: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.cf-container__tabs-list .cf-container__tabs-item button span {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.cf-container__tabs-list .cf-container__tabs-item:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cf-container__tabs-list .cf-container__tabs-item--current {
|
||||
background-color: #fff;
|
||||
border-bottom-color: #fff;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-horizontal {
|
||||
padding: 12px 12px 0;
|
||||
border-bottom: 1px solid #e2e4e7;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-horizontal .cf-container__tabs-list {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-vertical {
|
||||
width: 300px;
|
||||
border-right: 1px solid #e2e4e7;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-vertical .cf-container__tabs-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-vertical .cf-container__tabs-list .cf-container__tabs-item {
|
||||
margin: 0;
|
||||
justify-content: flex-start;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
border-top: 1px solid #e2e4e7;
|
||||
border-bottom: 1px solid #e2e4e7;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-vertical .cf-container__tabs-list .cf-container__tabs-item:first-of-type {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-vertical .cf-container__tabs-list .cf-container__tabs-item button {
|
||||
text-align: left;
|
||||
font-weight: 500;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.cf-container__tabs--tabbed-vertical .cf-container__tabs-list .cf-container__tabs-item + .cf-container__tabs-item {
|
||||
border-top: 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue