«ميدياويكي:Common.css»: الفرق بين المراجعتين
من Sudan Memory
سطر ٢٨: | سطر ٢٨: | ||
.treeBranch { | .treeBranch { | ||
− | cursor: pointer; | + | cursor: pointer !important; |
− | -webkit-user-select: none; /* Safari 3.1+ */ | + | -webkit-user-select: none !important; /* Safari 3.1+ */ |
− | -moz-user-select: none; /* Firefox 2+ */ | + | -moz-user-select: none !important; /* Firefox 2+ */ |
− | -ms-user-select: none; /* IE 10+ */ | + | -ms-user-select: none !important; /* IE 10+ */ |
− | user-select: none; | + | user-select: none !important; |
} | } | ||
.treeBranch::before { | .treeBranch::before { | ||
− | content: "+"; | + | content: "+" !important; |
− | color: black; | + | color: black !important; |
− | display: inline-block; | + | display: inline-block !important; |
− | margin-left: 3px; | + | margin-left: 3px !important; |
− | width: 14px; | + | width: 14px !important; |
} | } | ||
.treeBranch-down::before { | .treeBranch-down::before { | ||
− | content: "--"; | + | content: "--" !important; |
} | } | ||
.treeBranch-nested { | .treeBranch-nested { | ||
− | display: none; | + | display: none !important; |
} | } | ||
مراجعة ٠٠:٠٥، ١٣ مايو ٢٠٢١
/* ستؤثر الأنماط المتراصة (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 } .treeBranch { cursor: pointer !important; -webkit-user-select: none !important; /* Safari 3.1+ */ -moz-user-select: none !important; /* Firefox 2+ */ -ms-user-select: none !important; /* IE 10+ */ user-select: none !important; } .treeBranch::before { content: "+" !important; color: black !important; display: inline-block !important; margin-left: 3px !important; width: 14px !important; } .treeBranch-down::before { content: "--" !important; } .treeBranch-nested { display: none !important; } .treeBranch-empty::before { content: " "; margin-left: 17px; display: inline-block; } .treeBranch-active { display: block; }