Skip to content

Commit 4a1f427

Browse files
committed
Remove GitHub stats from kernel cards
- Removed repo-stats divs from all kernel cards (GKI, OnePlus, Sultan) - Eliminated star, fork, and view count displays - Cleaned up layout by removing statistical clutter - Simplified kernel cards to focus on features and descriptions - Improved page loading by removing GitHub API dependencies
1 parent b284a16 commit 4a1f427

2 files changed

Lines changed: 5 additions & 16 deletions

File tree

index.html

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,7 @@ <h3>GKI <span class="highlight">2.0</span> Kernel</h3>
119119
<li><i class="fas fa-check"></i> BBR v1 Support</li>
120120
<li><i class="fas fa-check"></i> Mountify Support</li>
121121
</ul>
122-
<div class="repo-stats">
123-
<span class="stat"><i class="fas fa-star"></i> <span id="gki-stars">Loading...</span></span>
124-
<span class="stat"><i class="fas fa-code-branch"></i> <span id="gki-forks">Loading...</span></span>
125-
<span class="stat"><i class="fas fa-eye"></i> <span id="gki-watchers">Loading...</span> Views</span>
126-
</div>
122+
127123
<a href="https://github.com/WildKernels/GKI_KernelSU_SUSFS" class="btn btn-primary">
128124
<i class="fab fa-github"></i>
129125
View Repository
@@ -147,11 +143,7 @@ <h3>OnePlus Kernel</h3>
147143
<li><i class="fas fa-check"></i> BBR v1 Support</li>
148144
<li><i class="fas fa-check"></i> Mountify Support</li>
149145
</ul>
150-
<div class="repo-stats">
151-
<span class="stat"><i class="fas fa-star"></i> <span id="oneplus-stars">Loading...</span></span>
152-
<span class="stat"><i class="fas fa-code-branch"></i> <span id="oneplus-forks">Loading...</span></span>
153-
<span class="stat"><i class="fas fa-eye"></i> <span id="oneplus-watchers">Loading...</span> Views</span>
154-
</div>
146+
155147
<a href="https://github.com/WildKernels/OnePlus_KernelSU_SUSFS" class="btn btn-primary">
156148
<i class="fab fa-github"></i>
157149
View Repository
@@ -170,11 +162,7 @@ <h3>Sultan Kernel</h3>
170162
<li><i class="fas fa-check"></i> Stability Focused</li>
171163
<li><i class="fas fa-check"></i> Long-term Support</li>
172164
</ul>
173-
<div class="repo-stats">
174-
<span class="stat"><i class="fas fa-star"></i> <span id="sultan-stars">Loading...</span></span>
175-
<span class="stat"><i class="fas fa-code-branch"></i> <span id="sultan-forks">Loading...</span></span>
176-
<span class="stat"><i class="fas fa-eye"></i> <span id="sultan-watchers">Loading...</span> Views</span>
177-
</div>
165+
178166
<a href="https://github.com/WildKernels/Sultan_KernelSU_SUSFS" class="btn btn-primary">
179167
<i class="fab fa-github"></i>
180168
View Repository

style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,8 @@ body {
304304
left: 0;
305305
width: 100%;
306306
height: 100%;
307-
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
307+
/* Removed dotted background pattern */
308+
/* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat; */
308309
opacity: 0.3;
309310
}
310311

0 commit comments

Comments
 (0)