MediaWiki:Common.css: Revizyonlar arasındaki fark
Görünüm
Değişiklik özeti yok Etiket: Geri alındı |
Değişiklik özeti yok Etiket: Geri alındı |
||
| 11. satır: | 11. satır: | ||
display: none !important; | display: none !important; | ||
} | } | ||
/* | /* Sağ kenarda sabit duran mobil uyumlu kutu */ | ||
#recent-right-sidebar { | |||
position: fixed; | |||
top: 100px; | |||
right: 0; | |||
width: 240px; | |||
max-height: 80vh; | |||
overflow-y: auto; | |||
background: #f8f9fa; | |||
border-left: 2px solid #ccc; | |||
border-top: 2px solid #ccc; | |||
border-bottom: 2px solid #ccc; | |||
box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1); | |||
z-index: 9999; | |||
padding: 10px; | |||
box-sizing: border-box; | |||
font-family: sans-serif; | |||
} | |||
.recent-header { | |||
font-weight: bold; | |||
font-size: 16px; | |||
text-align: center; | |||
margin-bottom: 8px; | |||
color: #333; | |||
} | } | ||
.recent-list { | |||
list-style: none; | |||
padding: 0; | |||
margin: 0; | |||
} | |||
.recent-list li { | |||
margin-bottom: 6px; | |||
font-size: 14px; | |||
} | |||
.recent-list li a { | |||
color: #007bff; | |||
text-decoration: none; | |||
} | |||
.recent-list li a:hover { | |||
text-decoration: underline; | |||
} | } | ||
/* | /* Mobil uyumlu: ekran daralınca kutunun genişliği azalır */ | ||
@media screen and ( | @media screen and (max-width: 768px) { | ||
#recent- | #recent-right-sidebar { | ||
width: 85%; | |||
right: 0; | |||
top: auto; | |||
bottom: 0; | |||
border-radius: 12px 12px 0 0; | |||
} | } | ||
} | } | ||
10.43, 13 Haziran 2025 tarihindeki hâli
/* Buraya konulacak CSS kodu tüm temalarda etkin olur */
.responsive-banner {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
/* DynamicPageList gibi eklentilerin eklediği gizli kategorileri tamamen gizle */
.mw-hidden-cats,
.catlinks {
display: none !important;
}
/* Sağ kenarda sabit duran mobil uyumlu kutu */
#recent-right-sidebar {
position: fixed;
top: 100px;
right: 0;
width: 240px;
max-height: 80vh;
overflow-y: auto;
background: #f8f9fa;
border-left: 2px solid #ccc;
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
z-index: 9999;
padding: 10px;
box-sizing: border-box;
font-family: sans-serif;
}
.recent-header {
font-weight: bold;
font-size: 16px;
text-align: center;
margin-bottom: 8px;
color: #333;
}
.recent-list {
list-style: none;
padding: 0;
margin: 0;
}
.recent-list li {
margin-bottom: 6px;
font-size: 14px;
}
.recent-list li a {
color: #007bff;
text-decoration: none;
}
.recent-list li a:hover {
text-decoration: underline;
}
/* Mobil uyumlu: ekran daralınca kutunun genişliği azalır */
@media screen and (max-width: 768px) {
#recent-right-sidebar {
width: 85%;
right: 0;
top: auto;
bottom: 0;
border-radius: 12px 12px 0 0;
}
}