MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Volksabstimmung
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.mw-editsection { display:none!important; }


/* Style of the radio buttons in the vote */
/* Style of the radio buttons in the vote */
Zeile 10: Zeile 10:
   margin-left:7px;
   margin-left:7px;
}
}


.tooltip {
.tooltip {
    position: relative;
  position: relative;
    display: inline-block;
  display: inline-block;
    color:#0000FF;
  color:#0000FF;
  z-index: 10000;
}
}




.tooltip .tooltiptext {
.tooltip .tooltiptext {
    visibility: hidden;
line-height: normal;
    width: 600px;
  visibility: hidden;
    background-color: #555;
  width: 300px;
    color: #fff;
  background-color: #DDD;
    text-align: left;
  color: #000;
    text-wrap: wrap;
  text-align: left;
    padding: 5px;
  text-wrap: wrap;
    border-radius: 6px;
  padding: 3px;
  border-radius:6px;
  border: 1px solid #555;
 
 


  position: absolute;
  z-index: 10000;
  bottom: 125%;
  left: 50%;
  margin-left: -180px;


    position: absolute;
 
    z-index: 1;
  opacity: 0;
    bottom: 125%;
  transition: opacity 1s all ease;
    left: 50%;
transition-delay: .25s;
    margin-left: -300px;




    opacity: 0;
    transition: opacity 1s;
}
}


Zeile 45: Zeile 53:
     position: absolute;
     position: absolute;
     top: 100%;
     top: 100%;
     left: 50%;
     left: 60%;
     margin-left: -5px;
     margin-left: -5px;
     border-width: 5px;
     border-width: 5px;

Version vom 28. Juni 2024, 09:27 Uhr

.mw-editsection { display:none!important; }

/* Style of the radio buttons in the vote */
.vote-radio-span{
  display: inline-block;
  width:25px;
}

.vote-radio{
  margin-left:7px;
}


.tooltip {
  position: relative;
  display: inline-block;
  color:#0000FF;
  z-index: 10000;
}


.tooltip .tooltiptext {
 line-height: normal;
  visibility: hidden;
  width: 300px;
  background-color: #DDD;
  color: #000;
  text-align: left;
  text-wrap: wrap;
  padding: 3px;
  border-radius:6px;
  border: 1px solid #555;



  position: absolute;
  z-index: 10000;
  bottom: 125%;
  left: 50%;
  margin-left: -180px;


  opacity: 0;
  transition: opacity 1s all ease;
transition-delay: .25s;


}


.tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 60%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}