MediaWiki:Common.css: Difference between revisions

mNo edit summary
mNo edit summary
Line 825: Line 825:
   margin: 0;
   margin: 0;
   background: transparent !important;
   background: transparent !important;
}
/* =========================================================
  OOO STEP (Guide / Tutorial Step Block)
  ========================================================= */
.ooo-step {
  margin: 26px 0;
  padding: 14px 18px;
  border-left: 5px solid var(--ooo-accent);
  border-radius: 6px;
  background: linear-gradient(
    to right,
    rgba(245,196,0,0.06),
    transparent
  );
}
/* Step header */
.ooo-step__title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ooo-accent);
}
/* Step number */
.ooo-step__number {
  font-weight: 900;
  margin-right: 6px;
}
/* Step content */
.ooo-step__content {
  line-height: 1.65;
  font-size: 0.98rem;
}
/* Dark theme tuning */
.skin-theme-clientpref-night .ooo-step {
  background: linear-gradient(
    to right,
    rgba(245,196,0,0.12),
    transparent
  );
}
}