summaryrefslogtreecommitdiff
path: root/templates/project/widgets/list
diff options
context:
space:
mode:
authorDaniel Beauchamp <daniel.beauchamp@shopify.com>2012-10-30 05:16:35 -0400
committerDaniel Beauchamp <daniel.beauchamp@shopify.com>2012-10-30 05:16:35 -0400
commita4a4564f760bb1bcd541366186cd46488d5a569b (patch)
tree3737ae6d233464482482880bd858665866686f10 /templates/project/widgets/list
parent3a77d19282f2055559c63468c574b824138464ac (diff)
Added new widgets, and made them more flexible. Ready for 0.1.3!
Diffstat (limited to 'templates/project/widgets/list')
-rw-r--r--templates/project/widgets/list/list.coffee15
-rw-r--r--templates/project/widgets/list/list.html5
-rw-r--r--templates/project/widgets/list/list.scss14
3 files changed, 19 insertions, 15 deletions
diff --git a/templates/project/widgets/list/list.coffee b/templates/project/widgets/list/list.coffee
index 3ca892b..3cbf7a1 100644
--- a/templates/project/widgets/list/list.coffee
+++ b/templates/project/widgets/list/list.coffee
@@ -1,13 +1,6 @@
class Dashing.List extends Dashing.Widget
- @accessor 'current', Dashing.AnimatedValue
-
- @accessor 'arrow', ->
- if @get('last')
- if parseInt(@get('current')) > parseInt(@get('last')) then 'arrow-up' else 'arrow-down'
-
ready: ->
- Batman.setImmediate =>
- if @get('unordered')
- $(@node).find('ol').remove()
- else
- $(@node).find('ul').remove() \ No newline at end of file
+ if @get('unordered')
+ $(@node).find('ol').remove()
+ else
+ $(@node).find('ul').remove() \ No newline at end of file
diff --git a/templates/project/widgets/list/list.html b/templates/project/widgets/list/list.html
index cc90d42..86752bf 100644
--- a/templates/project/widgets/list/list.html
+++ b/templates/project/widgets/list/list.html
@@ -12,4 +12,7 @@
<span class="label" data-bind="item.label"></span>
<span class="value" data-bind="item.value"></span>
</li>
-</ul> \ No newline at end of file
+</ul>
+
+<p class="more-info" data-bind="moreinfo"></p>
+<p class="updated-at" data-bind="updatedAtMessage"></p> \ No newline at end of file
diff --git a/templates/project/widgets/list/list.scss b/templates/project/widgets/list/list.scss
index 098200d..90b6c84 100644
--- a/templates/project/widgets/list/list.scss
+++ b/templates/project/widgets/list/list.scss
@@ -1,12 +1,12 @@
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
-
$background-color: #12b0c5;
$value-color: #fff;
-$title-color: lighten($background-color, 45%);
-$label-color: lighten($background-color, 45%);
+$title-color: rgba(255, 255, 255, 0.7);
+$label-color: rgba(255, 255, 255, 0.7);
+$moreinfo-color: rgba(255, 255, 255, 0.7);
// ----------------------------------------------------------------------------
// Widget-list styles
@@ -49,4 +49,12 @@ $label-color: lighten($background-color, 45%);
color: $value-color;
}
+ .updated-at {
+ color: rgba(0, 0, 0, 0.3);
+ }
+
+ .more-info {
+ color: $moreinfo-color;
+ }
+
} \ No newline at end of file