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
Loading
Loading
Loading
Loading
+0 −19
Original line number Diff line number Diff line
/**
 * @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;
}
+0 −153
Original line number Diff line number Diff line
/**
 * @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;
  }
}
−116 B
Loading image diff...
−116 B
Loading image diff...
−230 B
Loading image diff...
Loading