Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
fd47f55e
Commit
fd47f55e
authored
10 years ago
by
Matthew Hodgson
Browse files
Options
Downloads
Patches
Plain Diff
sacrifice a goat or two to make wordwrap actually work properly
parent
ab27b49d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
webclient/app.css
+19
-26
19 additions, 26 deletions
webclient/app.css
webclient/room/room.html
+2
-2
2 additions, 2 deletions
webclient/room/room.html
with
21 additions
and
28 deletions
webclient/app.css
+
19
−
26
View file @
fd47f55e
...
@@ -145,6 +145,7 @@ h1 {
...
@@ -145,6 +145,7 @@ h1 {
max-width
:
1280px
;
max-width
:
1280px
;
width
:
100%
;
width
:
100%
;
border-collapse
:
collapse
;
border-collapse
:
collapse
;
table-layout
:
fixed
;
}
}
#messageTable
td
{
#messageTable
td
{
...
@@ -190,25 +191,13 @@ h1 {
...
@@ -190,25 +191,13 @@ h1 {
object-fit
:
cover
;
object-fit
:
cover
;
}
}
.text
{
background-color
:
#eee
;
border
:
1px
solid
#d8d8d8
;
height
:
31px
;
display
:
inline-table
;
margin-top
:
-1px
;
max-width
:
90%
;
font-size
:
16px
;
/* word-wrap: break-word; */
word-break
:
break-all
;
}
.emote
{
.emote
{
background-color
:
#fff
! important
;
background-color
:
transparent
! important
;
border
:
0px
! important
;
border
:
0px
! important
;
}
}
.membership
{
.membership
{
background-color
:
#fff
! important
;
background-color
:
transparent
! important
;
border
:
0px
! important
;
border
:
0px
! important
;
}
}
...
@@ -221,6 +210,13 @@ h1 {
...
@@ -221,6 +210,13 @@ h1 {
}
}
.bubble
{
.bubble
{
background-color
:
#eee
;
border
:
1px
solid
#d8d8d8
;
display
:
inline-block
;
margin-bottom
:
-1px
;
max-width
:
90%
;
font-size
:
16px
;
word-wrap
:
break-word
;
padding-top
:
7px
;
padding-top
:
7px
;
padding-bottom
:
5px
;
padding-bottom
:
5px
;
padding-left
:
1em
;
padding-left
:
1em
;
...
@@ -229,27 +225,24 @@ h1 {
...
@@ -229,27 +225,24 @@ h1 {
}
}
.differentUser
td
{
.differentUser
td
{
padding-top
:
5px
! important
;
padding-bottom
:
5px
! important
;
margin-top
:
5px
! important
;
}
}
.mine
{
.mine
{
text-align
:
right
;
text-align
:
right
;
}
}
.mine
.text
{
.text.emote
.bubble
,
background-color
:
#f8f8ff
! important
;
.text.membership
.bubble
,
}
.mine
.text.emote
.bubble
,
.mine
.text.membership
.bubble
.mine
.emote
{
{
background-color
:
#fff
! important
;
background-color
:
transparent
! important
;
}
border
:
0px
! important
;
.mine
.membership
{
background-color
:
#fff
! important
;
}
}
.mine
.text
.bubble
{
.mine
.text
.bubble
{
background-color
:
#f8f8ff
! important
;
text-align
:
left
! important
;
text-align
:
left
! important
;
}
}
...
...
This diff is collapsed.
Click to expand it.
webclient/room/room.html
+
2
−
2
View file @
fd47f55e
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<!-- FIXME: need to have better timestamp semantics than the (msg.content.hsob_ts || msg.ts) hack below -->
<!-- FIXME: need to have better timestamp semantics than the (msg.content.hsob_ts || msg.ts) hack below -->
<table
id=
"messageTable"
infinite-scroll=
"paginateMore()"
>
<table
id=
"messageTable"
infinite-scroll=
"paginateMore()"
>
<tr
ng-repeat=
"msg in events.rooms[room_id].messages"
<tr
ng-repeat=
"msg in events.rooms[room_id].messages"
ng-class=
"(events.rooms[room_id].messages[$index
-
1].user_id !== msg.user_id ? 'differentUser' : '') + (msg.user_id === state.user_id ? ' mine' : '')"
scroll-item
>
ng-class=
"(events.rooms[room_id].messages[$index
+
1].user_id !== msg.user_id ? 'differentUser' : '') + (msg.user_id === state.user_id ? ' mine' : '')"
scroll-item
>
<td
class=
"leftBlock"
>
<td
class=
"leftBlock"
>
<div
class=
"sender"
ng-hide=
"events.rooms[room_id].messages[$index - 1].user_id === msg.user_id"
>
{{ members[msg.user_id].displayname || msg.user_id }}
</div>
<div
class=
"sender"
ng-hide=
"events.rooms[room_id].messages[$index - 1].user_id === msg.user_id"
>
{{ members[msg.user_id].displayname || msg.user_id }}
</div>
<div
class=
"timestamp"
>
{{ (msg.content.hsob_ts || msg.ts) | date:'MMM d HH:mm:ss' }}
</div>
<div
class=
"timestamp"
>
{{ (msg.content.hsob_ts || msg.ts) | date:'MMM d HH:mm:ss' }}
</div>
...
@@ -77,7 +77,7 @@
...
@@ -77,7 +77,7 @@
{{ state.user_id }}
{{ state.user_id }}
</td>
</td>
<td
width=
"*"
style=
"min-width: 100px"
>
<td
width=
"*"
style=
"min-width: 100px"
>
<input
id=
"mainInput"
ng-model=
"textInput"
ng-enter=
"send()"
ng-disabled=
"state.sending"
ng-focus=
"true"
auto-complete
/>
<input
id=
"mainInput"
ng-model=
"textInput"
ng-enter=
"send()"
ng-disabled=
"state.sending"
ng-focus=
"true"
auto
complete=
"off"
tab
-complete
/>
</td>
</td>
<td
width=
"150px"
>
<td
width=
"150px"
>
<button
ng-click=
"send()"
ng-disabled=
"state.sending"
>
Send
</button>
<button
ng-click=
"send()"
ng-disabled=
"state.sending"
>
Send
</button>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment