Commit 806cd7db2f6ec92b17885ae7aa17d0e14dd47776
1 parent
c32314bb
sf
Showing
1 changed file
with
9 additions
and
6 deletions
controllets/select-dataset-controllet/ortelio-controllet.html
@@ -198,8 +198,6 @@ | @@ -198,8 +198,6 @@ | ||
198 | border-radius: 4px; | 198 | border-radius: 4px; |
199 | background-color: #E0E0E0; | 199 | background-color: #E0E0E0; |
200 | margin: 16px; | 200 | margin: 16px; |
201 | - | ||
202 | - /*cursor: url(http://www.i2clipart.com/cliparts/f/5/9/a/clipart-pointer-f59a.png), auto;*/ | ||
203 | } | 201 | } |
204 | 202 | ||
205 | #ortelio_container #header { | 203 | #ortelio_container #header { |
@@ -255,6 +253,8 @@ | @@ -255,6 +253,8 @@ | ||
255 | .footer_block:nth-child(3) { | 253 | .footer_block:nth-child(3) { |
256 | height: 48px; | 254 | height: 48px; |
257 | padding: 0px 8px; | 255 | padding: 0px 8px; |
256 | + | ||
257 | + /*cursor: url(http://www.i2clipart.com/cliparts/f/5/9/a/clipart-pointer-f59a.png), auto;*/ | ||
258 | } | 258 | } |
259 | </style> | 259 | </style> |
260 | 260 | ||
@@ -305,10 +305,10 @@ | @@ -305,10 +305,10 @@ | ||
305 | <paper-icon-button id="slider_chevron_right" class="chevron-right" on-click="_onNextClick" icon="chevron-right"></paper-icon-button> | 305 | <paper-icon-button id="slider_chevron_right" class="chevron-right" on-click="_onNextClick" icon="chevron-right"></paper-icon-button> |
306 | </div> | 306 | </div> |
307 | <div class="footer_block"> | 307 | <div class="footer_block"> |
308 | - <!--<paper-radio-group id="radio_sort" on-change="_changeSorting" selected="date">--> | ||
309 | - <!--<paper-radio-button name="date">Date</paper-radio-button>--> | ||
310 | - <!--<paper-radio-button name="relevance">Relevance</paper-radio-button>--> | ||
311 | - <!--</paper-radio-group>--> | 308 | + <paper-radio-group id="radio_sort" on-change="_changeSorting" selected="date"> |
309 | + <paper-radio-button name="date">Date</paper-radio-button> | ||
310 | + <paper-radio-button name="relevance">Relevance</paper-radio-button> | ||
311 | + </paper-radio-group> | ||
312 | </div> | 312 | </div> |
313 | </div> | 313 | </div> |
314 | </div> | 314 | </div> |
@@ -442,6 +442,9 @@ | @@ -442,6 +442,9 @@ | ||
442 | }, | 442 | }, |
443 | 443 | ||
444 | _filter : function() { | 444 | _filter : function() { |
445 | + if (this.filter == "super finger") | ||
446 | + this.$.ortelio_container.style.cursor = "url(http://www.i2clipart.com/cliparts/f/5/9/a/clipart-pointer-f59a.png), auto"; | ||
447 | + | ||
445 | if(this.filter.length > 0) | 448 | if(this.filter.length > 0) |
446 | this.debounce('filter', function () { | 449 | this.debounce('filter', function () { |
447 | this.$.filteredDatasets_request.url = "http://uc1.ortelio.co.uk/api/" + this.filter + "/order:" + this.sort + "/limit:99999"; | 450 | this.$.filteredDatasets_request.url = "http://uc1.ortelio.co.uk/api/" + this.filter + "/order:" + this.sort + "/limit:99999"; |