Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 1 | .table { |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 2 | position: relative; |
3 | z-index: $zindex-dropdown; | ||||
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 4 | |
5 | td { | ||||
Yoshie Muranaka | 01da818 | 2020-07-08 15:46:43 -0700 | [diff] [blame] | 6 | border-top: 1px solid gray("300"); |
7 | border-bottom: 1px solid gray("300"); | ||||
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 8 | &:first-of-type { |
Yoshie Muranaka | 01da818 | 2020-07-08 15:46:43 -0700 | [diff] [blame] | 9 | border-left: 1px solid gray("300"); |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 10 | } |
11 | &:last-of-type { | ||||
Yoshie Muranaka | 01da818 | 2020-07-08 15:46:43 -0700 | [diff] [blame] | 12 | border-right: 1px solid gray("300"); |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 13 | } |
14 | } | ||||
15 | |||||
16 | // thead-light added for specificiy | ||||
17 | .thead-light th { | ||||
18 | border: none; | ||||
Yoshie Muranaka | 01da818 | 2020-07-08 15:46:43 -0700 | [diff] [blame] | 19 | color: theme-color("dark"); |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 20 | } |
21 | |||||
Yoshie Muranaka | 30abccb | 2020-03-11 12:44:24 -0700 | [diff] [blame] | 22 | .status-icon svg { |
23 | width: 1rem; | ||||
24 | height: auto; | ||||
25 | } | ||||
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 26 | |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 27 | .b-table-has-details { |
28 | td { | ||||
29 | border-bottom: none; | ||||
30 | } | ||||
31 | .table-row-expand svg { | ||||
32 | transform: rotate(180deg); | ||||
33 | } | ||||
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 34 | } |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 35 | |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 36 | .b-table-details { |
Yoshie Muranaka | 01da818 | 2020-07-08 15:46:43 -0700 | [diff] [blame] | 37 | background-color: theme-color("light"); |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 38 | td { |
39 | padding-left: calc(50px + (#{$table-cell-padding} * 2)); | ||||
40 | } | ||||
41 | dl { | ||||
42 | margin: 0; | ||||
43 | } | ||||
44 | dt { | ||||
45 | display: inline-block; | ||||
46 | margin-right: $spacer / 2; | ||||
47 | } | ||||
48 | dd { | ||||
49 | display: inline-block; | ||||
50 | } | ||||
51 | } | ||||
52 | |||||
53 | .table-row-expand { | ||||
54 | width: 50px; | ||||
55 | .btn { | ||||
56 | padding: 0; | ||||
57 | width: 50px; | ||||
58 | } | ||||
59 | svg { | ||||
Yoshie Muranaka | 01da818 | 2020-07-08 15:46:43 -0700 | [diff] [blame] | 60 | fill: theme-color("dark"); |
Yoshie Muranaka | 56ee769 | 2020-05-28 13:28:29 -0700 | [diff] [blame] | 61 | } |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 62 | } |
Mateusz Gapski | 1d2da29 | 2020-09-10 12:07:45 +0200 | [diff] [blame^] | 63 | } |
64 | |||||
65 | .b-table-sticky-header td { | ||||
66 | border-top: none; | ||||
67 | } | ||||
68 |