-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
121 lines (100 loc) · 2.26 KB
/
styles.css
File metadata and controls
121 lines (100 loc) · 2.26 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
115
116
117
118
119
120
121
.content-os-ribbon-class {
color: var(--text-muted);
transition: color 0.2s ease;
}
.content-os-ribbon-class:hover {
color: var(--text-normal);
}
/* Modal styling */
.content-os-modal-content {
padding: 20px;
text-align: center;
}
.content-os-modal-content button {
margin-top: 15px;
padding: 8px 16px;
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease;
}
.content-os-modal-content button:hover {
background-color: var(--interactive-accent-hover);
}
/* Settings tab styling */
.content-os-settings .setting-item {
border-bottom: 1px solid var(--background-modifier-border);
padding: 18px 0;
}
.content-os-settings .setting-item:last-child {
border-bottom: none;
}
.content-os-settings .setting-item-info {
margin-bottom: 8px;
}
.content-os-settings .setting-item-name {
font-weight: 500;
color: var(--text-normal);
}
.content-os-settings .setting-item-description {
color: var(--text-muted);
font-size: 0.9em;
margin-top: 4px;
}
/* Version section styling */
.content-os-version-wrapper {
padding-top: 20px;
border-top: 1px solid var(--background-modifier-border);
text-align: center;
}
.content-os-version-content {
padding: 20px 0;
}
.content-os-version-name {
font-weight: 500;
color: var(--text-normal);
margin: 0 0 8px 0;
}
.content-os-version-author {
color: var(--text-muted);
margin: 0 0 8px 0;
}
.content-os-version-number {
color: var(--text-muted);
font-size: 0.85em;
opacity: 0.8;
}
/* LinkedIn Post Composer styling */
.contentos-post-textarea-container {
margin-bottom: 1rem;
}
.contentos-post-textarea {
width: 100%;
min-height: 150px;
resize: vertical;
}
.contentos-char-count {
text-align: right;
font-size: 0.9em;
color: var(--text-muted);
}
.contentos-button-container {
display: flex;
gap: 10px;
margin-top: 1rem;
}
.contentos-cancel-button {
flex: 1;
}
.contentos-post-button {
flex: 1;
background-color: var(--interactive-accent);
color: var(--text-on-accent);
}
.contentos-note-text {
margin-top: 1rem;
font-size: 0.9em;
color: var(--text-muted);
}