andy0130tw
9/6/2015 - 5:21 PM

Fix for BBSFox with Source Han Sans HW.

Fix for BBSFox with Source Han Sans HW.

@namespace url(http://www.w3.org/1999/xhtml);

/**
 * Because the text height of Source Han Sans is too tall for a terminal,
 * using BBSFox with it would result in a crowding view.
 * Thanks to Stylish, we can fix it with some simple CSS,
 * whose concept is very simple.
 * The position of the cursor should also be shifted after applying this tweak.
 */

@-moz-document regexp("^telnet://.+") {
  .BBSLine .s {
    display: block;
     overflow: hidden;
  }
  
  #cursor {
    transform: translateY(14px);
  }
}