-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
65 lines (65 loc) · 1.32 KB
/
popup.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
width: 400px;
padding: 15px;
font-family: Arial, sans-serif;
}
.talk-selector {
width: 100%;
padding: 8px;
margin-bottom: 15px;
box-sizing: border-box;
}
.link-button {
display: inline-block;
margin-top: 10px;
padding: 10px 15px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 4px;
text-align: center;
}
.filters {
margin-bottom: 15px;
display: flex;
gap: 10px;
}
.talk-details {
margin-top: 15px;
}
.field-container {
margin-bottom: 10px;
}
.field-container:hover {
background-color: #f5f5f5;
}
.field-label {
font-weight: bold;
margin-bottom: 4px;
}
.field-content {
word-wrap: break-word;
margin-bottom: 4px;
}
.copy-btn {
padding: 4px 8px;
background-color: #f0f0f0;
border: 1px solid #ddd;
border-radius: 3px;
cursor: pointer;
}
.copy-btn:hover {
background-color: #e0e0e0;
}
.actions {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid #eee;
}
.custom-field-input {
width: 100%;
padding: 4px;
margin: 4px 0;
border: 1px solid #ddd;
border-radius: 3px;
}