-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from Detaysoft/next
Next version 0.8.0
- Loading branch information
Showing
7 changed files
with
129 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-chat-elements", | ||
"version": "0.7.2", | ||
"version": "0.8.0", | ||
"description": "Reactjs chat components", | ||
"author": "Avare Kodcu <[email protected]>", | ||
"main": "dist/main.js", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,49 @@ | ||
.rce-container-mlist { | ||
position: relative; | ||
display: flex; | ||
} | ||
|
||
.rce-mlist { | ||
display: block; | ||
overflow: auto; | ||
position: relative; | ||
flex: 1; | ||
} | ||
|
||
.rce-mlist-down-button { | ||
position: absolute; | ||
right: 10px; | ||
bottom: 15px; | ||
width: 40px; | ||
height: 40px; | ||
background: #fff; | ||
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.05), 0 2px 5px 0 rgba(0,0,0,0.1); | ||
border-radius: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
color: #333; | ||
cursor: pointer; | ||
transition: 200ms; | ||
} | ||
|
||
.rce-mlist-down-button:hover { | ||
opacity: 0.7; | ||
} | ||
|
||
.rce-mlist-down-button--badge { | ||
position: absolute; | ||
right: -5px; | ||
top: -5px; | ||
background: red; | ||
width: 20px; | ||
height: 20px; | ||
border-radius: 100%; | ||
font-size: 12px; | ||
display: flex; | ||
text-align: center; | ||
align-items: center; | ||
justify-content: center; | ||
color: #fff; | ||
font-weight: 700; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters