[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/resources/src/mediawiki.special/ -> mediawiki.special.changeslist.enhanced.css (source)

   1  /*!
   2   * Styling for Special:Watchlist and Special:RecentChanges when preference 'usenewrc'
   3   * a.k.a. Enhanced Recent Changes is enabled.
   4   */
   5  
   6  table.mw-enhanced-rc {
   7      border: 0;
   8      border-spacing: 0;
   9  }
  10  
  11  table.mw-enhanced-rc th,
  12  table.mw-enhanced-rc td {
  13      padding: 0;
  14      vertical-align: top;
  15  }
  16  
  17  td.mw-enhanced-rc {
  18      white-space: nowrap;
  19      font-family: monospace;
  20  }
  21  
  22  .mw-enhanced-rc-time {
  23      font-family: monospace;
  24  }
  25  
  26  table.mw-enhanced-rc td.mw-enhanced-rc-nested {
  27      padding-left: 1em;
  28  }
  29  
  30  /* Show/hide arrows in enhanced changeslist */
  31  .mw-enhanced-rc .collapsible-expander {
  32      float: none;
  33  }
  34  
  35  /* If JS is disabled, the arrows or the placeholder space shouldn't be shown */
  36  .client-nojs .mw-enhancedchanges-arrow-space {
  37      display: none;
  38  }
  39  
  40  /*
  41   * And if it's enabled, let's optimize the collapsing a little: hide the rows
  42   * that would be hidden by jquery.makeCollapsible with CSS to save us some
  43   * reflows and repaints. This doesn't work on browsers that don't fully support
  44   * CSS2 (IE6), but it's okay, this will be done in JavaScript with old degraded
  45   * performance instead.
  46   */
  47  .client-js table.mw-enhanced-rc.mw-collapsed tr + tr {
  48      display: none;
  49  }
  50  
  51  .mw-enhancedchanges-arrow-space {
  52      display: inline-block;
  53      *display: inline; /* IE7 and below */
  54      zoom: 1;
  55      width: 15px;
  56      height: 15px;
  57  }
  58  
  59  .mw-enhanced-watched .mw-enhanced-rc-time {
  60      font-weight: bold;
  61  }


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1