Skip to content

Commit

Permalink
Version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjordan committed Aug 8, 2017
1 parent 52cfc97 commit 6d6b26c
Show file tree
Hide file tree
Showing 9 changed files with 221 additions and 64 deletions.
39 changes: 26 additions & 13 deletions dist/fixed-data-table-base.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.7.17
* FixedDataTable v0.8.0
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down Expand Up @@ -221,6 +221,12 @@ body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
top: 0;
}

.fixedDataTableRowLayout_rowExpanded {
box-sizing: border-box;
left: 0;
position: absolute;
}

.fixedDataTableRowLayout_fixedColumnsDivider {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
Expand Down Expand Up @@ -261,10 +267,6 @@ body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
outline: none;
overflow: hidden;
position: absolute;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
Expand All @@ -275,16 +277,9 @@ body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
bottom: 0;
right: 0;
top: 0;
-webkit-transition-property: background-color width;
transition-property: background-color width;
width: 15px;
}

.ScrollbarLayout_mainVertical.public_Scrollbar_mainActive,
.ScrollbarLayout_mainVertical:hover {
width: 17px;
}

.ScrollbarLayout_mainHorizontal {
bottom: 0;
height: 15px;
Expand All @@ -304,6 +299,12 @@ body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
overflow: hidden;
position: absolute;
z-index: 1;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-property: background-color width position;
transition-property: background-color width position;
}

/**
Expand All @@ -328,12 +329,17 @@ body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
}

.ScrollbarLayout_faceHorizontal:after {
top: 4px;
bottom: 4px;
left: 0;
top: 4px;
width: 100%;
}

.ScrollbarLayout_faceHorizontal.public_Scrollbar_faceActive:after,
.ScrollbarLayout_main:hover .ScrollbarLayout_faceHorizontal:after {
bottom: calc(4px/2);
}

.ScrollbarLayout_faceVertical {
left: 0;
right: 0;
Expand All @@ -346,3 +352,10 @@ body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
right: 4px;
top: 0;
}

.ScrollbarLayout_main:hover .ScrollbarLayout_faceVertical:after,
.ScrollbarLayout_faceVertical.public_Scrollbar_faceActive:after {
left: calc(4px/2);
right: calc(4px/2);
}

4 changes: 2 additions & 2 deletions dist/fixed-data-table-base.min.css

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

7 changes: 4 additions & 3 deletions dist/fixed-data-table-style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.7.17
* FixedDataTable v0.8.0
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down Expand Up @@ -183,8 +183,9 @@

/* Touching the scroll-track directly makes the scroll-track bolder */
.public_Scrollbar_main.public_Scrollbar_mainActive,
.public_Scrollbar_main:hover {
background-color: rgba(255, 255, 255, 0.8);
.public_Scrollbar_main {
background-color: #fff;
border-left: 1px solid #d3d3d3;
}

.public_Scrollbar_mainOpaque,
Expand Down
4 changes: 2 additions & 2 deletions dist/fixed-data-table-style.min.css

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

Loading

0 comments on commit 6d6b26c

Please sign in to comment.