1/* 2 * Copyright 2018 Patrick Rudolph <siro@das-labor.org> 3 * 4 * licensed under CC-by 4.0 5 */ 6 7/* override table width restrictions */ 8@media screen and (min-width: 767px) { 9 .wy-table-responsive table td { 10 /* !important prevents the common CSS stylesheets from overriding 11 this as on RTD they are loaded after this stylesheet */ 12 white-space: normal !important; 13 } 14 15 .wy-table-responsive { 16 overflow: visible !important; 17 } 18} 19 20