Unverified Commit 42d12c15 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3308540 by lauriii, bnjmnm: Split the latest core classy history into...

Issue #3308540 by lauriii, bnjmnm:  Split the latest core classy history into the 1.0.x branch and cut a 1.0.0 release
parent 74cc8683
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
name: Classy
type: theme
base theme: stable
description: 'A base theme with sensible default CSS classes added. Learn how to use Classy as a base theme in the <a href="https://www.drupal.org/docs/8/theming">Drupal 8 Theming Guide</a>.'
description: 'The Classy base theme from Drupal 8/9 moved to contrib.'
package: Core
version: VERSION
hidden: true
core_version_requirement: ^9 || ^10

libraries:
  - classy/base
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
  width: 1em;
  height: 1em;
  content: "";
  background: url(../../../../misc/menu-expanded.png) 0 100% no-repeat; /* LTR */
  background: url(../../images/misc/menu-expanded.png) 0 100% no-repeat; /* LTR */
}
[dir="rtl"] .collapse-processed > summary:before {
  float: right;
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@
  opacity: 0.9;
  border-radius: 7px;
  background-color: #232323;
  background-image: url(../../../../misc/loading-small.gif);
  background-image: url(../../images/misc/loading-small.gif);
  background-repeat: no-repeat;
  background-position: center center;
}
+2 −2
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ label.option {
  content: "";
  vertical-align: super;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(../../../../misc/icons/ee0000/required.svg);
  background-image: url(../../images/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
}
@@ -99,6 +99,6 @@ abbr.ajax-changed {
  height: 14px;
  content: "";
  vertical-align: sub;
  background: url(../../../../misc/icons/e32700/error.svg) no-repeat;
  background: url(../../images/icons/e32700/error.svg) no-repeat;
  background-size: contain;
}
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

.icon-help {
  padding: 1px 0 1px 20px; /* LTR */
  background: url(../../../../misc/help.png) 0 50% no-repeat; /* LTR */
  background: url(../../images/misc/help.png) 0 50% no-repeat; /* LTR */
}
[dir="rtl"] .icon-help {
  padding: 1px 20px 1px 0;
@@ -17,5 +17,5 @@
  width: 16px;
  height: 16px;
  text-indent: -9999px;
  background: url(../../../../misc/feed.svg) no-repeat;
  background: url(../../images/misc/feed.svg) no-repeat;
}
Loading