theme_overrides.css 436 B

123456789101112131415
  1. /* override table width restrictions
  2. See: https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html
  3. */
  4. @media screen and (min-width: 767px) {
  5. .wy-table-responsive table td {
  6. /* !important prevents the common CSS stylesheets from overriding
  7. this as on RTD they are loaded after this stylesheet */
  8. white-space: normal !important;
  9. }
  10. .wy-table-responsive {
  11. overflow: visible !important;
  12. }
  13. }