Index: arms/vue/src/assets/lib/nvd3/src/models/multiBarHorizontalChart.js =================================================================== diff -u --- arms/vue/src/assets/lib/nvd3/src/models/multiBarHorizontalChart.js (revision 0) +++ arms/vue/src/assets/lib/nvd3/src/models/multiBarHorizontalChart.js (revision 85e9bc47703a5185177d06e5cf63dfaf7af181b9) @@ -0,0 +1,21 @@ +%button { + display: inline-block; + padding: 7px 12px; + &:active { + margin: 2px 0 -2px 0; + } +} + +@mixin button-color($color) { + background: $color; + color: $white; + box-shadow: 0 3px 0 darken($color, 6%); + &:hover { + background: darken($color, 6%); + box-shadow: 0 3px 0 darken($color, 12%); + color: $white; + } + &:active { + box-shadow: 0 1px 0 darken($color, 12%); + } +} \ No newline at end of file Index: arms/vue/src/assets/lib/nvd3/src/models/multiBarTimeSeriesChart.js =================================================================== diff -u --- arms/vue/src/assets/lib/nvd3/src/models/multiBarTimeSeriesChart.js (revision 0) +++ arms/vue/src/assets/lib/nvd3/src/models/multiBarTimeSeriesChart.js (revision 85e9bc47703a5185177d06e5cf63dfaf7af181b9) @@ -0,0 +1,8 @@ +//************************************************************************// +// These mixins/functions are deprecated +// They will be removed in the next MAJOR version release +//************************************************************************// +@mixin inline-block { + display: inline-block; + @warn "inline-block mixin is deprecated and will be removed in the next major version release"; +} Index: pages/ARMS-list.html =================================================================== diff -u -r9d912144b9f194aed14b2a5a86eddba3303f0e55 -r85e9bc47703a5185177d06e5cf63dfaf7af181b9 --- pages/ARMS-list.html (.../ARMS-list.html) (revision 9d912144b9f194aed14b2a5a86eddba3303f0e55) +++ pages/ARMS-list.html (.../ARMS-list.html) (revision 85e9bc47703a5185177d06e5cf63dfaf7af181b9) @@ -225,6 +225,7 @@ $(this).parent().siblings().removeClass("active") $(this).parent().addClass("active"); }); + }); function includeLayout() { var includeArea = $('[data-include]'); @@ -237,49 +238,6 @@ }); }); } - $(function () { - //Enable iCheck plugin for checkboxes - //iCheck for checkbox and radio inputs - $('.mailbox-messages input[type="checkbox"]').iCheck({ - checkboxClass: 'icheckbox_flat-blue', - radioClass: 'iradio_flat-blue' - }); - - //Enable check and uncheck all functionality - $(".checkbox-toggle").click(function () { - var clicks = $(this).data('clicks'); - if (clicks) { - //Uncheck all checkboxes - $(".mailbox-messages input[type='checkbox']").iCheck("uncheck"); - $(".fa", this).removeClass("fa-check-square-o").addClass('fa-square-o'); - } else { - //Check all checkboxes - $(".mailbox-messages input[type='checkbox']").iCheck("check"); - $(".fa", this).removeClass("fa-square-o").addClass('fa-check-square-o'); - } - $(this).data("clicks", !clicks); - }); - - //Handle starring for glyphicon and font awesome - $(".mailbox-star").click(function (e) { - e.preventDefault(); - //detect type - var $this = $(this).find("a > i"); - var glyph = $this.hasClass("glyphicon"); - var fa = $this.hasClass("fa"); - - //Switch states - if (glyph) { - $this.toggleClass("glyphicon-star"); - $this.toggleClass("glyphicon-star-empty"); - } - - if (fa) { - $this.toggleClass("fa-star"); - $this.toggleClass("fa-star-o"); - } - }); - }); //]]> Index: pages/ARMS-list/template-box-body.html =================================================================== diff -u -r9d912144b9f194aed14b2a5a86eddba3303f0e55 -r85e9bc47703a5185177d06e5cf63dfaf7af181b9 --- pages/ARMS-list/template-box-body.html (.../template-box-body.html) (revision 9d912144b9f194aed14b2a5a86eddba3303f0e55) +++ pages/ARMS-list/template-box-body.html (.../template-box-body.html) (revision 85e9bc47703a5185177d06e5cf63dfaf7af181b9) @@ -15,7 +15,7 @@