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

RE: Adding Table with borderless feature #67

Merged
merged 4 commits into from
Oct 10, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions css/react-bootstrap-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@
}
.react-bs-table .table-header{
height: 42px;
border-right-width: 1px;
border-right-style: solid;
border-right-color: rgb(221, 221, 221);
border-top-width: 1px;
border-top-style: solid;
border-top-color: rgb(221, 221, 221);
border-bottom-width: 0px;
border-bottom-style: solid;
border-bottom-color: rgb(221, 221, 221);
}

.react-bs-table .table-header > table{
table-layout: fixed;
border-right-style: hidden;
border-top-style: hidden;
}

Expand Down
6 changes: 5 additions & 1 deletion css/react-bootstrap-table.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/basic-example.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>react-bootstrap-table demo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="../css/react-bootstrap-table.min.css">
<link rel="stylesheet" href="../css/react-bootstrap-table.css">
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>

Expand Down
Loading