File size: 2,075 Bytes
fd9ff56
 
 
 
0616795
fd9ff56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e870dbe
fd9ff56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e870dbe
0616795
5daf5bd
fd9ff56
 
 
5daf5bd
fd9ff56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* --- START: استایل‌های مودال که به انتهای App.scss اضافه می‌شود --- */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; backdrop-filter: blur(5px);
}
.modal-content {
  background: #2c2c2e; padding: 24px; border-radius: 16px;
  width: 90%; max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: modal-fade-in 0.3s ease-out;
  .modal-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; border-bottom: 1px solid #444; padding-bottom: 16px;
    h3 { margin: 0; font-size: 20px; color: #fff; }
    .close-button {
      background: none; border: none; color: #aaa; font-size: 28px;
      cursor: pointer; line-height: 1; padding: 0;
      &:hover { color: #fff; }
    }
  }
  .modal-body .form-group {
    margin-bottom: 20px;
    label { display: block; margin-bottom: 8px; font-weight: 500; color: #e0e0e0; }
    input, textarea {
      width: 100%; padding: 12px; border-radius: 8px;
      border: 1px solid #555; background-color: #3a3a3c;
      color: #fff; font-size: 15px;
      &:focus {
        outline: none; border-color: #0a84ff;
        box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.5);
      }
    }
    textarea { resize: vertical; min-height: 100px; }
    small { display: block; margin-top: 8px; color: #999; font-size: 12px; }
  }
  .modal-footer {
    display: flex; justify-content: flex-end; margin-top: 24px;
    .save-button {
      background-color: #0a84ff; color: #fff; border: none;
      padding: 12px 24px; border-radius: 8px; font-size: 16px;
      font-weight: 600; cursor: pointer; transition: background-color 0.2s;
      &:hover { background-color: #3499ff; }
    }
  }
}
@keyframes modal-fade-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* --- END: استایل‌های مودال --- */