מדיה ויקי:Gadget-PageNumbers.css

מתוך ויקיטקסט, מאגר הטקסטים החופשי

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

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
  • אופרה: ללחוץ על Ctrl-F5.
/**
 * This is CSS for the [[MediaWiki:Gadget-PageNumbers.js]] gadget
 * Based on [[en:MediaWiki:Gadget-PageNumbers-core.css]]
 *
 * This defines some common CSS that applies to all layouts, as well
 * as the side-wide Layouts.
 */

/* The clearfix */
.wsg-pagenumbers-clearfix:after {
  content: "";
  display: table;
  clear: both;
}


#ct-pagenumbers {
    position:absolute;
    top:0;
    left:0;
}

/*
 * Style of the pagenumber span when inline with the text
 */
span.pagenumber {
    color:#666666;
    font-size:inherit;
    line-height:inherit;
    font-family:monospace;
    font-weight:600;
    text-shadow:0em 0em 0.25em #A8A;
    vertical-align:top;
}

/*
 * Style of the pagenumbers when beside the text
 */
div.pagenumber {
    position:absolute;
    font-size:calc(1rem - 5px);
    line-height:calc(1rem * 1);
    font-weight:normal;
    font-style:normal;
    text-indent:0em;
}

/*
 * Hidden pagenumbers
 */
.pagenumber.pagenumber-invisible {
    display:none;
}

/*
 * Page extent overlay
 */
#highlight-area {
    display:none;
    position:absolute;
    width:100%;
}

#highlight-area > div {
    background-color: #000000;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

/*
 * Display options (other than layouts)
 */

.ws-display-serif {
    font-family: Georgia,serif;
}