blob: a7bec4599e642a5511116c022a89fa3c882d3ba3 (
plain)
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
69
70
71
|
.react-tabs {
-webkit-tap-highlight-color: transparent;
}
.react-tabs__tab-list {
margin: 0px;
padding: 0;
display: flex;
align-items: center;
gap: 4px;
}
.react-tabs__tab {
display: inline-flex;
align-items: center;
border: none;
border-radius: 8px;
position: relative;
list-style: none;
padding: 8px 16px;
cursor: pointer;
font-size: 1em;
font-weight: 500;
opacity: 0.6;
background: transparent;
transition: all 0.2s ease;
}
.react-tabs__tab:hover {
opacity: 1;
color: var(--color-focus-blue);
background: rgba(176, 206, 255, 0.221);
}
.react-tabs__tab--selected {
opacity: 1;
background: var(--color-focus-blue);
color: white;
}
.react-tabs__tab--selected:hover {
background: var(--color-focus-blue);
opacity: 1;
}
.react-tabs__tab--disabled {
color: GrayText;
cursor: default;
}
.react-tabs__tab:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
}
.react-tabs__tab:focus:after {
content: '';
position: absolute;
}
.react-tabs__tab-panel {
display: none;
}
.react-tabs__tab-panel--selected {
display: block;
}
._btn_lzu00_1 {
margin-right: 10px;
}
|