Difference between revisions of "MediaWiki:Common.css"

From HCE Wiki - The Human Cognitive Enhancement Wiki
Jump to navigation Jump to search
(numbers occluded fix)
(url wrapping fix)
Line 125: Line 125:
 
     /*width: 100%;*/
 
     /*width: 100%;*/
 
     list-style-position: inside;
 
     list-style-position: inside;
 +
    /* wrap long text and urls */
 +
    white-space: pre; /* CSS 2.0 */
 +
    white-space: pre-wrap; /* CSS 2.1 */
 +
    white-space: pre-line; /* CSS 3.0 */
 +
    white-space: -pre-wrap; /* Opera 4-6 */
 +
    white-space: -o-pre-wrap; /* Opera 7 */
 +
    white-space: -moz-pre-wrap; /* Mozilla */
 +
    word-wrap: break-word; /* IE 5+ */
 +
}
 
}
 
}

Revision as of 14:57, 17 August 2015

/* CSS placed here will be applied to all skins */

/* Reference Tooltips, see MediaWiki:Gadget-ReferenceTooltips */
 
.referencetooltip {
        position: absolute;
        list-style: none;
        list-style-image: none;
        opacity: 0;
        font-size: 10px;
        margin: 0;
        z-index: 5;
        padding: 0;
}
.referencetooltip li {
        border: #080086 2px solid;
        max-width: 260px;
        padding: 10px 8px 13px 8px;
        margin: 0px;
        background-color: #F7F7F7;
        box-shadow: 2px 4px 2px rgba(0,0,0,0.3);
        -moz-box-shadow: 2px 4px 2px rgba(0,0,0,0.3);
        -webkit-box-shadow: 2px 4px 2px rgba(0,0,0,0.3);
}
.referencetooltip li+li {
        margin-left: 7px;
        margin-top: -2px;
        border: 0;
        padding: 0;
        height: 3px;
        width: 0px;
        background-color: transparent;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        border-top: 12px #080086 solid;
        border-right: 7px transparent solid;
        border-left: 7px transparent solid;
}
.referencetooltip>li+li::after {
        content: '';
        border-top: 8px #F7F7F7 solid;
        border-right: 5px transparent solid;
        border-left: 5px transparent solid;
        margin-top: -12px;
        margin-left: -5px;
        z-index: 1;
        height: 0px;
        width: 0px;
        display: block;
}
.client-js body .referencetooltip li li {
        border: none;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        height: auto;
        width: auto;
        margin: auto;
        padding: 0;
        position: static;
}
.RTflipped {
        padding-top: 13px;
}
.referencetooltip.RTflipped li+li {
        position: absolute;
        top: 2px;
        border-top: 0;
        border-bottom: 12px #080086 solid;
}
.referencetooltip.RTflipped li+li::after {
        border-top: 0;
        border-bottom: 8px #F7F7F7 solid;
        position: absolute;
        margin-top: 7px;
}
.RTsettings {
        float: right;
        height: 24px;
        width: 24px;
        cursor: pointer;
        background-image: url(//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Gear_icon.svg/24px-Gear_icon.svg.png);
        background-image: linear-gradient(transparent, transparent), url(//upload.wikimedia.org/wikipedia/commons/7/77/Gear_icon.svg);
        margin-top: -9px;
        margin-right: -7px;
        -webkit-transition: opacity 0.15s;
        -moz-transition: opacity 0.15s;
        -o-transition: opacity 0.15s;
        -ms-transition: opacity 0.15s;
        transition: opacity 0.15s;
        opacity: 0.6;
        filter: alpha(opacity=60);
}
.RTsettings:hover {
        opacity: 1;
        filter: alpha(opacity=100);
}
.RTTarget {
        border: #080086 2px solid;
}

/* Reflists style */

/* Make the list of references smaller */
ol.references,
div.reflist,
div.refbegin {
    font-size: 90%;            /* Default font-size */
    margin-bottom: 0.5em;
}

ol.references,
div.reflist,
div.refbegin {
    -webkit-column-count: 3;
    -webkit-column-gap: 25px;
    -moz-column-count: 3;
    -moz-column-gap: 25px;
    column-count:3;
    column-gap:25px;
}

ol.references li {
    /*width: 100%;*/
    list-style-position: inside;
    /* wrap long text and urls */
    white-space: pre; /* CSS 2.0 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3.0 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: -moz-pre-wrap; /* Mozilla */
    word-wrap: break-word; /* IE 5+ */
} 
}