מדיה ויקי:Common.css

מתוך ויקיספר, אוסף הספרים והמדריכים החופשי

הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
  • אופרה: ללחוץ על Ctrl-F5.
/* הסגנונות שנכתבים כאן ישפיעו על כל העיצובים */

/* Hide the first heading in the main page */
.page-עמוד_ראשי.action-view #firstHeading {
    display: none;
}

/* Decrease references size */
.references {
    font-size: 90%;
}

/* T156351: Support for Parsoid's Cite implementation */
a[rel="mw:referencedBy"]::before {
    font-weight: bold;
    content: "^";
}
span[rel="mw:referencedBy"]::before {
    font-weight: bold;
    content: "^ ";
}

/* Change the color of links to redirects in some special pages */
.allpagesredirect a {
    color: grey;
}

/* Mark the new page indicator in some special pages */
.newpage {
    color: #fc6d00;
}

/* Horizontal scrollbar for <pre> elements */
pre {
    overflow-x: auto;
}

/* Mark edits caught by Abuse Filter */
.mw-tag-problematic_words,
.mw-tag-emoji {
    background: #ffe0e0;
}

/* Mark the number of watchers after clicking the link in the revision history */
.action-info :target {
    background: #def;
}

/* Enhancements for [[MediaWiki:Edittools]] */
.mw-editTools a {
    padding: 0.1em;
}
.mw-editTools a:hover {
    text-decoration: none;
    background: #eaeaea;
}

/* Fix dialogues in the editing page (until it's fixed in core) */
.ui-dialog {
    right: auto;
}
.ui-autocomplete {
    right: inherit;
}