|
39 | 39 |
|
40 | 40 | .crm__output-table { |
41 | 41 | margin-bottom: 0; |
42 | | - /* min-height: 322px; */ |
| 42 | + border-collapse: collapse; |
| 43 | + width: 100%; |
| 44 | + height: 322px; |
43 | 45 | font-family: var(--open-sans), sans-serif; |
44 | 46 | font-weight: var(--regular); |
45 | 47 | background-color: var(--white); |
46 | 48 | } |
47 | 49 |
|
| 50 | +.crm__output-table thead { |
| 51 | + display: table; |
| 52 | + width: 100%; |
| 53 | + table-layout: fixed; |
| 54 | +} |
| 55 | + |
| 56 | +.crm__output-table thead tr { |
| 57 | + display: table-row; |
| 58 | + width: 100%; |
| 59 | +} |
| 60 | + |
| 61 | +.crm__output-table thead th { |
| 62 | + text-align: left; |
| 63 | +} |
| 64 | + |
| 65 | +.crm__output-table tbody { |
| 66 | + display: table; |
| 67 | + width: 100%; |
| 68 | +} |
| 69 | + |
| 70 | +.crm__output-table tbody tr { |
| 71 | + display: table-row; |
| 72 | + width: 100%; |
| 73 | + table-layout: fixed; |
| 74 | +} |
| 75 | + |
| 76 | +.crm__output-table tbody td { |
| 77 | + width: auto; |
| 78 | + text-align: left; |
| 79 | +} |
| 80 | + |
48 | 81 | .crm__output-table tr th { |
49 | 82 | border: none; |
50 | 83 | font-weight: var(--regular); |
|
58 | 91 | cursor: pointer; |
59 | 92 | } |
60 | 93 |
|
| 94 | +.crm__output-table-body-empty-row { |
| 95 | + width: 100%; |
| 96 | + height: 65px; |
| 97 | + text-align: center; |
| 98 | +} |
| 99 | + |
| 100 | +.crm__output-table-body-empty-row td { |
| 101 | + width: 100%; |
| 102 | + text-align: center; |
| 103 | +} |
| 104 | + |
61 | 105 | .table-hover tbody tr:not(.table-dark) { |
62 | 106 | --bs-table-hover-bg: rgba(0, 0, 0, 0.02) !important; |
63 | 107 | } |
|
67 | 111 | text-align: start; |
68 | 112 | } |
69 | 113 |
|
70 | | -.crm__output-table #table-th-id { |
71 | | - padding-left: 15px; |
| 114 | +.crm__output-table #table-th-id, |
| 115 | +.crm__output-table .crm__output-table-body-cell_id { |
| 116 | + padding-left: 20px; |
72 | 117 | width: 95px; |
73 | 118 | } |
74 | 119 |
|
75 | | -.crm__output-table #table-th-fio { |
| 120 | +.crm__output-table #table-th-fio, |
| 121 | +.crm__output-table .crm__output-table-body-cell_fio { |
76 | 122 | width: 360px; |
77 | 123 | } |
78 | 124 |
|
79 | | -.crm__output-table #table-th-dt { |
| 125 | +.crm__output-table #table-th-dt, |
| 126 | +.crm__output-table .crm__output-table-body-cell_crt-d-time { |
80 | 127 | width: 195px; |
81 | 128 | } |
82 | 129 |
|
83 | | -.crm__output-table #table-th-change { |
| 130 | +.crm__output-table #table-th-change, |
| 131 | +.crm__output-table .crm__output-table-body-cell_chg-d-time { |
84 | 132 | width: 195px; |
85 | 133 | } |
86 | 134 |
|
87 | 135 | .crm__output-table #table-th-contact { |
88 | | - width: 130px; |
89 | 136 | cursor: default; |
90 | 137 | } |
91 | 138 |
|
| 139 | +.crm__output-table #table-th-contact, |
| 140 | +.crm__output-table .crm__output-table #table-th-contact { |
| 141 | + width: 130px; |
| 142 | +} |
| 143 | + |
92 | 144 | .crm__output-table #table-th-action { |
93 | 145 | cursor: default; |
94 | 146 | } |
|
177 | 229 | } |
178 | 230 |
|
179 | 231 | .crm__output-table-body-row .crm__output-table-body-cell_id { |
180 | | - padding-left: 15px; |
181 | 232 | color: var(--text-gray); |
182 | 233 | } |
183 | 234 |
|
|
0 commit comments