mgpt / static /css /webkit.css
Mark-Lasfar
add chat
2f8e5c4
raw
history blame contribute delete
775 Bytes
/*
* SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
* SPDX-License-Identifier: Apache-2.0
*/
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: rgba(59, 130, 246, 0.5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(59, 130, 246, 0.7);
}
* {
-webkit-tap-highlight-color: transparent;
}
/* إضافة للتوافق مع #chatBox */
#chatBox::-webkit-scrollbar {
width: 6px;
}
#chatBox::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05); /* تغيير من transparent */
}
#chatBox::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
border-radius: 3px;
}