MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 152: Line 152:
/* Georgia bullet */
/* Georgia bullet */
ul.gbullet {
ul.gbullet {
   list-style-type: none; /* Remove default bullets completely */
   list-style-type: none;
   padding-left: 0; /* No default padding */
   padding-left: 0;
   margin-left: 0; /* No margin */
   margin-left: 0;
}
}


ul.gbullet li {
ul.gbullet li {
   font-family: Georgia, serif !important;
   font-family: Georgia, serif !important;
   padding-left: 20px; /* Indent for all text */
   padding-left: 20px;
   text-indent: 0;
   text-indent: 0;
   margin-left: 0;
   margin-left: 0;
   position: relative;
   position: relative;
   list-style: none; /* Ensure no bullets at all */
   list-style: none;
}
}


ul.gbullet li::before {
ul.gbullet li::before {
   content: "•"; /* Custom bullet */
   content: "•";
   position: absolute;
   position: absolute;
   left: 0; /* Position bullet at margin edge */
   left: 0;
   font-size: 1.2em; /* Make bullet larger */
   font-size: 1.5em; /* Larger bullet */
   line-height: 1; /* Ensure proper vertical alignment */
   line-height: 1;
   top: 0.1em; /* Fine-tune vertical position */
   top: -0.05em; /* Lower bullet position */
   width: 20px;
   width: 20px;
   text-align: left;
   text-align: left;
}
ul.gbullet li::before {
  content: "•"; /* Custom bullet */
  position: absolute;
  left: 0; /* Position bullet at the margin edge */
  top: 0;
  width: 20px; /* Width matches padding-left of li */
  text-align: left; /* Align bullet to left */
}
}