forked from ktt-ol/ep_pad-lister
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.idea | ||
node_modules | ||
.DS_Store | ||
.ep_initialized | ||
syncForDev.sh |
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,3 +1,25 @@ | ||
# ep_pad-lister | ||
|
||
A plugin for Etherpad-lite that shows a list of all pads sorted by last edit date. | ||
A plugin for Etherpad-lite that shows a list of all pads sorted by last edit date. | ||
|
||
# installing | ||
|
||
npm install ep_pad-lister (from your etherpad-lite folder) | ||
|
||
|
||
Put the follwing snippet into ```src/static/custom/index.csss``` | ||
|
||
``` | ||
.pad-lister-link-container { | ||
font-size: 16px; | ||
width: 350px; | ||
text-align:center; | ||
min-height: 20px; | ||
padding: 19px; | ||
margin: 50px auto; | ||
background-color: #f5f5f5; | ||
border: 1px solid #e3e3e3; | ||
border-radius: 4px; | ||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); | ||
} | ||
``` |
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