Mark-Lasfar commited on
Commit
f75924f
·
1 Parent(s): 6cb4e70
Files changed (1) hide show
  1. static/css/chat/style.css +14 -43
static/css/chat/style.css CHANGED
@@ -1,8 +1,3 @@
1
- /*
2
- * SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
3
- * SPDX-License-Identifier: Apache-2.0
4
- */
5
-
6
  .chat-title {
7
  font-weight: 700;
8
  font-size: 1rem;
@@ -16,48 +11,24 @@
16
  text-overflow: ellipsis;
17
  }
18
 
19
- html {
20
- -webkit-text-size-adjust: 100%;
21
- }
22
- .chat-controls {
23
- display: flex;
24
- align-items: center;
25
- gap: 0.5rem;
26
  }
27
 
28
- .chat-section {
29
- display: flex;
30
- flex-direction: column;
31
- width: 100%;
32
- height: 100%;
33
  }
34
 
35
- #chatArea {
36
- flex: 1;
37
- display: flex;
38
- flex-direction: column;
39
- overflow-y: auto;
40
- width: 100%;
41
- height: 100%;
42
- box-sizing: border-box;
43
- overflow-wrap: break-word;
44
- word-wrap: break-word;
45
- word-break: break-word;
46
- max-width: 100%;
47
- opacity: 1 !important; /* إضافة لضمان الظهور */
48
  }
49
 
50
- #chatBox {
51
- display: flex;
52
- flex-direction: column;
53
- width: 100%;
54
- height: 100%;
55
- overflow-y: auto;
56
- padding: 0.75rem 0.75rem calc(var(--footer-height) + 1rem) 1rem;
57
- box-sizing: border-box;
58
- max-width: 100%;
59
- overflow-wrap: break-word;
60
- word-wrap: break-word;
61
- word-break: break-word;
62
- opacity: 1 !important; /* إضافة لضمان الظهور */
63
  }
 
 
 
 
 
 
1
  .chat-title {
2
  font-weight: 700;
3
  font-size: 1rem;
 
11
  text-overflow: ellipsis;
12
  }
13
 
14
+ #chatArea {
15
+ display: flex !important;
16
+ opacity: 1 !important;
17
+ visibility: visible !important;
 
 
 
18
  }
19
 
20
+ #chatBox {
21
+ display: flex !important;
22
+ opacity: 1 !important;
23
+ visibility: visible !important;
 
24
  }
25
 
26
+ #footerForm {
27
+ display: flex !important;
28
+ opacity: 1 !important;
29
+ visibility: visible !important;
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
+ .hidden {
33
+ display: none !important;
 
 
 
 
 
 
 
 
 
 
 
34
  }