blob: d6a660793bd25daaf2094969bda3d30de2d782d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
//
// Component: Table
//
// ========================================================================
// Variables
// ========================================================================
$table-header-cell-font-size: $global-small-font-size !default;
$table-header-cell-font-weight: normal !default;
$table-header-cell-color: $global-muted-color !default;
//
// New
//
$table-striped-border-width: $global-border-width !default;
$table-striped-border: $global-border !default;
// Component
// ========================================================================
// @mixin hook-table-cell(){}
// @mixin hook-table-footer(){}
// @mixin hook-table-caption(){}
// @mixin hook-table-row-active(){}
// Style modifiers
// ========================================================================
// @mixin hook-table-divider(){}
// @mixin hook-table-hover(){}
// Size modifier
// ========================================================================
// @mixin hook-table-small(){}
// @mixin hook-table-large(){}
// Miscellaneous
// ========================================================================
// Inverse
// ========================================================================
// @mixin hook-inverse-table-header-cell(){}
// @mixin hook-inverse-table-caption(){}
// @mixin hook-inverse-table-row-active(){}
// @mixin hook-inverse-table-divider(){}
// @mixin hook-inverse-table-hover(){}
|