Skip to content
Snippets Groups Projects
Commit 9ec0e0f8 authored by trfloria's avatar trfloria
Browse files

pointer cursor on content list study docs

parent 38976cb4
No related branches found
No related tags found
1 merge request!47Listview
......@@ -70,9 +70,9 @@ export default class studydocList {
studydocs
.getList()
.map(doc =>
m('tr', { onclick: () => this.selectDocument(doc) }, [
m('tr', { class:'list-items', onclick: () => this.selectDocument(doc) }, [
m('td', doc.title),
m('td', 'type'),
m('td', doc.type),
])
)
),
......
......@@ -3,14 +3,17 @@
grid-template-columns: auto auto auto;
.filter{
}
.content{
table {
width: 100%;
text-align: left;
tr.list-items {
cursor: pointer;
}
.content{
table {
width: 100%;
text-align: left;
}
}
.details{
}
}
.details{
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment