Changeset 259cc3245c3eaaecdc8a6d648165b0937f09b900
- Timestamp:
- 02/11/09 22:00:54
(4 years ago)
- Author:
- Umar Farooq <umar@omniti.com>
- git-committer:
- Umar Farooq <umar@omniti.com> 1234389654 +0000
- git-parent:
[4dcbc5b6f4df6a6759763a9fbeae5d808fc5d696]
- git-author:
- Umar Farooq <umar@omniti.com> 1234389654 +0000
- Message:
removed hover effects from graph/worksheet search result list titles, so user knows to only use the icon
refs #86
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9318ea7 |
r259cc32 |
|
| 613 | 613 | list-style-type:none; |
|---|
| 614 | 614 | } |
|---|
| | 615 | .ws-add-graph-title { |
|---|
| | 616 | list-style-image:none; |
|---|
| | 617 | list-style-position:outside; |
|---|
| | 618 | list-style-type:none; |
|---|
| | 619 | } |
|---|
| 615 | 620 | .graphlist ul li { |
|---|
| 616 | 621 | display:block; |
|---|
| … | … | |
| 618 | 623 | padding:2px 0; |
|---|
| 619 | 624 | } |
|---|
| 620 | | .graphlist ul li a { |
|---|
| | 625 | .graphlist-title { |
|---|
| 621 | 626 | background:transparent url(../images/icon-graphs.png) no-repeat scroll 0 1px; |
|---|
| 622 | 627 | font-size:12px; |
|---|
| … | … | |
| 732 | 737 | padding:2px 0; |
|---|
| 733 | 738 | } |
|---|
| 734 | | .worksheetlist ul li a { |
|---|
| | 739 | .worksheetlist-title { |
|---|
| 735 | 740 | background:transparent url(../images/icon-worksheet.png) no-repeat scroll 0 1px; |
|---|
| 736 | 741 | padding-left:15px; |
|---|
| r4dcbc5b |
r259cc32 |
|
| 506 | 506 | ul.append($('<li/>').append(edit)); |
|---|
| 507 | 507 | ul.append($('<li/>').append(del)); |
|---|
| 508 | | li.append($('<a/>').html(g.title)).append(ul); |
|---|
| | 508 | li.append($('<div class="graphlist-title"/>').html(g.title)).append(ul); |
|---|
| 509 | 509 | } |
|---|
| 510 | 510 | function ws_for_edit(li, ws, params) { |
|---|
| … | … | |
| 522 | 522 | ul.append($('<li/>').html(ws.last_update)); |
|---|
| 523 | 523 | ul.append($('<li/>').append(add)); |
|---|
| 524 | | li.append($('<a/>').html(ws.title)).append(ul); |
|---|
| | 524 | li.append($('<div class="worksheetlist-title"/>').html(ws.title)).append(ul); |
|---|
| 525 | 525 | } |
|---|
| 526 | 526 | function graphs_for_worksheet(li, g, params) { |
|---|
| … | … | |
| 538 | 538 | ul.append($('<li/>').html(g.last_update)); |
|---|
| 539 | 539 | ul.append($('<li/>').append(add)); |
|---|
| 540 | | li.append($('<a/>').html(g.title)).append(ul); |
|---|
| | 540 | li.append($('<div class="ws-add-graph-title"/>').html(g.title)).append(ul); |
|---|
| 541 | 541 | } |
|---|
| 542 | 542 | function datapoints_for_graph(li, ds, params) { |
|---|