This repository was archived by the owner on Jul 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (121 loc) · 3.84 KB
/
Copy pathstyle.css
File metadata and controls
127 lines (121 loc) · 3.84 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
122
123
124
125
126
127
/* ============================================================
Top-right navbar action system — one consistent pill language:
• secondary actions → mint OUTLINE pill (Ask AI, Community)
• primary action → mint FILLED pill (Thread Inbox)
============================================================ */
/* "Community" navbar link — mint outline pill (secondary), matching the
"Ask AI" button next to search. */
#navbar a[href="https://www.getthread.com/aisu-community"],
a[href="https://www.getthread.com/aisu-community"] {
color: #00B398 !important;
background-color: rgba(0, 179, 152, 0.08) !important;
border: 1px solid rgba(0, 179, 152, 0.35);
font-weight: 500 !important;
padding: 0.4rem 0.95rem !important;
border-radius: 0.6rem !important;
transition: background 0.15s ease, border-color 0.15s ease;
}
#navbar a[href="https://www.getthread.com/aisu-community"]:hover,
a[href="https://www.getthread.com/aisu-community"]:hover {
background-color: rgba(0, 179, 152, 0.16) !important;
border-color: rgba(0, 179, 152, 0.6);
color: #00B398 !important;
}
/* Primary "Thread Inbox" CTA — solid mint filled pill (matches getthread.com). */
#topbar-cta-button a > span:first-child {
background-color: #00B398 !important;
background-image: none !important;
border: 1px solid #00B398 !important;
transition: filter 0.15s ease;
}
#topbar-cta-button a:hover > span:first-child {
filter: brightness(0.94);
opacity: 1 !important;
}
#topbar-cta-button a span.z-10 {
color: #06281c !important;
}
/* No arrow in the CTA — hide the chevron AND clear the spacing that was
reserved for it (Tailwind space-x / mr-0.5) so the label sits centered. */
#topbar-cta-button a svg {
display: none !important;
}
#topbar-cta-button a > div {
margin: 0 !important;
}
#topbar-cta-button a > div > span {
margin: 0 !important;
}
/* Hide the "Powered by Mintlify" footer badge. */
a[href*="utm_campaign=poweredBy"] {
display: none !important;
}
/* "Ask AI" button injected next to the search bar (see ask-ai.js).
Desktop-only, matching the mint navbar treatment. */
.thread-ask-ai-nav {
display: none;
align-items: center;
gap: 0.4rem;
height: 2.25rem;
padding: 0 0.85rem;
margin-left: 0.5rem;
border-radius: 0.6rem;
font-size: 0.875rem;
font-weight: 500;
white-space: nowrap;
cursor: pointer;
color: #00B398;
background: rgba(0, 179, 152, 0.08);
border: 1px solid rgba(0, 179, 152, 0.35);
transition: background 0.15s ease, border-color 0.15s ease;
}
@media (min-width: 1024px) {
.thread-ask-ai-nav {
display: inline-flex;
}
}
.thread-ask-ai-nav:hover {
background: rgba(0, 179, 152, 0.16);
border-color: rgba(0, 179, 152, 0.6);
}
.thread-ask-ai-nav svg {
flex: none;
}
/* ============================================================
Landing page — standard Mintlify doc layout (no custom hero).
Only the integration chips carry custom styling now.
============================================================ */
/* Popular integrations — pill chips */
.thread-chips {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin: 0.5rem 0 0.5rem;
}
.thread-chip {
display: inline-flex;
align-items: center;
padding: 0.5rem 0.95rem;
border-radius: 999px;
font-size: 0.9rem;
font-weight: 500;
text-decoration: none !important;
border: 1px solid rgba(0, 179, 152, 0.35);
background: rgba(0, 179, 152, 0.06);
color: #00B398 !important;
transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.thread-chip:hover {
background: rgba(0, 179, 152, 0.14);
border-color: rgba(0, 179, 152, 0.6);
transform: translateY(-1px);
}
.dark .thread-chip {
border-color: rgba(0, 179, 152, 0.3);
background: rgba(0, 179, 152, 0.07);
color: #00B398 !important;
}
.dark .thread-chip:hover {
background: rgba(0, 179, 152, 0.14);
border-color: rgba(0, 179, 152, 0.6);
}