Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wlis committed May 20, 2015
1 parent a11e896 commit 81a6d12
Show file tree
Hide file tree
Showing 6 changed files with 2,593 additions and 2,687 deletions.
20 changes: 17 additions & 3 deletions dist/fixed-data-table.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.1.2
* FixedDataTable v0.2.0
*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
Expand Down Expand Up @@ -139,6 +139,7 @@

.public_fixedDataTable_main {
border: solid 1px #d3d3d3;
box-sizing: border-box;
overflow: hidden;
position: relative;
}
Expand All @@ -148,6 +149,10 @@
border-bottom: solid 1px #d3d3d3;
}

.public_fixedDataTableRow_main.fixedDataTable_hasBottomBorder {
box-sizing: content-box;
}

.public_fixedDataTable_header .public_fixedDataTableCell_main {
font-weight: bold;
}
Expand All @@ -164,15 +169,24 @@
border-top: solid 1px #d3d3d3;
}

.fixedDataTable_shadow {
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAF0lEQVR4AWPUkNeSBhHCjJoK2twgFisAFagCCp3pJlAAAAAASUVORK5CYII=) repeat-x;
.fixedDataTable_topShadow,
.fixedDataTable_bottomShadow {
height: 4px;
left: 0;
position: absolute;
right: 0;
z-index: 1;
}

.fixedDataTable_topShadow {
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAF0lEQVR4AWPUkNeSBhHCjJoK2twgFisAFagCCp3pJlAAAAAASUVORK5CYII=) repeat-x;
}

.fixedDataTable_bottomShadow {
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAHElEQVQI12MwNjZmZdAT1+Nm0JDWEGZQk1GTBgAWkwIeAEp52AAAAABJRU5ErkJggg==) repeat-x;
margin-top: -4px;
}

.fixedDataTable_rowsContainer {
overflow: hidden;
position: relative;
Expand Down
Loading

0 comments on commit 81a6d12

Please sign in to comment.