Spaces:
Runtime error
Runtime error
Mark-Lasfar commited on
Commit ·
f75924f
1
Parent(s): 6cb4e70
add chat
Browse files- 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 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
display: flex;
|
| 24 |
-
align-items: center;
|
| 25 |
-
gap: 0.5rem;
|
| 26 |
}
|
| 27 |
|
| 28 |
-
|
| 29 |
-
display: flex;
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
height: 100%;
|
| 33 |
}
|
| 34 |
|
| 35 |
-
#
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 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 |
-
|
| 51 |
-
display:
|
| 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 |
}
|