Skip to content

Commit 81b2ce3

Browse files
committed
feat: Complete documentation consistency across all languages
- Fixed Turkish index page design inconsistency - Updated English and Turkish troubleshooting pages to new theme - Updated Turkish, German, and Russian changelog pages to new theme - Created missing contributing pages for Turkish, German, and Russian - Updated SmartRAG version to 1.1.0 in all relevant files - Ensured 100% consistency across all language versions - All pages now use the same modern theme and structure - Complete documentation standardization achieved
1 parent eb71db6 commit 81b2ce3

27 files changed

+5571
-3330
lines changed

docs/assets/css/style.css

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,45 @@ h1, h2, h3, h4, h5, h6 {
202202
background-color: var(--dark-surface);
203203
}
204204

205+
/* Dropdown Styles */
206+
.navbar-nav .dropdown-menu {
207+
background-color: var(--white);
208+
border: 1px solid var(--gray-200);
209+
border-radius: var(--border-radius);
210+
box-shadow: var(--shadow-lg);
211+
min-width: 160px;
212+
}
213+
214+
[data-theme="dark"] .navbar-nav .dropdown-menu {
215+
background-color: var(--dark-surface);
216+
border-color: var(--gray-700);
217+
}
218+
219+
.navbar-nav .dropdown-item {
220+
color: var(--gray-700);
221+
padding: var(--spacing-xs) var(--spacing-sm);
222+
font-size: 0.9rem;
223+
transition: all 0.2s ease;
224+
}
225+
226+
[data-theme="dark"] .navbar-nav .dropdown-item {
227+
color: var(--gray-300);
228+
}
229+
230+
.navbar-nav .dropdown-item:hover {
231+
background-color: var(--gray-100);
232+
color: var(--primary);
233+
}
234+
235+
[data-theme="dark"] .navbar-nav .dropdown-item:hover {
236+
background-color: var(--gray-700);
237+
color: var(--primary-light);
238+
}
239+
240+
.navbar-nav .dropdown-toggle::after {
241+
margin-left: 0.5rem;
242+
}
243+
205244
/* Main Content */
206245
.main-content {
207246
margin-top: 80px;

docs/assets/js/script.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,9 @@ document.addEventListener('DOMContentLoaded', function() {
192192
// Language switching enhancement
193193
const languageDropdown = document.getElementById('languageDropdown');
194194
if (languageDropdown) {
195-
// Add click handler to prevent default behavior
196-
languageDropdown.addEventListener('click', function(e) {
197-
e.preventDefault();
198-
});
199-
200195
// Add click handlers to dropdown items
201196
document.querySelectorAll('.dropdown-item').forEach(item => {
202197
item.addEventListener('click', function(e) {
203-
e.preventDefault();
204198
const href = this.getAttribute('href');
205199
if (href) {
206200
// Add smooth transition

0 commit comments

Comments
 (0)