main
css 58 lines 1.51 KB
Raw
1 .ActivityListContaier {
2 display: flex;
3 flex-direction: column;
4 }
5
6 .ActivityListHeader {
7 /* even if empty, provides layout alignment with the main view */
8 display: flex;
9 flex: 0 0 42px;
10 border-bottom: 1px solid var(--color-border);
11 }
12
13 .ActivityListList {
14 cursor: default;
15 list-style-type: none;
16 margin: 0;
17 padding: 0;
18 }
19
20 .ActivityListList[data-pending-activity-slice-selection="true"] {
21 cursor: wait;
22 }
23
24 .ActivityListList:focus {
25 outline: none;
26 }
27
28 .ActivityListItem {
29 color: var(--color-component-name);
30 line-height: var(--line-height-data);
31 padding: 0 0.25rem;
32 user-select: none;
33 }
34
35 .ActivityListItem:hover {
36 background-color: var(--color-background-hover);
37 }
38
39 .ActivityListItem[aria-selected="true"] {
40 background-color: var(--color-background-inactive);
41 }
42
43 .ActivityListList:focus .ActivityListItem[aria-selected="true"] {
44 background-color: var(--color-background-selected);
45 color: var(--color-text-selected);
46
47 /* Invert colors */
48 --color-component-name: var(--color-component-name-inverted);
49 --color-text: var(--color-text-selected);
50 --color-component-badge-background: var(
51 --color-component-badge-background-inverted
52 );
53 --color-forget-badge-background: var(--color-forget-badge-background-inverted);
54 --color-component-badge-count: var(--color-component-badge-count-inverted);
55 --color-attribute-name: var(--color-attribute-name-inverted);
56 --color-attribute-value: var(--color-attribute-value-inverted);
57 --color-expand-collapse-toggle: var(--color-component-name-inverted);
58 }