diff --git a/less/_11-styling.less b/less/_11-styling.less index ec2980d..79553fb 100644 --- a/less/_11-styling.less +++ b/less/_11-styling.less @@ -115,16 +115,16 @@ hr { } /* alternate-vert tables */ -.table-alternate-vert { +.table-alternate-v { border: 0; border-right: 1px solid #ccc; } -.table-alternate-vert tr > :first-child { +.table-alternate-v tr > :first-child { border-bottom: 0; } -.table-alternate-vert tr > * + * { +.table-alternate-v tr > * + * { border-top: 1px solid #ccc; } @@ -135,7 +135,7 @@ hr { } /* striped-vert tables */ -.table-striped-vert tr > :first-child { +.table-striped-v tr > :first-child { background: #eee; background: rgba(0, 0, 0, .05); } diff --git a/sass/_11-styling.scss b/sass/_11-styling.scss index 9b9623c..7a82d34 100644 --- a/sass/_11-styling.scss +++ b/sass/_11-styling.scss @@ -113,16 +113,16 @@ hr { } /* alternate-vert tables */ -.table-alternate-vert { +.table-alternate-v { border: 0; border-right: 1px solid #ccc; } -.table-alternate-vert tr > :first-child { +.table-alternate-v tr > :first-child { border-bottom: 0; } -.table-alternate-vert tr > * + * { +.table-alternate-v tr > * + * { border-top: 1px solid #ccc; } @@ -133,7 +133,7 @@ hr { } /* striped-vert tables */ -.table-striped-vert tr > :first-child { +.table-striped-v tr > :first-child { background: #eee; background: rgba(0, 0, 0, .05); }