Unverified Commit 9d0716ac authored by Lauri Timmanee's avatar Lauri Timmanee Committed by Lauri Timmanee
Browse files

Issue #3304752 by lauriii, mherchel: Icons are missing

parent 8578e03e
Loading
Loading
Loading
Loading
+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/menu-expanded.png) 0 100% no-repeat; /* LTR */
}
[dir="rtl"] .collapse-processed > summary:before {
  float: right;
+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/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/feed.svg) no-repeat;
}
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
  padding: 100px 20px 20px;
  text-align: center;
  background-color: #ebebeb;
  background-image: url(../../../../../modules/media/images/icons/no-thumbnail.png);
  background-image: url(../../../images/no-thumbnail.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100px 100px;
+3 −3
Original line number Diff line number Diff line
@@ -16,14 +16,14 @@ ul.menu {
}
.menu-item--expanded {
  list-style-type: circle;
  list-style-image: url(../../../../../misc/menu-expanded.png);
  list-style-image: url(../../../images/menu-expanded.png);
}
.menu-item--collapsed {
  list-style-type: disc;
  list-style-image: url(../../../../../misc/menu-collapsed.png); /* LTR */
  list-style-image: url(../../../images/menu-collapsed.png); /* LTR */
}
[dir="rtl"] .menu-item--collapsed {
  list-style-image: url(../../../../../misc/menu-collapsed-rtl.png);
  list-style-image: url(../../../images/menu-collapsed-rtl.png);
}
.menu-item {
  margin: 0;
Loading