Skip to content

Commit 83b3327

Browse files
committed
fix colors
1 parent b9ba80b commit 83b3327

File tree

1 file changed

+3
-3
lines changed
  • frontend/src/features/qa/page-list/ui

1 file changed

+3
-3
lines changed

frontend/src/features/qa/page-list/ui/page.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export class QaPage extends TailwindElement {
137137
return html`
138138
<div class="py-1.5 text-sm text-gray-600">
139139
<div
140-
class="relative z-20 ml-4 block flex-auto cursor-pointer select-none overflow-visible rounded border border-solid border-gray-300 bg-white px-4 py-2 pl-6 shadow-none outline-none transition-shadow aria-selected:border-blue-500 aria-selected:bg-blue-50 aria-selected:shadow aria-selected:shadow-blue-800/20 aria-selected:transition-none"
140+
class="relative z-20 ml-4 block flex-auto cursor-pointer select-none overflow-visible rounded border border-solid border-gray-300 bg-white px-4 py-2 pl-6 shadow-none outline-none transition-shadow aria-selected:border-cyan-500 aria-selected:bg-cyan-50 aria-selected:shadow aria-selected:shadow-cyan-800/20 aria-selected:transition-none"
141141
@click=${this.select}
142142
tabindex="0"
143143
aria-selected=${this.selected}
@@ -161,15 +161,15 @@ export class QaPage extends TailwindElement {
161161
${page.notes?.[0] &&
162162
html`<sl-icon
163163
name="chat-square-text-fill"
164-
class="text-blue-600"
164+
class="text-cyan-600"
165165
></sl-icon>`}
166166
</div>
167167
</btrix-popover>
168168
<h5 class="truncate text-sm font-semibold text-black">
169169
${page.title ||
170170
html`<span class="opacity-50">${msg("No page title")}</span>`}
171171
</h5>
172-
<div class="truncate text-xs leading-4 text-blue-600">
172+
<div class="truncate text-xs leading-4 text-cyan-600">
173173
${page.url}
174174
</div>
175175
</div>

0 commit comments

Comments
 (0)