Skip to content

Commit 47a6a27

Browse files
committed
Fix API post ordering and dark-mode task checkbox styling
1 parent c2e759c commit 47a6a27

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

css/tailwind.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,37 @@
140140
@apply list-none;
141141
}
142142

143+
.prose .task-list-item input[type='checkbox'] {
144+
appearance: none;
145+
-webkit-appearance: none;
146+
width: 1rem;
147+
height: 1rem;
148+
margin-right: 0.55rem;
149+
vertical-align: -0.1rem;
150+
border: 1.5px solid var(--color-primary-500);
151+
border-radius: 0.2rem;
152+
background-color: transparent;
153+
opacity: 1;
154+
position: relative;
155+
}
156+
157+
.prose .task-list-item input[type='checkbox']:checked {
158+
background-color: var(--color-primary-500);
159+
border-color: var(--color-primary-500);
160+
}
161+
162+
.prose .task-list-item input[type='checkbox']:checked::after {
163+
content: '';
164+
position: absolute;
165+
left: 0.28rem;
166+
top: 0.08rem;
167+
width: 0.22rem;
168+
height: 0.5rem;
169+
border: solid var(--color-gray-950);
170+
border-width: 0 2px 2px 0;
171+
transform: rotate(45deg);
172+
}
173+
143174
.footnotes {
144175
@apply mt-12 border-t border-gray-200 pt-8 dark:border-gray-700;
145176
}

data/blog/api-pentesting-checklist-what-most-teams-miss.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: 'API Pentesting Checklist: What Most Teams Miss'
33
summary: 'Complete API pentesting checklist with OWASP API Top 10 (2023), BOLA/IDOR tests, JWT and OAuth checks, GraphQL security testing, SSRF payloads, business logic abuse scenarios, and reporting guidance.'
4-
date: '2024-03-30'
4+
date: '2026-03-30'
55
lastmod: '2026-03-30'
66
authors: ['appsec-research']
77
tags: ['api-security', 'api-pentesting-checklist', 'owasp-api-top-10', 'graphql-security', 'rest-api-security', 'jwt-security', 'idor', 'appsec']
88
layout: PostSimple
99
images: ['/static/images/api-pentest-cover.png']
10-
canonicalUrl: 'https://shellvoide.com/blog/blog/api-pentesting-checklist-what-most-teams-miss'
10+
canonicalUrl: 'https://shellvoide.com/blog/api-pentesting-checklist-what-most-teams-miss'
1111
---
1212

1313
> [!WARNING]

0 commit comments

Comments
 (0)