Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EditableList Component Added #1027

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ If you feel awesome and want to support us in a small way, please consider starr
- [Progress](https://lusaxweb.github.io/vuesax/components/progress.html)
- [Card](https://lusaxweb.github.io/vuesax/components/card.html)
- [List](https://lusaxweb.github.io/vuesax/components/list.html)
- [EditableList](https://lusaxweb.github.io/vuesax/components/editableList.html)
- [Pagination](https://lusaxweb.github.io/vuesax/components/pagination.html)
- [Topbar](https://lusaxweb.github.io/vuesax/components/topbar.html)
- [SideBar](https://lusaxweb.github.io/vuesax/components/sideBar.html)
Expand Down
39 changes: 39 additions & 0 deletions dist/style/components/vsEditableList.styl
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.vs-editable-list
width: 100%
position relative
padding: 5px
.vs-editable-list--icon
padding: 6px
display: flex
align-items: center
justify-content: center
i
font-size: 1.2rem !important
.vs-editable-list--header
padding: 8px 0px
font-weight: bold
display: flex
align-items: center
justify-content: flex-start
box-shadow: 0px 7px 7px -5px rgba(0,0,0,.08)
margin-bottom: 5px

.vs-editable-list--item
border-bottom: 1px solid rgba(0,0,0,.08)
padding: 5px
display flex
align-items: center
justify-content: flex-start
.vs-editable-list--avatar
display flex
align-items center
.vs-editable-list--slot
propWithDir(margin, left, auto)
.vs-editable-list--title
font-weight: bold
.vs-editable-list--subtitle
font-size: .8rem

for colorx, i in $vs-colors
.vs-editable-list-header-{colorx}
color getColor(colorx, 1)
Loading