RhoInc / Webcharts

Reusable, flexible, interactive charts with JavaScript
MIT License
34 stars 6 forks source link

Minor table style tweaks #147

Closed jwildfire closed 6 years ago

jwildfire commented 6 years ago

Use (some of) the following from web-codebook:

        .web-codebook  .listing-container table {
            width: 100%;
            border-collapse: collapse;
        }

        .web-codebook  .listing-container thead tr {
            border-bottom: 2px solid black;
        }

        .web-codebook  .listing-container tbody tr {
            border-bottom: 1px dotted #ccc;
        }

        .web-codebook .listing-container td, .web-codebook .listing-container th {
            text-align: left;
            padding: 2px 5px;
        }
jwildfire commented 6 years ago

Went with less padding and borders above and below the tbody

jwildfire commented 6 years ago

Test Notes: Confirm that:

mhickle commented 6 years ago

Pass

27