forked from MajesteitBart/t3code-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend-to-t3-code-button.css
More file actions
114 lines (101 loc) · 2.07 KB
/
Copy pathsend-to-t3-code-button.css
File metadata and controls
114 lines (101 loc) · 2.07 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.t3code-send {
position: relative;
display: inline-flex;
flex-direction: column;
align-items: flex-start;
font: 500 14px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
color: #171717;
}
.t3code-send__group {
display: inline-flex;
height: 34px;
border: 1px solid #deddd8;
border-radius: 7px;
background: #f8f7f3;
box-shadow: 0 1px 1px rgb(0 0 0 / 3%);
}
.t3code-send button,
.t3code-send summary {
box-sizing: border-box;
color: inherit;
font: inherit;
}
.t3code-send__primary {
display: inline-flex;
align-items: center;
gap: 7px;
min-width: 154px;
padding: 0 12px;
border: 0;
border-radius: 6px 0 0 6px;
background: transparent;
cursor: pointer;
}
.t3code-send__mark {
font-size: 10px;
font-weight: 800;
letter-spacing: -0.08em;
}
.t3code-send__details {
position: relative;
}
.t3code-send__trigger {
display: grid;
width: 31px;
height: 32px;
place-items: center;
border-left: 1px solid #deddd8;
border-radius: 0 6px 6px 0;
cursor: pointer;
list-style: none;
}
.t3code-send__trigger::-webkit-details-marker {
display: none;
}
.t3code-send__menu {
position: absolute;
z-index: 20;
top: calc(100% + 6px);
right: 0;
display: grid;
width: max-content;
min-width: 210px;
gap: 2px;
padding: 5px;
border: 1px solid #deddd8;
border-radius: 8px;
background: #fff;
box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
}
.t3code-send__menu button {
padding: 8px 10px;
border: 0;
border-radius: 5px;
background: transparent;
text-align: left;
cursor: pointer;
}
.t3code-send__primary:hover:not(:disabled),
.t3code-send__trigger:hover,
.t3code-send__menu button:hover:not(:disabled) {
background: #eeede8;
}
.t3code-send button:focus-visible,
.t3code-send summary:focus-visible {
outline: 2px solid #525252;
outline-offset: 2px;
}
.t3code-send button:disabled,
.t3code-send [aria-disabled="true"] {
cursor: not-allowed;
opacity: 0.55;
}
.t3code-send__status {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
clip-path: inset(50%);
white-space: nowrap;
}