Commit c5fa9cdb59050b5682488cc83e9c3aed6a4c4e43
1 parent
6dd3df9d
info style
Showing
1 changed file
with
9 additions
and
1 deletions
controllets/select-dataset-controllet/select-dataset-controllet.html
... | ... | @@ -291,6 +291,12 @@ |
291 | 291 | #suggested_div { |
292 | 292 | visibility: hidden; |
293 | 293 | } |
294 | + | |
295 | + /*.info_resource_name {*/ | |
296 | + /*color: #2196F3;*/ | |
297 | + /*font-weight: bold;*/ | |
298 | + /*line-height: 48px;*/ | |
299 | + /*}*/ | |
294 | 300 | </style> |
295 | 301 | |
296 | 302 | <paper-material id="select_dataset_container" elevation="5"> |
... | ... | @@ -699,7 +705,9 @@ |
699 | 705 | if(this.$.list.selectedItem) { |
700 | 706 | |
701 | 707 | var metas = JSON.parse(this.$.list.selectedItem.metas); |
702 | - var html = ""; | |
708 | + var html = "<span style=\"color: #2196F3; font-weight: bold;\">" + this.$.list.selectedItem.resource_name + "</span><br><br>"; | |
709 | + /*font-weight: bold;*/ | |
710 | + /*line-height: 48px;*/ | |
703 | 711 | for(var i in metas) |
704 | 712 | html += "<b>" + i + ":</b> " + metas[i] + "<br>"; |
705 | 713 | this.$.info.innerHTML = html; | ... | ... |