Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32089158
chat-message-list.css
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
chat-message-list.css
View Options
div
.
outerMessageContainer
{
position
:
relative
;
height
:
calc
(
100
vh
-
128
px
);
min-height
:
0
;
display
:
flex
;
flex-direction
:
column
;
}
div
.
messageContainer
{
height
:
100
%
;
overflow-y
:
auto
;
display
:
flex
;
flex-direction
:
column-reverse
;
}
div
.
mirroredMessageContainer
{
flex-direction
:
column
!important
;
transform
:
scaleY
(
-1
);
}
div
.
mirroredMessageContainer
>
div
{
transform
:
scaleY
(
-1
);
}
div
.
disableAnchor
{
overflow-anchor
:
none
;
}
div
.
message
{
display
:
flex
;
flex-direction
:
column
;
flex-shrink
:
0
;
}
div
.
loading
{
text-align
:
center
;
padding
:
12
px
;
}
div
.
conversationHeader
{
color
:
var
(
--chat-timestamp-color
);
font-size
:
var
(
--xs-font-
12
);
padding
:
6
px
0
;
line-height
:
var
(
--line-height-text
);
text-align
:
center
;
}
div
.
conversationHeader
:
last-child
{
padding-top
:
6
px
;
}
div
.
textMessage
{
padding
:
6
px
12
px
;
white-space
:
pre-wrap
;
word-wrap
:
break-word
;
width
:
100
%
;
box-sizing
:
border-box
;
}
div
.
textMessageDefaultBackground
{
background-color
:
var
(
--text-message-default-background
);
}
div
.
normalTextMessage
{
font-size
:
16
px
;
}
div
.
emojiOnlyTextMessage
{
font-size
:
32
px
;
font-family
:
emoji
;
}
span
.
authorName
{
color
:
#777777
;
font-size
:
14
px
;
margin
:
4
px
56
px
;
align-self
:
baseline
;
}
span
.
authorName
:
hover
{
cursor
:
pointer
;
}
div
.
darkTextMessage
{
color
:
white
;
}
div
.
lightTextMessage
{
color
:
black
;
}
div
.
content
{
display
:
flex
;
flex-shrink
:
0
;
align-items
:
center
;
margin-bottom
:
5
px
;
box-sizing
:
border-box
;
width
:
100
%
;
}
div
.
nonViewerContent
{
align-self
:
flex-start
;
justify-content
:
flex-start
;
padding-right
:
8
px
;
}
div
.
viewerContent
{
align-self
:
flex-end
;
justify-content
:
flex-end
;
padding-right
:
4
px
;
}
div
.
iconContainer
{
margin-right
:
1
px
;
}
div
.
iconContainer
>
svg
{
height
:
16
px
;
}
div
.
messageBoxContainer
{
position
:
relative
;
display
:
flex
;
max-width
:
calc
(
min
(
68
%
,
1000
px
));
margin
:
0
4
px
;
}
div
.
fixedWidthMessageBoxContainer
{
width
:
68
%
;
}
div
.
messageBox
{
overflow
:
hidden
;
display
:
flex
;
flex-wrap
:
wrap
;
justify-content
:
space-between
;
flex-shrink
:
0
;
max-width
:
100
%
;
}
div
.
fixedWidthMessageBox
{
width
:
100
%
;
}
div
.
failedSend
{
display
:
flex
;
justify-content
:
flex-end
;
flex-shrink
:
0
;
margin-right
:
45
px
;
padding-bottom
:
6
px
;
}
.
deliveryFailed
{
text-transform
:
uppercase
;
font-size
:
14
px
;
padding
:
0
3
px
;
color
:
var
(
--fg
);
}
.
retryButtonText
{
text-transform
:
uppercase
;
font-size
:
14
px
;
}
div
.
messageBox
>
div
.
imageGrid
{
display
:
grid
;
width
:
100
%
;
grid-template-columns
:
repeat
(
6
,
1
fr
);
grid-gap
:
5
px
;
}
div
.
messageBox
span
.
multimedia
>
span
.
multimediaImage
{
min-height
:
initial
;
min-width
:
initial
;
}
div
.
messageBox
span
.
multimedia
>
span
.
multimediaImage
>
img
{
max-height
:
600
px
;
}
div
.
imageGrid
>
span
.
multimedia
{
grid-column-end
:
span
3
;
}
div
.
imageGrid
>
span
.
multimedia
:
first-child
{
margin-top
:
0
;
}
div
.
imageGrid
>
span
.
multimedia
>
span
.
multimediaImage
{
flex
:
1
;
}
div
.
imageGrid
>
span
.
multimedia
>
span
.
multimediaImage
:
after
{
content
:
''
;
display
:
block
;
padding-bottom
:
calc
(
min
(
600
px
,
100
%
));
}
div
.
imageGrid
>
span
.
multimedia
>
span
.
multimediaImage
>
img
{
position
:
absolute
;
width
:
100
%
;
height
:
100
%
;
object-fit
:
cover
;
}
div
.
imageGrid
>
span
.
multimedia
:
nth-last-child
(
n
+
3
)
:
first-child
,
div
.
imageGrid
>
span
.
multimedia
:
nth-last-child
(
n
+
3
)
:
first-child
~
*
{
grid-column-end
:
span
2
;
}
div
.
imageGrid
>
span
.
multimedia
:
nth-last-child
(
n
+
4
)
:
first-child
,
div
.
imageGrid
>
span
.
multimedia
:
nth-last-child
(
n
+
4
)
:
first-child
~
*
{
grid-column-end
:
span
3
;
}
div
.
imageGrid
>
span
.
multimedia
:
nth-last-child
(
n
+
5
)
:
first-child
,
div
.
imageGrid
>
span
.
multimedia
:
nth-last-child
(
n
+
5
)
:
first-child
~
*
{
grid-column-end
:
span
2
;
}
div
.
sidebarMarginBottom
{
margin-bottom
:
2
px
;
}
div
.
avatarContainer
{
display
:
flex
;
align-self
:
flex-end
;
margin
:
0
4
px
0
12
px
;
}
div
.
avatarContainer
:
hover
{
cursor
:
pointer
;
}
div
.
avatarOffset
{
width
:
40
px
;
}
.
pinIconContainer
{
position
:
absolute
;
top
:
1
px
;
}
.
pinIconLeft
{
left
:
-20
px
;
}
.
pinIconRight
{
right
:
-20
px
;
}
.
deletedMessageContent
{
display
:
flex
;
gap
:
4
px
;
align-items
:
center
;
color
:
var
(
--deleted-message-color
);
background-color
:
var
(
--deleted-message-background
);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 7, 7:55 AM (4 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5827933
Default Alt Text
chat-message-list.css (4 KB)
Attached To
Mode
rCOMM Comm
Attached
Detach File
Event Timeline
Log In to Comment