Lines Matching refs:stack
448 // Stack hover states
1319 * Stack - Uses fixed columns and flexible element height.
1325 var isStack = $widget.hasClass('resource-stack-layout');
1385 /* Initializes a Resource Card Stack Widget (column-based layout)
1397 $stacks[i] = $('<div>').addClass('resource-card-stack')
1439 // Find the stack with the shortest height, but give preference to
1543 // A stack has a third dimension which is the number of stacked items
1549 // Create a stack container which should have the dimensions defined
1551 $stackDiv = $('<div>').addClass('resource-card-stack resource-card-' + isStack[1] +
1555 // Build each stack item or just a single item
1567 $card.addClass('resource-card-row-stack-last');
1722 var stack = [section];
1724 while (stack.length) {
1725 if (stack[0].resource.image) {
1726 $base.css('background-image', 'url(' + urlPrefix + stack[0].resource.image + ')');
1730 if (stack[0].sections) {
1731 stack = stack.concat(stack[0].sections);
1734 stack.shift();
6311 // Only fadeout toasts from top of stack. Others are removed immediately.