Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tables look unreadble in the default mixu-bootstrap-2col layout #54

Open
nimrodsapir opened this issue May 22, 2017 · 0 comments
Open

Comments

@nimrodsapir
Copy link

When using mixu-bootstrap-2col (which otherwise is a very good layout), the tables output looks extremely unreadable. By adding the following lines (taken from the github layout) to the style.css, I was able to resolve it:

table {
  display: block;
  width: 100%;
  overflow: auto;
  word-break: normal;
  word-break: keep-all;
}

table th {
  font-weight: bold;
}

table th,
table td {
  padding: 6px 13px;
  border: 1px solid #ddd;
}

table tr {
  background-color: #fff;
  border-top: 1px solid #ccc;
}

table tr:nth-child(2n) {
  background-color: #f8f8f8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant