Difference between revisions of "MediaWiki:Common.css"
| Line 65: | Line 65: | ||
} | } | ||
| − | .meter | + | .meter.open .metertext, |
| − | .parallel | + | .parallel.open .paralleltext, |
| − | .commentary | + | .commentary.open .commentarytext, |
| − | .pictures | + | .pictures.open .picturestext, |
| − | .outline | + | .outline.open .outlinetext, |
| − | .comment | + | .comment.open .commenttext, |
| − | .word | + | .word.open .wordtext |
{ | { | ||
display: block; | display: block; | ||
| Line 86: | Line 86: | ||
} | } | ||
| − | .pictures | + | .pictures.open .picturestext * |
{ | { | ||
position: relative; | position: relative; | ||
| Line 93: | Line 93: | ||
} | } | ||
| − | .word | + | .word.open .wordtext |
{ | { | ||
width: 95%; | width: 95%; | ||
} | } | ||
| − | .outline | + | .outline.open .outlinetext |
{ | { | ||
height: 250px; | height: 250px; | ||
Revision as of 16:47, 24 July 2026
/* CSS placed here will be applied to all skins */
/* .picturescont { border-left: 3px dotted lightblue; } */
.picturescont
{
margin-top: -1.5em;
height: 2.25em;
padding: 0;
position: absolute;
z-index: inherit;
}
.meter,
.parallel,
.commentary,
.pictures,
.outline,
.comment,
.word
{
background-image: url( 'images/metrical.png');
background-repeat: no-repeat;
padding: 0 .5em;
display: inline;
}
.word
{
background-image: none;
padding: 0;
}
.parallel
{
background-image: url( 'images/layout-2-equal.png');
}
.commentary
{
background-image: url( 'images/book-open.png');
}
.pictures
{
background-image: url( 'images/image.png');
}
.comment
{
background-image: url( 'images/balloon-left.png');
}
.outline
{
background-image: url('images/edit-list.png');
}
.meter .metertext,
.parallel .paralleltext,
.commentary .commentarytext,
.pictures .picturestext,
.comment .commenttext,
.outline .outlinetext,
.word .wordtext
{
display: none;
}
.meter.open .metertext,
.parallel.open .paralleltext,
.commentary.open .commentarytext,
.pictures.open .picturestext,
.outline.open .outlinetext,
.comment.open .commenttext,
.word.open .wordtext
{
display: block;
position: absolute;
margin-top: -2em;
border: 2px dotted darkslategray;
padding: 1em;
background-color:rgb(255,255,255);
z-index: 500;
max-width: 100%;
min-width: 50%;
width: 95%;
right: 0;
}
.pictures.open .picturestext *
{
position: relative;
margin-left: auto;
margin-right: auto;
}
.word.open .wordtext
{
width: 95%;
}
.outline.open .outlinetext
{
height: 250px;
overflow-y: auto;
bottom: 0;
}
#bodyContent table td
{
padding: .25em 1em;
}