Verified Commit 3680d86a authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3253286 by lauriii, ckrina, bnjmnm, xjm: Remove unnecessary template...

Issue #3253286 by lauriii, ckrina, bnjmnm, xjm: Remove unnecessary template overrides and associated code from starterkit theme

(cherry picked from commit 3fe2df71)
parent 9243da8a
Loading
Loading
Loading
Loading
+0 −40
Original line number Diff line number Diff line
/**
 * @file
 * Styling for the Book module.
 */

.book-navigation .menu {
  padding-top: 1em;
  padding-bottom: 0;
}
.book-navigation .book-pager {
  overflow: auto;
  margin: 0;
  padding: 0.5em 0;
}
.book-pager__item {
  display: inline-block;
  list-style-type: none;
  vertical-align: top;
}
.book-pager__item--previous {
  width: 45%;
  text-align: left; /* LTR */
}
[dir="rtl"] .book-pager__item--previous {
  float: right;
  text-align: right;
}
.book-pager__item--center {
  width: 8%;
  text-align: center;
}
.book-pager__item--next {
  float: right; /* LTR */
  width: 45%;
  text-align: right; /* LTR */
}
[dir="rtl"] .book-pager__item--next {
  float: left;
  text-align: left;
}
+0 −46
Original line number Diff line number Diff line
/**
 * @file
 * Styling for the Forum module.
 */

.forum__description {
  margin: 0.5em;
  font-size: 0.9em;
}
.forum__icon {
  float: left; /* LTR */
  width: 24px;
  height: 24px;
  margin: 0 9px 0 0; /* LTR */
  background-image: url(../../images/icons/forum-icons.png);
  background-repeat: no-repeat;
}
[dir="rtl"] .forum__icon {
  float: right;
  margin: 0 0 0 9px;
}
.forum__title {
  overflow: hidden;
}
.forum .indented {
  margin-left: 20px; /* LTR */
}
[dir="rtl"] .forum .indented {
  margin-right: 20px;
  margin-left: 0;
}
.forum__topic-status--new {
  background-position: -24px 0;
}
.forum__topic-status--hot {
  background-position: -48px 0;
}
.forum__topic-status--hot-new {
  background-position: -72px 0;
}
.forum__topic-status--sticky {
  background-position: -96px 0;
}
.forum__topic-status--closed {
  background-position: -120px 0;
}
+0 −20
Original line number Diff line number Diff line
/**
 * @file
 * Media Embed filter: default styling for media embed errors.
 */

/**
 * The caption filter's styling overrides ours, so add a more specific selector
 * to account for that.
 */
.media-embed-error,
.caption > .media-embed-error {
  max-width: 200px;
  padding: 100px 20px 20px;
  text-align: center;
  background-color: #ebebeb;
  background-image: url(../../images/icons/no-thumbnail.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100px 100px;
}
+0 −28
Original line number Diff line number Diff line
/**
 * @file
 * Contains minimal layout styling for the media library.
 */

.media-library-wrapper {
  display: flex;
}

.media-library-menu {
  flex-basis: 20%;
  flex-shrink: 0;
}

.media-library-content {
  flex-grow: 1;
}

.media-library-views-form {
  display: flex;
  flex-wrap: wrap;
}

.media-library-views-form .media-library-item {
  justify-content: space-between;
  max-width: 23%;
  margin: 1%;
}
−1.72 KiB
Loading image diff...
Loading