ducky/web
2015-07-07
Parent:99a43a6d1d30
ducky/web/src/styles/base/_tables.scss
Implement subscriptions. Create a Subscription model and a Subscriptions collection, and attach them to the app context. Add a helper to our Profile model to retrieve the Subscription of that model. Still not sure this should be on the Profile--wouldn't it be better on the Me model? Isn't that generally where we would need it?
1 table {
2 @include font-feature-settings("kern", "liga", "tnum");
3 border-collapse: collapse;
4 margin: $small-spacing 0;
5 table-layout: fixed;
6 width: 100%;
7 }
9 th {
10 border-bottom: 1px solid darken($base-border-color, 15%);
11 font-weight: 600;
12 padding: $small-spacing 0;
13 text-align: left;
14 }
16 td {
17 border-bottom: $base-border;
18 padding: $small-spacing 0;
19 }
21 tr,
22 td,
23 th {
24 vertical-align: middle;
25 }