-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathTable.css
47 lines (41 loc) · 951 Bytes
/
Table.css
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
:host(:not([hidden])) {
display: inline-block;
width: 100%;
}
table {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
}
.ui5-table-header-row {
color: var(--sapTextColor);
height: 3rem;
font-family: var(--sapFontFamily);
font-size: var(--sapFontMediumSize);
}
.ui5-table-header-row:focus {
outline: var(--ui5_table_header_row_outline_width) dotted var(--sapContent_FocusColor);
outline-offset: -0.125rem;
}
tr {
height: 3rem;
}
.ui5-table-no-data-row {
display: flex;
align-items: center;
width: 100%;
height: auto;
justify-content: center;
text-align: center;
padding: 0.5rem 1rem;
font-family: var(--sapFontFamily);
font-size: 0.875rem;
box-sizing: border-box;
color: var(--sapTextColor);
min-height: 3rem;
background-color: var(--sapList_Background);
border-top: 1px solid var(--sapList_BorderColor);
}
:host([_no-data-displayed]) {
border-bottom: 1px solid var(--sapList_TableGroupHeaderBorderColor);
}