-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (72 loc) · 1.6 KB
/
styles.css
File metadata and controls
84 lines (72 loc) · 1.6 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
/* Excalink Plugin Styles */
/* Frame Suggestion Modal Styles */
.excalink-suggestion {
display: flex;
align-items: center;
padding: 8px 12px;
gap: 8px;
position: relative;
}
.excalink-suggestion-icon {
font-size: 16px;
width: 20px;
text-align: center;
flex-shrink: 0;
}
.excalink-suggestion-content {
flex: 1;
min-width: 0;
}
.excalink-suggestion-title {
font-weight: 500;
color: var(--text-normal);
margin-bottom: 2px;
}
.excalink-suggestion-note {
font-size: 0.85em;
color: var(--text-muted);
opacity: 0.8;
}
/* Highlight matching text in suggestions */
.excalink-suggestion .suggestion-flair {
background-color: var(--text-accent);
color: var(--text-on-accent);
padding: 1px 3px;
border-radius: 3px;
font-weight: 600;
}
/* Modal styling improvements */
.modal.excalink-modal .modal-title {
display: flex;
align-items: center;
gap: 8px;
}
.modal.excalink-modal .modal-title::before {
content: "🖼️";
font-size: 18px;
}
/* Input placeholder styling */
.prompt-input::placeholder {
color: var(--text-muted);
opacity: 0.7;
}
/* Settings page styles */
.excalink-description {
margin-bottom: 20px;
padding: 10px;
background-color: var(--background-secondary);
border-radius: 8px;
}
.excalink-plugin-info {
margin-top: 30px;
padding: 15px;
background-color: var(--background-secondary);
border-radius: 8px;
border-left: 4px solid var(--interactive-accent);
}
.modal-button-container {
display: flex;
gap: 10px;
justify-content: flex-end;
margin-top: 20px;
}