ducky/web
2015-07-07
Parent:99a43a6d1d30
ducky/web/src/styles/base/_tables.scss
Update to hosted URL, use oauth-refresh in profiles. When syncing the profiles, use our oauth-refresh sync helper, so it won't fail because of an expired OAuth token. Also, update our URL to use the nginx-fronted URL.
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 }