Sha256: 2ab03c886143008a27b13722c3278ee8b233d9e68009a649b59fc7029e2a1fcf
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
/** * Tidy Table * Generate a sortable HTML table from JSON * * Copyright 2012-2015, Marc S. Brooks (http://mbrooks.info) * Licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php * * Dependencies: * jquery.js */ table.tidy_table { background-color: #FFFFFF; border-collapse: collapse; border: 1px solid #CCCCCC; cursor: pointer; white-space: nowrap; } table.tidy_table thead { border: none; } table.tidy_table tr.check_on { background-color: #F5F5F5; } table.tidy_table tr.check_off { background-color: #FFFFFF; } table.tidy_table th { background-color: #DDDDDD; } table.tidy_table th.sort_asc { background: #EEEEEE url( images/arrow_asc.gif ) no-repeat right center; } table.tidy_table th.sort_desc { background: #EEEEEE url( images/arrow_desc.gif ) no-repeat right center; } table.tidy_table th, table.tidy_table td { padding: 6px 20px 6px 20px; } table.tidy_table td { border-right: 1px solid #EEEEEE; padding: 7px 20px 7px 20px; } table.tidy_table th:nth-child(1), table.tidy_table td:nth-child(1) { width: 10px; } table.tidy_table td:nth-child(1) { border-right: 1px solid #EEEEEE; } table.tidy_table input[type=checkbox], table.tidy_table input[type=checkbox] { display: block; margin: 0px auto 0px auto; } table.tidy_table td:nth-last-child(1) { border-right: none; } table.tidy_table td { border-top: 1px solid #CCCCCC; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tidy-table-rails-2.0.5 | vendor/assets/stylesheets/tidy-table.css |