-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
114 lines (96 loc) · 1.69 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
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
/* Reset styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f2f5;
color: #333;
padding: 12px;
width: 350px;
border-radius: 10px;
}
input[type="text"],
textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
margin-bottom: 12px;
}
button {
background-color: #007bff;
color: #fff;
padding: 6px 12px;
font-size: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-right: 3px;
}
button.delete {
background-color: #b82c2c;
color: #fff;
padding: 6px 12px;
font-size: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-right: 3px;
}
button:hover {
background-color: #0069d9;
}
button.delete:hover {
background-color: #871f1f;
}
button:last-child {
margin-right: 0;
}
button:disabled {
background-color: #6c757d;
cursor: not-allowed;
}
#prompt-list {
max-height: 300px;
overflow-y: auto;
padding-top: 15px;
}
.prompt-item {
background-color: #fff;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
padding: 9px;
margin-bottom: 8px;
}
.prompt-item h3 {
font-size: 14px;
font-weight: normal;
}
.hidden {
display: none;
}
.prompt-item {
display: flex;
justify-content: space-between;
align-items: center;
}
.prompt-item-actions {
display: flex;
gap: 6px;
}
#details-prompt {
margin-bottom: 10px;
margin-top: 5px;
}
.height-large {
height: 150px;
}
#add {
-webkit-box-shadow: 0px 0px 5px -1px rgba(0, 123, 255, 1);
-moz-box-shadow: 0px 0px 5px -1px rgba(0, 123, 255, 1);
box-shadow: 0px 0px 5px -1px rgba(0, 123, 255, 1);
}