«ميدياويكي:Common.css»: الفرق بين المراجعتين

من Sudan Memory
اذهب إلى: تصفح، ابحث
سطر ١٥٢: سطر ١٥٢:
 
     white-space: pre-wrap;                                                      /* Preserve line breaks while allowing long lines to wrap */
 
     white-space: pre-wrap;                                                      /* Preserve line breaks while allowing long lines to wrap */
 
}
 
}
.musdar poemBody {
+
.musdar .poemBody {
 
     width: 380px;
 
     width: 380px;
 
}
 
}

مراجعة ٠٧:٣٠، ١٣ مارس ٢٠٢٤

/* ستؤثر الأنماط المتراصة (CSS) المعروضة هنا على كل الواجهات */
 
/* Added by Abdalla, 2020-12-05, to fix the font scaling problem in iOS; 
 * See https://stackoverflow.com/questions/20924039/wrong-font-size-when-using-float-right-in-css-on-mobile-safari
 * Also made fonts larger
 */
 
body {
    font-size: larger;
    text-size-adjust: 100%; 
    -ms-text-size-adjust: 100%; 
    -moz-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%;
}
 
.quoted {
    border-right: solid 1px;
    padding-right: 10px;
    /*color:blue;*/
}
 
.gutter {
    display:table-cell;
    vertical-align:middle;
    padding-right:50px;
    opacity:0.5;
    border-right:solid 1px #aaa
}
 
/* Added by Abdalla, 2024-03-11, to improve the font of text-entry pane */
#wpTextbox1 {
    font-family: inherit;
}
 
/***************************** Nested Tree Lists ******************************/
 
ul.nestedTree {
  list-style-type: none;
  list-style-image: none;
}
 
ul.treeRoot {
  margin: 0;
  padding: 0;
}
 
.treeBranch {
  cursor: pointer;
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
 
.treeBranch::before {
  content: "+";
  color: black;
  display: inline-block;
  margin-left: 3px;
  width: 14px;
}
 
.treeBranch-down::before {
  content: "–";
}
 
.treeBranch-nested {
  display: none;
}
 
.treeBranch-empty::before {
    content: " " ;
    margin-left: 17px ;
    display: inline-block;
}
 
.treeBranch-active {
  display: block ;
}
 
/******************************************************************************/
 
/*
===============================================================================
Poem formatting
===============================================================================
*/
 
p.beit {
    text-align: center;
    white-space: pre;
}
.bFree {
    text-align: right;
    padding-right: 50px;
}
.bComment {                                                                     /* Primarily for embedded notes */
    text-align: justify;
}
.bCommentCemter {                                                               /* Primarily for embedded notes */
    text-align: center;
}
.bEmph {
    color: #DC143C;
}
span.bStaggerOffset {
    display: inline-block;
    width: 75px;
}
span.bGap {
    display: inline-block;
    width: 0;
}
span.bPrefix, span.bSuffix {
    width: 25px;
    display: inline-block;
    /*color: red;*/
}
span.bPrefix {
    text-align: end;
}
span.bSuffix {
    text-align: start;
}
span.bJustified {
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between; /* Justify content */
}
.abyat hr {
    margin: 20px auto;
}
.abyat {
    user-select: text;
    -webkit-user-select: text;
}
.abyat, .musdar {
    display: table;
}
.poemBody {
    display: table-cell;
    width: 480px;
    vertical-align: middle;
    padding-left: 20px;
}
.poemGutter {
    display: table-cell;
    vertical-align: middle;
    padding-right: 20px;                                                        /* Add an offset from separating line */
    opacity: 0.5;                                                               /* Grayout */
    border-right: solid 1px #aaa;                                               /* Splitting line from body */
    white-space: pre-wrap;                                                      /* Preserve line breaks while allowing long lines to wrap */
}
.musdar .poemBody {
    width: 380px;
}