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

Commit

Permalink
Merge pull request #72 from relaxatorium/remove-persist-column-styles…
Browse files Browse the repository at this point in the history
…-from-bare

Moved persist column styles from table.columntoggle.css to table.skin.cs...
  • Loading branch information
zachleat committed Dec 15, 2014
2 parents b97e2c4 + ef1295e commit 64bf6f1
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 32 deletions.
11 changes: 1 addition & 10 deletions dist/bare/tablesaw.bare.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */

Expand Down Expand Up @@ -626,15 +626,6 @@ table.tablesaw {
}

@media only all {
.tablesaw-swipe .tablesaw-cell-persist {
border-right: 1px solid #e4e1de;
}

.tablesaw-swipe .tablesaw-cell-persist {
-webkit-box-shadow: 3px 0 4px -1px #e4e1de;
box-shadow: 3px 0 4px -1px #e4e1de;
}

/* Unchecked manually: Always hide */

.tablesaw-swipe th.tablesaw-cell-hidden,
Expand Down
2 changes: 1 addition & 1 deletion dist/stackonly/tablesaw.stackonly.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */

Expand Down
2 changes: 1 addition & 1 deletion dist/stackonly/tablesaw.stackonly.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */
;(function( $ ) {
Expand Down
4 changes: 2 additions & 2 deletions dist/stackonly/tablesaw.stackonly.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */

Expand Down
22 changes: 12 additions & 10 deletions dist/tablesaw.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */

Expand Down Expand Up @@ -458,6 +458,17 @@ table.tablesaw thead td {
}
}

@media only all {
.tablesaw-swipe .tablesaw-cell-persist {
border-right: 1px solid #e4e1de;
}

.tablesaw-swipe .tablesaw-cell-persist {
-webkit-box-shadow: 3px 0 4px -1px #e4e1de;
box-shadow: 3px 0 4px -1px #e4e1de;
}
}

/* Table rows have a gray bottom stroke by default */

.tablesaw-stack tbody tr {
Expand Down Expand Up @@ -713,15 +724,6 @@ table.tablesaw thead td {
}

@media only all {
.tablesaw-swipe .tablesaw-cell-persist {
border-right: 1px solid #e4e1de;
}

.tablesaw-swipe .tablesaw-cell-persist {
-webkit-box-shadow: 3px 0 4px -1px #e4e1de;
box-shadow: 3px 0 4px -1px #e4e1de;
}

/* Unchecked manually: Always hide */

.tablesaw-swipe th.tablesaw-cell-hidden,
Expand Down
2 changes: 1 addition & 1 deletion dist/tablesaw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v1.0.0 - 2014-12-05
/*! Tablesaw - v1.0.1 - 2014-12-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2014 Filament Group; Licensed MIT */
;(function( $ ) {
Expand Down
7 changes: 0 additions & 7 deletions src/tables.columntoggle.css
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,6 @@
}

@media only all {
.tablesaw-swipe .tablesaw-cell-persist {
border-right: 1px solid #e4e1de;
}
.tablesaw-swipe .tablesaw-cell-persist {
box-shadow: 3px 0 4px -1px #e4e1de;
}

/* Unchecked manually: Always hide */
.tablesaw-swipe th.tablesaw-cell-hidden,
.tablesaw-swipe td.tablesaw-cell-hidden,
Expand Down
9 changes: 9 additions & 0 deletions src/tables.skin.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,13 @@ table.tablesaw thead td {
.tablesaw td {
line-height: 2em;
}
}

@media only all {
.tablesaw-swipe .tablesaw-cell-persist {
border-right: 1px solid #e4e1de;
}
.tablesaw-swipe .tablesaw-cell-persist {
box-shadow: 3px 0 4px -1px #e4e1de;
}
}

0 comments on commit 64bf6f1

Please sign in to comment.