-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathThumbButton.module.css
More file actions
91 lines (77 loc) · 2.06 KB
/
ThumbButton.module.css
File metadata and controls
91 lines (77 loc) · 2.06 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
:global(.webchat) .thumb-button {
align-items: center;
border-radius: 2px;
box-sizing: content-box;
display: grid;
grid-template-areas: 'main';
height: 16px;
width: 16px;
.thumb-button__input {
appearance: none;
background: transparent;
border: 0;
grid-area: main;
height: 16px;
margin: 0;
opacity: 0;
padding: 0;
width: 16px;
&:active {
background: #edebe9;
}
}
&:has(.thumb-button__input:focus-visible) {
outline: solid 1px #605e5c; /* <input> has opacity of 0, we need to set the outline in the container. */
}
.thumb-button__image {
color: var(--webchat__color--accent);
grid-area: main;
justify-self: center; /* Unsure why "justifyContent" doesn't work. */
pointer-events: none;
visibility: hidden;
width: 14px;
&.thumb-button__image--is-stroked {
visibility: unset;
}
}
&:has(.thumb-button__input:is(:not([aria-disabled='true']):hover, :checked, [aria-pressed='true'])) {
.thumb-button__image {
&.thumb-button__image--is-stroked {
visibility: hidden;
}
&.thumb-button__image--is-filled {
visibility: unset;
}
}
}
&.thumb-button--large {
border: 1px solid transparent;
border-radius: 4px;
height: 30px;
width: 30px;
.thumb-button__input {
background: currentColor;
height: 30px;
width: 30px;
}
.thumb-button__image {
color: currentColor;
font-size: 20px;
height: 1em;
width: 1em;
}
&:has(.thumb-button__input:is(:hover, :active, :checked, [aria-pressed='true'])) .thumb-button__image {
color: var(--webchat__color--accent);
}
&:has(.thumb-button__input[aria-disabled='true']) .thumb-button__image {
color: var(--webchat__color--subtle);
}
&.thumb-button--has-submitted:has(.thumb-button__input:not(:checked):not([aria-pressed='true']))
.thumb-button__tooltip {
display: none;
}
&.thumb-button--has-submitted .thumb-button__tooltip {
--webchat__tooltip-anchor-inline-start: 20%;
}
}
}