MediaWiki

Difference between revisions of "Common.css"

Line 7: Line 7:
 
   width: 40px;
 
   width: 40px;
 
   height: 40px;
 
   height: 40px;
   /* left: -6px; /* before : use left:-6px; */
+
   /*left:-6px; /* :before */
 
   top: -3px;
 
   top: -3px;
   background-repeat: no-repeat; /* Do not repeat the image */
+
   background-repeat: no-repeat;
 
}
 
}
 
#n-recordwizard {  
 
#n-recordwizard {  
 
     position:relative;
 
     position:relative;
} /**/
+
}

Revision as of 15:51, 7 January 2019

/* Answer: How to add image with link in a sidebar - MediaWiki https://stackoverflow.com/a/53597787/8992875?stw=2 */
#n-recordwizard> a:after {
  content: ' ';
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/1/1e/Breezeicons-status-22-mic-red-LinguaLibre.svg);
  position: absolute;
  width: 40px;
  height: 40px;
  /*left:-6px; /* :before */
  top: -3px;
  background-repeat: no-repeat;
}
#n-recordwizard { 
    position:relative;
}