generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
112 lines (97 loc) · 2.07 KB
/
styles.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
.bluesky-content {
padding: 16px;
display: flex;
flex-direction: column;
gap: 16px;
max-width: 513.667px;
margin: 0 auto;
}
.bluesky-compose {
display: flex;
flex-direction: column;
gap: 8px;
position: relative;
}
.bluesky-compose textarea {
font-size: 15px;
width: 100%;
max-width: 513.667px;
resize: vertical;
padding: 8px;
padding-right: 32px;
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
}
.bluesky-buttons {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
margin-top: 8px;
}
.bluesky-left-buttons {
display: flex;
gap: 8px;
align-items: center;
}
.add-bluesky-thread-btn {
color: var(--text-muted);
padding: 4px 8px;
height: 32px;
line-height: 24px;
}
.bluesky-buttons button {
padding: 4px 12px;
}
.bluesky-post-btn {
margin-left: 8px;
}
.bluesky-char-counter {
font-size: 12px;
color: var(--text-muted);
text-align: right;
padding-right: 4px;
margin-top: -4px;
}
.add-bluesky-thread-btn {
color: var(--text-muted);
}
.bluesky-post-btn {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border-radius: 4px;
padding: 4px 12px;
font-weight: 600;
}
.bluesky-post-btn:not(:disabled) {
background-color: var(--interactive-accent);
}
.bluesky-post-btn:not(:disabled):hover {
background-color: var(--interactive-accent-hover);
}
.bluesky-post-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
background-color: var(--interactive-accent);
}
.add-bluesky-thread-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
background-color: var(--background-modifier-border);
color: var(--text-muted);
}
.bluesky-close-post {
position: absolute;
right: 12px;
top: 1px;
font-size: 18px;
cursor: pointer;
padding: 4px;
z-index: 1;
transition: box-shadow 0.2s ease;
background: transparent !important;
box-shadow: none !important;
&:hover {
color: var(--text-error);
}
}