stat2025 commited on
Commit
103197f
·
verified ·
1 Parent(s): 15427c1

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +46 -4
style.css CHANGED
@@ -257,7 +257,7 @@ body {
257
  border-radius: 14px;
258
  background-color: #f9fafb;
259
  border: 1px solid rgba(229, 231, 235, 1);
260
- max-height: 180px;
261
  overflow-y: auto;
262
  transition: box-shadow var(--transition);
263
  }
@@ -284,6 +284,18 @@ body {
284
  color: var(--text-muted);
285
  }
286
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  .file-list-ul {
288
  list-style: none;
289
  padding: 0;
@@ -325,19 +337,34 @@ body {
325
  font-size: 8.5px;
326
  }
327
 
328
- /* زر حذف ملف */
329
 
 
 
 
 
 
 
 
330
  .delete-btn {
331
  background: none;
332
  border: none;
333
  cursor: pointer;
334
- font-size: 13px;
335
  padding: 0 3px;
336
- transition: color 0.18s ease, transform 0.18s ease;
 
 
 
 
 
 
 
337
  }
338
 
339
  .delete-btn:hover {
340
  color: #b91c1c;
 
341
  transform: scale(1.1);
342
  }
343
 
@@ -451,6 +478,12 @@ body {
451
  border: 1px solid #bfdbfe;
452
  }
453
 
 
 
 
 
 
 
454
  /* تجاوب */
455
 
456
  @media (max-width: 640px) {
@@ -467,4 +500,13 @@ body {
467
  .hero h1 {
468
  font-size: 18px;
469
  }
 
 
 
 
 
 
 
 
 
470
  }
 
257
  border-radius: 14px;
258
  background-color: #f9fafb;
259
  border: 1px solid rgba(229, 231, 235, 1);
260
+ max-height: 220px;
261
  overflow-y: auto;
262
  transition: box-shadow var(--transition);
263
  }
 
284
  color: var(--text-muted);
285
  }
286
 
287
+ .mode-label {
288
+ font-size: 9.5px;
289
+ color: #1d4ed8;
290
+ background-color: #eff6ff;
291
+ border-radius: 999px;
292
+ padding: 4px 8px;
293
+ display: inline-block;
294
+ margin: 0 0 4px;
295
+ }
296
+
297
+ /* عناصر القائمة */
298
+
299
  .file-list-ul {
300
  list-style: none;
301
  padding: 0;
 
337
  font-size: 8.5px;
338
  }
339
 
340
+ /* أزرار الصف */
341
 
342
+ .row-actions {
343
+ display: flex;
344
+ align-items: center;
345
+ gap: 2px;
346
+ }
347
+
348
+ .move-btn,
349
  .delete-btn {
350
  background: none;
351
  border: none;
352
  cursor: pointer;
353
+ font-size: 11px;
354
  padding: 0 3px;
355
+ transition: color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
356
+ border-radius: 4px;
357
+ }
358
+
359
+ .move-btn:hover {
360
+ color: #2563eb;
361
+ background-color: #e5e7ff;
362
+ transform: translateY(-1px);
363
  }
364
 
365
  .delete-btn:hover {
366
  color: #b91c1c;
367
+ background-color: #fee2e2;
368
  transform: scale(1.1);
369
  }
370
 
 
478
  border: 1px solid #bfdbfe;
479
  }
480
 
481
+ .status.warning {
482
+ background: #fffbeb;
483
+ color: #92400e;
484
+ border: 1px solid #fed7aa;
485
+ }
486
+
487
  /* تجاوب */
488
 
489
  @media (max-width: 640px) {
 
500
  .hero h1 {
501
  font-size: 18px;
502
  }
503
+
504
+ .actions {
505
+ flex-direction: column;
506
+ }
507
+
508
+ .btn-main,
509
+ .btn-secondary {
510
+ width: 100%;
511
+ }
512
  }