Initial Drupal 11 with DDEV setup
This commit is contained in:
		@ -0,0 +1,32 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Alignment classes for text and block level elements.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.text-align-left {
 | 
			
		||||
  text-align: left;
 | 
			
		||||
}
 | 
			
		||||
.text-align-right {
 | 
			
		||||
  text-align: right;
 | 
			
		||||
}
 | 
			
		||||
.text-align-center {
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.text-align-justify {
 | 
			
		||||
  text-align: justify;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Alignment classes for block level elements (images, videos, blockquotes, etc.)
 | 
			
		||||
 */
 | 
			
		||||
.align-left {
 | 
			
		||||
  float: left;
 | 
			
		||||
}
 | 
			
		||||
.align-right {
 | 
			
		||||
  float: right;
 | 
			
		||||
}
 | 
			
		||||
.align-center {
 | 
			
		||||
  display: block;
 | 
			
		||||
  margin-right: auto;
 | 
			
		||||
  margin-left: auto;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,19 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Float clearing.
 | 
			
		||||
 *
 | 
			
		||||
 * Based on the micro clearfix hack by Nicolas Gallagher, with the :before
 | 
			
		||||
 * pseudo selector removed to allow normal top margin collapse.
 | 
			
		||||
 *
 | 
			
		||||
 * @see http://nicolasgallagher.com/micro-clearfix-hack
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.clearfix::after {
 | 
			
		||||
  display: table;
 | 
			
		||||
  clear: both;
 | 
			
		||||
  content: "";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.nowrap {
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,13 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Inline items.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.container-inline div,
 | 
			
		||||
.container-inline label {
 | 
			
		||||
  display: inline-block;
 | 
			
		||||
}
 | 
			
		||||
/* Details contents always need to be rendered as block. */
 | 
			
		||||
.container-inline .details-wrapper {
 | 
			
		||||
  display: block;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,53 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Utility classes to hide elements in different ways.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Hide elements from all users.
 | 
			
		||||
 *
 | 
			
		||||
 * Used for elements which should not be immediately displayed to any user. An
 | 
			
		||||
 * example would be collapsible details that will be expanded with a click
 | 
			
		||||
 * from a user. The effect of this class can be toggled with the jQuery show()
 | 
			
		||||
 * and hide() functions.
 | 
			
		||||
 */
 | 
			
		||||
.hidden {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Hide elements visually, but keep them available for screen readers.
 | 
			
		||||
 *
 | 
			
		||||
 * Used for information required for screen reader users to understand and use
 | 
			
		||||
 * the site where visual display is undesirable. Information provided in this
 | 
			
		||||
 * manner should be kept concise, to avoid unnecessary burden on the user.
 | 
			
		||||
 * "!important" is used to prevent unintentional overrides.
 | 
			
		||||
 */
 | 
			
		||||
.visually-hidden {
 | 
			
		||||
  position: absolute !important;
 | 
			
		||||
  overflow: hidden;
 | 
			
		||||
  clip: rect(1px, 1px, 1px, 1px);
 | 
			
		||||
  width: 1px;
 | 
			
		||||
  height: 1px;
 | 
			
		||||
  word-wrap: normal;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * The .focusable class extends the .visually-hidden class to allow
 | 
			
		||||
 * the element to be focusable when navigated to via the keyboard.
 | 
			
		||||
 */
 | 
			
		||||
.visually-hidden.focusable:active,
 | 
			
		||||
.visually-hidden.focusable:focus-within {
 | 
			
		||||
  position: static !important;
 | 
			
		||||
  overflow: visible;
 | 
			
		||||
  clip: auto;
 | 
			
		||||
  width: auto;
 | 
			
		||||
  height: auto;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Hide visually and from screen readers, but maintain layout.
 | 
			
		||||
 */
 | 
			
		||||
.invisible {
 | 
			
		||||
  visibility: hidden;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,19 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Styles for item list.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.item-list__comma-list,
 | 
			
		||||
.item-list__comma-list li {
 | 
			
		||||
  display: inline;
 | 
			
		||||
}
 | 
			
		||||
.item-list__comma-list {
 | 
			
		||||
  margin: 0;
 | 
			
		||||
  padding: 0;
 | 
			
		||||
}
 | 
			
		||||
.item-list__comma-list li::after {
 | 
			
		||||
  content: ", ";
 | 
			
		||||
}
 | 
			
		||||
.item-list__comma-list li:last-child::after {
 | 
			
		||||
  content: "";
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										22
									
								
								web/core/themes/stable9/css/system/components/js.module.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								web/core/themes/stable9/css/system/components/js.module.css
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,22 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Utility classes to assist with Javascript functionality.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * For anything you want to hide on page load when JS is enabled, so
 | 
			
		||||
 * that you can use the JS to control visibility and avoid flicker.
 | 
			
		||||
 */
 | 
			
		||||
.js .js-hide {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * For anything you want to show on page load only when JS is enabled.
 | 
			
		||||
 */
 | 
			
		||||
.js-show {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
.js .js-show {
 | 
			
		||||
  display: block;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,8 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Utility class to prevent text wrapping.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.nowrap {
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,8 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @file
 | 
			
		||||
 * Contain positioned elements.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.position-container {
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,14 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @file
 | 
			
		||||
 * Utility class to remove browser styles, especially for button.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.reset-appearance {
 | 
			
		||||
  margin: 0;
 | 
			
		||||
  padding: 0;
 | 
			
		||||
  border: 0 none;
 | 
			
		||||
  background: transparent;
 | 
			
		||||
  line-height: inherit;
 | 
			
		||||
  -webkit-appearance: none;
 | 
			
		||||
  appearance: none;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,30 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Styles for the system status counter component.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.system-status-counter__status-icon {
 | 
			
		||||
  display: inline-block;
 | 
			
		||||
  width: 25px;
 | 
			
		||||
  height: 25px;
 | 
			
		||||
  vertical-align: middle;
 | 
			
		||||
}
 | 
			
		||||
.system-status-counter__status-icon::before {
 | 
			
		||||
  display: block;
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  content: "";
 | 
			
		||||
  background-repeat: no-repeat;
 | 
			
		||||
  background-position: center 2px;
 | 
			
		||||
  background-size: 16px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.system-status-counter__status-icon--error::before {
 | 
			
		||||
  background-image: url(../../../../../misc/icons/e32700/error.svg);
 | 
			
		||||
}
 | 
			
		||||
.system-status-counter__status-icon--warning::before {
 | 
			
		||||
  background-image: url(../../../../../misc/icons/e29700/warning.svg);
 | 
			
		||||
}
 | 
			
		||||
.system-status-counter__status-icon--checked::before {
 | 
			
		||||
  background-image: url(../../../../../misc/icons/73b355/check.svg);
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,27 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Styles for the system status report counters.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.system-status-report-counters__item {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  margin-bottom: 0.5em;
 | 
			
		||||
  padding: 0.5em 0;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
  background-color: rgb(0, 0, 0, 0.063);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen and (min-width: 60em) {
 | 
			
		||||
  .system-status-report-counters {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-wrap: wrap;
 | 
			
		||||
    justify-content: space-between;
 | 
			
		||||
  }
 | 
			
		||||
  .system-status-report-counters__item--half-width {
 | 
			
		||||
    width: 49%;
 | 
			
		||||
  }
 | 
			
		||||
  .system-status-report-counters__item--third-width {
 | 
			
		||||
    width: 33%;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,14 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Default styles for the System Status general info.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
.system-status-general-info__item {
 | 
			
		||||
  margin-top: 1em;
 | 
			
		||||
  padding: 0 1em 1em;
 | 
			
		||||
  border: 1px solid #ccc;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.system-status-general-info__item-title {
 | 
			
		||||
  border-bottom: 1px solid #ccc;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										408
									
								
								web/core/themes/stable9/css/system/system.admin.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										408
									
								
								web/core/themes/stable9/css/system/system.admin.css
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,408 @@
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Styles for administration pages.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Reusable layout styles.
 | 
			
		||||
 */
 | 
			
		||||
.layout-container {
 | 
			
		||||
  margin: 0 1.5em;
 | 
			
		||||
}
 | 
			
		||||
.layout-container::after {
 | 
			
		||||
  display: table;
 | 
			
		||||
  clear: both;
 | 
			
		||||
  content: "";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen and (min-width: 38em) {
 | 
			
		||||
  .layout-container {
 | 
			
		||||
    margin: 0 2.5em;
 | 
			
		||||
  }
 | 
			
		||||
  .layout-column {
 | 
			
		||||
    float: left; /* LTR */
 | 
			
		||||
    box-sizing: border-box;
 | 
			
		||||
  }
 | 
			
		||||
  [dir="rtl"] .layout-column {
 | 
			
		||||
    float: right;
 | 
			
		||||
  }
 | 
			
		||||
  .layout-column + .layout-column {
 | 
			
		||||
    padding-left: 10px; /* LTR */
 | 
			
		||||
  }
 | 
			
		||||
  [dir="rtl"] .layout-column + .layout-column {
 | 
			
		||||
    padding-right: 10px;
 | 
			
		||||
    padding-left: 0;
 | 
			
		||||
  }
 | 
			
		||||
  .layout-column--half {
 | 
			
		||||
    width: 50%;
 | 
			
		||||
  }
 | 
			
		||||
  .layout-column--quarter {
 | 
			
		||||
    width: 25%;
 | 
			
		||||
  }
 | 
			
		||||
  .layout-column--three-quarter {
 | 
			
		||||
    width: 75%;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Panel.
 | 
			
		||||
 * Used to visually group items together.
 | 
			
		||||
 */
 | 
			
		||||
.panel {
 | 
			
		||||
  padding: 5px 5px 15px;
 | 
			
		||||
}
 | 
			
		||||
.panel__description {
 | 
			
		||||
  margin: 0 0 3px;
 | 
			
		||||
  padding: 2px 0 3px 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * System compact link: to toggle the display of description text.
 | 
			
		||||
 */
 | 
			
		||||
.compact-link {
 | 
			
		||||
  margin: 0 0 0.5em 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Quick inline admin links.
 | 
			
		||||
 */
 | 
			
		||||
small .admin-link::before {
 | 
			
		||||
  content: " [";
 | 
			
		||||
}
 | 
			
		||||
small .admin-link::after {
 | 
			
		||||
  content: "]";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Modules page.
 | 
			
		||||
 */
 | 
			
		||||
.system-modules thead > tr {
 | 
			
		||||
  border: 0;
 | 
			
		||||
}
 | 
			
		||||
.system-modules div.incompatible {
 | 
			
		||||
  font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td.checkbox {
 | 
			
		||||
  width: 4%;
 | 
			
		||||
  min-width: 25px;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td.module {
 | 
			
		||||
  width: 25%;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td {
 | 
			
		||||
  vertical-align: top;
 | 
			
		||||
}
 | 
			
		||||
.system-modules label,
 | 
			
		||||
.system-modules-uninstall label {
 | 
			
		||||
  color: #1d1d1d;
 | 
			
		||||
  font-size: 1.15em;
 | 
			
		||||
}
 | 
			
		||||
.system-modules details {
 | 
			
		||||
  overflow: hidden; /* truncates descriptions if too long */
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
  text-overflow: ellipsis;
 | 
			
		||||
  color: #5c5c5b;
 | 
			
		||||
  line-height: 20px;
 | 
			
		||||
}
 | 
			
		||||
.system-modules details[open] {
 | 
			
		||||
  overflow: visible;
 | 
			
		||||
  height: auto;
 | 
			
		||||
  white-space: normal;
 | 
			
		||||
}
 | 
			
		||||
.system-modules details[open] summary .text {
 | 
			
		||||
  text-transform: none;
 | 
			
		||||
  -webkit-hyphens: auto;
 | 
			
		||||
  hyphens: auto;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td details a {
 | 
			
		||||
  color: #5c5c5b;
 | 
			
		||||
  border: 0;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td details {
 | 
			
		||||
  height: 20px;
 | 
			
		||||
  margin: 0;
 | 
			
		||||
  border: 0;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td details summary {
 | 
			
		||||
  padding: 0;
 | 
			
		||||
  cursor: default;
 | 
			
		||||
  text-transform: none;
 | 
			
		||||
  font-weight: normal;
 | 
			
		||||
}
 | 
			
		||||
.system-modules td {
 | 
			
		||||
  padding-left: 0; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .system-modules td {
 | 
			
		||||
  padding-right: 0;
 | 
			
		||||
  padding-left: 12px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen and (max-width: 40em) {
 | 
			
		||||
  .system-modules td.name {
 | 
			
		||||
    width: 20%;
 | 
			
		||||
  }
 | 
			
		||||
  .system-modules td.description {
 | 
			
		||||
    width: 40%;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
.system-modules .requirements {
 | 
			
		||||
  max-width: 490px;
 | 
			
		||||
  padding: 5px 0;
 | 
			
		||||
}
 | 
			
		||||
.system-modules .links {
 | 
			
		||||
  overflow: hidden; /* prevents collapse */
 | 
			
		||||
}
 | 
			
		||||
.system-modules .checkbox {
 | 
			
		||||
  margin: 0 5px;
 | 
			
		||||
}
 | 
			
		||||
.system-modules .checkbox .form-item {
 | 
			
		||||
  margin-bottom: 0;
 | 
			
		||||
}
 | 
			
		||||
.admin-requirements,
 | 
			
		||||
.admin-required {
 | 
			
		||||
  color: #666;
 | 
			
		||||
  font-size: 0.9em;
 | 
			
		||||
}
 | 
			
		||||
.admin-enabled {
 | 
			
		||||
  color: #080;
 | 
			
		||||
}
 | 
			
		||||
.admin-missing {
 | 
			
		||||
  color: #f00;
 | 
			
		||||
}
 | 
			
		||||
.module-link {
 | 
			
		||||
  display: block;
 | 
			
		||||
  float: left; /* LTR */
 | 
			
		||||
  margin-top: 2px;
 | 
			
		||||
  padding: 2px 20px;
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .module-link {
 | 
			
		||||
  float: right;
 | 
			
		||||
}
 | 
			
		||||
.module-link-help {
 | 
			
		||||
  background: url(../../../../misc/icons/787878/questionmark-disc.svg) 0 50% no-repeat; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .module-link-help {
 | 
			
		||||
  background-position: top 50% right 0;
 | 
			
		||||
}
 | 
			
		||||
.module-link-permissions {
 | 
			
		||||
  background: url(../../../../misc/icons/787878/key.svg) 0 50% no-repeat; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .module-link-permissions {
 | 
			
		||||
  background-position: top 50% right 0;
 | 
			
		||||
}
 | 
			
		||||
.module-link-configure {
 | 
			
		||||
  background: url(../../../../misc/icons/787878/cog.svg) 0 50% no-repeat; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .module-link-configure {
 | 
			
		||||
  background-position: top 50% right 0;
 | 
			
		||||
}
 | 
			
		||||
.module-link--non-stable {
 | 
			
		||||
  padding-left: 18px;
 | 
			
		||||
  background: url(../../../../misc/icons/e29700/warning.svg) 0 50% no-repeat; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .module-link--non-stable {
 | 
			
		||||
  padding-right: 18px;
 | 
			
		||||
  padding-left: 0;
 | 
			
		||||
  background-position: top 50% right 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Status report. */
 | 
			
		||||
.system-status-report__status-title {
 | 
			
		||||
  position: relative;
 | 
			
		||||
  box-sizing: border-box;
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  padding: 10px 6px 10px 40px; /* LTR */
 | 
			
		||||
  vertical-align: top;
 | 
			
		||||
  background-color: transparent;
 | 
			
		||||
  font-weight: normal;
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .system-status-report__status-title {
 | 
			
		||||
  padding: 10px 40px 10px 6px;
 | 
			
		||||
}
 | 
			
		||||
.system-status-report__status-icon::before {
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: 12px;
 | 
			
		||||
  left: 12px; /* LTR */
 | 
			
		||||
  display: block;
 | 
			
		||||
  width: 16px;
 | 
			
		||||
  height: 16px;
 | 
			
		||||
  content: "";
 | 
			
		||||
  background-repeat: no-repeat;
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .system-status-report__status-icon::before {
 | 
			
		||||
  right: 12px;
 | 
			
		||||
  left: auto;
 | 
			
		||||
}
 | 
			
		||||
.system-status-report__status-icon--error::before {
 | 
			
		||||
  background-image: url(../../../../misc/icons/e32700/error.svg);
 | 
			
		||||
}
 | 
			
		||||
.system-status-report__status-icon--warning::before {
 | 
			
		||||
  background-image: url(../../../../misc/icons/e29700/warning.svg);
 | 
			
		||||
}
 | 
			
		||||
.system-status-report__entry__value {
 | 
			
		||||
  padding: 1em 0.5em;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Appearance page.
 | 
			
		||||
 */
 | 
			
		||||
.theme-info__header {
 | 
			
		||||
  margin-bottom: 0;
 | 
			
		||||
  font-weight: normal;
 | 
			
		||||
}
 | 
			
		||||
.theme-default .theme-info__header {
 | 
			
		||||
  font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
.theme-info__description {
 | 
			
		||||
  margin-top: 0;
 | 
			
		||||
}
 | 
			
		||||
.system-themes-list {
 | 
			
		||||
  margin-bottom: 20px;
 | 
			
		||||
}
 | 
			
		||||
.system-themes-list-uninstalled {
 | 
			
		||||
  padding-top: 20px;
 | 
			
		||||
  border-top: 1px solid #cdcdcd;
 | 
			
		||||
}
 | 
			
		||||
.system-themes-list__header {
 | 
			
		||||
  margin: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.theme-selector {
 | 
			
		||||
  padding-top: 20px;
 | 
			
		||||
}
 | 
			
		||||
.theme-selector .screenshot,
 | 
			
		||||
.theme-selector .no-screenshot {
 | 
			
		||||
  max-width: 100%;
 | 
			
		||||
  height: auto;
 | 
			
		||||
  padding: 2px;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
  vertical-align: bottom;
 | 
			
		||||
  border: 1px solid #e0e0d8;
 | 
			
		||||
}
 | 
			
		||||
.theme-default .screenshot {
 | 
			
		||||
  border: 1px solid #aaa;
 | 
			
		||||
}
 | 
			
		||||
.system-themes-list-uninstalled .screenshot,
 | 
			
		||||
.system-themes-list-uninstalled .no-screenshot {
 | 
			
		||||
  max-width: 194px;
 | 
			
		||||
  height: auto;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Theme display without vertical toolbar.
 | 
			
		||||
 */
 | 
			
		||||
@media screen and (min-width: 45em) {
 | 
			
		||||
  body:not(.toolbar-vertical) .system-themes-list-installed .screenshot,
 | 
			
		||||
  body:not(.toolbar-vertical) .system-themes-list-installed .no-screenshot {
 | 
			
		||||
    float: left; /* LTR */
 | 
			
		||||
    width: 294px;
 | 
			
		||||
    margin: 0 20px 0 0; /* LTR */
 | 
			
		||||
  }
 | 
			
		||||
  [dir="rtl"] body:not(.toolbar-vertical) .system-themes-list-installed .screenshot,
 | 
			
		||||
  [dir="rtl"] body:not(.toolbar-vertical) .system-themes-list-installed .no-screenshot {
 | 
			
		||||
    float: right;
 | 
			
		||||
    margin: 0 0 0 20px;
 | 
			
		||||
  }
 | 
			
		||||
  body:not(.toolbar-vertical) .system-themes-list-installed .system-themes-list__header {
 | 
			
		||||
    margin-top: 0;
 | 
			
		||||
  }
 | 
			
		||||
  body:not(.toolbar-vertical) .system-themes-list-uninstalled .theme-selector {
 | 
			
		||||
    float: left; /* LTR */
 | 
			
		||||
    box-sizing: border-box;
 | 
			
		||||
    width: 31.25%;
 | 
			
		||||
    padding: 20px 20px 20px 0; /* LTR */
 | 
			
		||||
  }
 | 
			
		||||
  [dir="rtl"] body:not(.toolbar-vertical) .system-themes-list-uninstalled .theme-selector {
 | 
			
		||||
    float: right;
 | 
			
		||||
    padding: 20px 0 20px 20px;
 | 
			
		||||
  }
 | 
			
		||||
  body:not(.toolbar-vertical) .system-themes-list-uninstalled .theme-info {
 | 
			
		||||
    min-height: 170px;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Theme display with vertical toolbar.
 | 
			
		||||
 */
 | 
			
		||||
@media screen and (min-width: 60em) {
 | 
			
		||||
  .toolbar-vertical .system-themes-list-installed .screenshot,
 | 
			
		||||
  .toolbar-vertical .system-themes-list-installed .no-screenshot {
 | 
			
		||||
    float: left; /* LTR */
 | 
			
		||||
    width: 294px;
 | 
			
		||||
    margin: 0 20px 0 0; /* LTR */
 | 
			
		||||
  }
 | 
			
		||||
  [dir="rtl"] .toolbar-vertical .system-themes-list-installed .screenshot,
 | 
			
		||||
  [dir="rtl"] .toolbar-vertical .system-themes-list-installed .no-screenshot {
 | 
			
		||||
    float: right;
 | 
			
		||||
    margin: 0 0 0 20px;
 | 
			
		||||
  }
 | 
			
		||||
  .toolbar-vertical .system-themes-list-installed .theme-info__header {
 | 
			
		||||
    margin-top: 0;
 | 
			
		||||
  }
 | 
			
		||||
  .toolbar-vertical .system-themes-list-uninstalled .theme-selector {
 | 
			
		||||
    float: left; /* LTR */
 | 
			
		||||
    box-sizing: border-box;
 | 
			
		||||
    width: 31.25%;
 | 
			
		||||
    padding: 20px 20px 20px 0; /* LTR */
 | 
			
		||||
  }
 | 
			
		||||
  [dir="rtl"] .toolbar-vertical .system-themes-list-uninstalled .theme-selector {
 | 
			
		||||
    float: right;
 | 
			
		||||
    padding: 20px 0 20px 20px;
 | 
			
		||||
  }
 | 
			
		||||
  .toolbar-vertical .system-themes-list-uninstalled .theme-info {
 | 
			
		||||
    min-height: 170px;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
.system-themes-list-installed .theme-info {
 | 
			
		||||
  max-width: 940px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.theme-selector .incompatible {
 | 
			
		||||
  margin-top: 10px;
 | 
			
		||||
  font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
.theme-selector .operations {
 | 
			
		||||
  margin: 10px 0 0 0;
 | 
			
		||||
  padding: 0;
 | 
			
		||||
}
 | 
			
		||||
.theme-selector .operations li {
 | 
			
		||||
  float: left; /* LTR */
 | 
			
		||||
  margin: 0;
 | 
			
		||||
  padding: 0 0.7em;
 | 
			
		||||
  list-style-type: none;
 | 
			
		||||
  border-right: 1px solid #cdcdcd; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .theme-selector .operations li {
 | 
			
		||||
  float: right;
 | 
			
		||||
  border-right: none;
 | 
			
		||||
  border-left: 1px solid #cdcdcd;
 | 
			
		||||
}
 | 
			
		||||
.theme-selector .operations li:last-child {
 | 
			
		||||
  padding: 0 0 0 0.7em; /* LTR */
 | 
			
		||||
  border-right: none; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .theme-selector .operations li:last-child {
 | 
			
		||||
  padding: 0 0.7em 0 0;
 | 
			
		||||
  border-left: none;
 | 
			
		||||
}
 | 
			
		||||
.theme-selector .operations li:first-child {
 | 
			
		||||
  padding: 0 0.7em 0 0; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .theme-selector .operations li:first-child {
 | 
			
		||||
  padding: 0 0 0 0.7em;
 | 
			
		||||
}
 | 
			
		||||
.system-themes-admin-form {
 | 
			
		||||
  clear: left; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] .system-themes-admin-form {
 | 
			
		||||
  clear: right;
 | 
			
		||||
}
 | 
			
		||||
.cron-description__run-cron {
 | 
			
		||||
  display: block;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.system-cron-settings__link {
 | 
			
		||||
  overflow-wrap: break-word;
 | 
			
		||||
  word-wrap: break-word;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										41
									
								
								web/core/themes/stable9/css/system/system.diff.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								web/core/themes/stable9/css/system/system.diff.css
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,41 @@
 | 
			
		||||
/**
 | 
			
		||||
 * Traditional split diff theming
 | 
			
		||||
 */
 | 
			
		||||
table.diff {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  margin-bottom: 20px;
 | 
			
		||||
  border-spacing: 4px;
 | 
			
		||||
}
 | 
			
		||||
table.diff .diff-context {
 | 
			
		||||
  background-color: #fafafa;
 | 
			
		||||
}
 | 
			
		||||
table.diff .diff-deletedline {
 | 
			
		||||
  width: 50%;
 | 
			
		||||
  background-color: #ffa;
 | 
			
		||||
}
 | 
			
		||||
table.diff .diff-addedline {
 | 
			
		||||
  width: 50%;
 | 
			
		||||
  background-color: #afa;
 | 
			
		||||
}
 | 
			
		||||
table.diff .diffchange {
 | 
			
		||||
  color: #f00;
 | 
			
		||||
  font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
table.diff .diff-marker {
 | 
			
		||||
  width: 1.4em;
 | 
			
		||||
}
 | 
			
		||||
table.diff th {
 | 
			
		||||
  padding-right: inherit; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] table.diff th {
 | 
			
		||||
  padding-right: 0;
 | 
			
		||||
  padding-left: inherit;
 | 
			
		||||
}
 | 
			
		||||
table.diff td div {
 | 
			
		||||
  overflow: auto;
 | 
			
		||||
  padding: 0.1ex 0.5em;
 | 
			
		||||
  word-wrap: break-word;
 | 
			
		||||
}
 | 
			
		||||
table.diff td {
 | 
			
		||||
  padding: 0.1ex 0.4em;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										56
									
								
								web/core/themes/stable9/css/system/system.maintenance.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										56
									
								
								web/core/themes/stable9/css/system/system.maintenance.css
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,56 @@
 | 
			
		||||
/**
 | 
			
		||||
 * Update styles
 | 
			
		||||
 */
 | 
			
		||||
.update-results {
 | 
			
		||||
  margin-top: 3em;
 | 
			
		||||
  padding: 0.25em;
 | 
			
		||||
  border: 1px solid #ccc;
 | 
			
		||||
  background: #eee;
 | 
			
		||||
  font-size: smaller;
 | 
			
		||||
}
 | 
			
		||||
.update-results h2 {
 | 
			
		||||
  margin-top: 0.25em;
 | 
			
		||||
}
 | 
			
		||||
.update-results h4 {
 | 
			
		||||
  margin-bottom: 0.25em;
 | 
			
		||||
}
 | 
			
		||||
.update-results .none {
 | 
			
		||||
  color: #888;
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
}
 | 
			
		||||
.update-results .failure strong {
 | 
			
		||||
  color: #b63300;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Authorize.php styles
 | 
			
		||||
 */
 | 
			
		||||
#edit-submit-connection {
 | 
			
		||||
  clear: both;
 | 
			
		||||
}
 | 
			
		||||
#edit-submit-process,
 | 
			
		||||
.filetransfer {
 | 
			
		||||
  display: none;
 | 
			
		||||
  clear: both;
 | 
			
		||||
}
 | 
			
		||||
.js #edit-submit-connection {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
.js #edit-submit-process {
 | 
			
		||||
  display: block;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#edit-connection-settings-change-connection-type {
 | 
			
		||||
  margin: 2.6em 0.5em 0 1em; /* LTR */
 | 
			
		||||
}
 | 
			
		||||
[dir="rtl"] #edit-connection-settings-change-connection-type {
 | 
			
		||||
  margin-right: 1em;
 | 
			
		||||
  margin-left: 0.5em;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Theme maintenance styles
 | 
			
		||||
 */
 | 
			
		||||
.authorize-results__failure {
 | 
			
		||||
  font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user