Skip to content
Snippets Groups Projects
Verified Commit 6b65e07b authored by Jess's avatar Jess
Browse files

Issue #3307225 by Spokje, longwave, quietone: Remove leftover templates/CSS...

Issue #3307225 by Spokje, longwave, quietone: Remove leftover templates/CSS files from removed modules/assets from Stable 9

(cherry picked from commit 18c3f9a5)
parent f779b148
No related branches found
No related tags found
18 merge requests!8506Draft: Issue #3456536 by ibrahim tameme,!5646Issue #3350972 by nod_: [random test failure]...,!5600Issue #3350972 by nod_: [random test failure]...,!5343Issue #3305066 by quietone, Rename RedirectLeadingSlashesSubscriber,!3603#ISSUE 3346218 Add a different message on edit comment,!3555Issue #2473873: Views entity operations lack cacheability support, resulting in incorrect dropbuttons,!3494Issue #3327018 by Spokje, longwave, xjm, mondrake: Update PHPStan to 1.9.3 and...,!3410Issue #3340128: UserLoginForm::submitForm has some dead code,!3389Issue #3325184 by Spokje, andypost, xjm, smustgrave: $this->configFactory is...,!3381Issue #3332363: Refactor Claro's menus-and-lists stylesheet,!3307Issue #3326193: CKEditor 5 can grow past the viewport when there is a lot of content,!3236Issue #3332419: Refactor Claro's messages stylesheet,!3231Draft: Issue #3049525 by longwave, fougere, larowlan, kim.pepper, AaronBauman, Wim...,!3212Issue #3294003: Refactor Claro's entity-meta stylesheet,!3194Issue #3330981: Fix PHPStan L1 error "Relying on entity queries to check access by default is deprecated...",!3143Issue #3313342: [PHP 8.1] Deprecated function: strpos(): Passing null to parameter #1 LayoutBuilderUiCacheContext.php on line 28,!2972Issue #1845004: Replace custom password hashing library with PHP 5.5 password_hash(),!2296Issue #3100732: Allow specifying `meta` data on JSON:API objects
/**
* @file
* Language: add styling for elements that have a language attribute.
*/
/**
* Show the user that a 'lang' tag has been applied by adding a thin dotted
* border. We also append the value of the tag between brackets, for example:
* '(en)'. Since the html element has a 'lang' attribute too we only target
* elements within the html scope.
*/
html [lang] {
outline: 1px dotted gray;
}
html [lang]:after {
content: " ("attr(lang)")";
color: #666;
font-size: 10px;
}
/**
* @file
* Stylesheet for the administration pages of the Color module.
*/
.color-form {
max-width: 50em;
}
.farbtastic {
margin: 0 auto;
}
.color-form .form-item {
height: 2em;
margin: 0.5em 0;
padding: 0.5em;
}
.color-form label {
clear: left; /* LTR */
}
[dir="rtl"] .color-form label {
clear: right;
}
.color-form .form-text {
float: left; /* LTR */
width: 86%;
cursor: pointer;
text-align: center;
}
[dir="rtl"] .color-form .form-text {
float: right;
}
.color-palette__hook {
float: left; /* LTR */
width: 16px;
height: 16px;
}
[dir="rtl"] .color-palette__hook {
float: right;
}
.color-palette__hook.is-down,
.color-palette__hook.is-up,
.color-palette__hook.is-both {
background: url(../../images/color/hook.png) no-repeat 100% 0; /* LTR */
}
[dir="rtl"] .color-palette__hook.is-down,
[dir="rtl"] .color-palette__hook.is-up,
[dir="rtl"] .color-palette__hook.is-both {
background: url(../../images/color/hook-rtl.png) no-repeat 0 0;
}
.color-palette__hook.is-up {
background-position: 100% -27px; /* LTR */
}
[dir="rtl"] .color-palette__hook.is-up {
background-position: 0 -27px;
}
.color-palette__hook.is-both {
background-position: 100% -54px; /* LTR */
}
[dir="rtl"] .color-palette__hook.is-both {
background-position: 0 -54px;
}
/**
* The button also inherits from .link, which hides the background. Use a more
* specific selector to overwrite.
*/
button.color-palette__lock,
.color-palette__lock {
position: relative;
top: -1.7em;
left: -10px;
float: left; /* LTR */
width: 20px;
height: 19px;
cursor: pointer;
text-indent: -9999px;
direction: ltr;
border: 0;
outline: 0;
background: url(../../images/color/lock.png) no-repeat 50% 0;
}
[dir="rtl"] button.color-palette__lock,
[dir="rtl"] .color-palette__lock {
float: right;
}
/* Same as above .color-palette__lock rule. */
button.is-unlocked,
.is-unlocked {
background-position: 50% -22px;
}
/* wide viewport. */
@media screen and (min-width: 37.5625em) { /* 601px */
.color-placeholder {
float: right; /* LTR */
}
[dir="rtl"] .color-placeholder {
float: left;
}
.color-form .form-item {
margin: 0.5em 195px 0.5em 0; /* LTR */
}
[dir="rtl"] .color-form .form-item {
margin: 0.5em 0 0.5em 195px;
}
.color-form label {
float: left; /* LTR */
clear: left; /* LTR */
width: 15em;
}
[dir="rtl"] .color-form label {
float: right;
clear: right;
}
.color-form .form-text,
.color-form .form-select {
float: left; /* LTR */
width: auto;
}
[dir="rtl"] .color-form .form-text,
[dir="rtl"] .color-form .form-select {
float: right;
}
.color-palette__hook {
float: left; /* LTR */
margin-top: 3px;
}
[dir="rtl"] .color-palette__hook {
float: right;
}
}
.item-selected {
background: #eee;
}
/* Preview */
.color-preview {
display: none;
}
.js .color-preview {
position: relative;
display: block;
float: left; /* LTR */
}
.js[dir="rtl"] .color-preview {
float: right;
}
@media screen and (max-width: 30em) { /* 480px */
.color-form .color-preview-sidebar,
.color-form .color-preview-content {
width: auto;
margin: 0;
}
}
core/themes/stable9/images/color/hook-rtl.png

116 B

core/themes/stable9/images/color/hook.png

116 B

core/themes/stable9/images/color/lock.png

230 B

......@@ -12,11 +12,6 @@ libraries-override:
theme:
css/block.admin.css: css/block/block.admin.css
color/admin:
css:
theme:
css/color.admin.css: css/color/color.admin.css
config_translation/drupal.config_translation.admin:
css:
theme:
......
{#
/**
* @file
* Theme override for a theme's color form.
*
* Available variables:
* - form: Form elements for the color scheme form, including:
* - scheme: A color scheme form element. For example: a select element with
* color theme presets, or a color picker widget.
* - palette: Color fields that can be changed by entering in a new hex value.
* - html_preview: A HTML preview of the theme's current color scheme.
*
* @see template_preprocess_color_scheme_form()
*/
#}
<div class="color-form clearfix">
{{ form.scheme }}
<div class="clearfix color-palette js-color-palette">
{{ form.palette }}
</div>
{{ form|without('scheme', 'palette') }}
<h2>{{ 'Preview'|t }}</h2>
{{ html_preview }}
</div>
{#
/**
* @file
* Theme override to present a feed item in an aggregator page.
*
* Available variables:
* - url: URL to the originating feed item.
* - title: (optional) Title of the feed item.
* - content: All field items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use
* {{ content|without('field_example') }} to temporarily suppress the printing
* of a given element.
* - attributes: HTML attributes for the wrapper.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the main title tag that appears in the template.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
*
* @see template_preprocess_aggregator_item()
*/
#}
<article{{ attributes }}>
{{ title_prefix }}
{% if title %}
<h3>
<a href="{{ url }}">{{ title }}</a>
</h3>
{% endif %}
{{ title_suffix }}
{{ content }}
</article>
{#
/**
* @file
* Theme override to present an aggregator feed.
*
* The contents are rendered above feed listings when browsing source feeds.
* For example, "example.com/aggregator/sources/1".
*
* Available variables:
* - title: (optional) Title of the feed item.
* - content: All field items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use
* {{ content|without('field_example') }} to temporarily suppress the printing
* of a given element.
* - title_attributes: Same as attributes, except applied to the main title
* tag that appears in the template.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the main title tag that appears in the template.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
*
* @see template_preprocess_aggregator_feed()
*/
#}
{{ title_prefix }}
{% if title and not full %}
<h2{{ title_attributes }}>{{ title }}</h2>
{% endif %}
{{ title_suffix }}
{{ content }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment