Skip to content
This repository has been archived by the owner on Jan 12, 2018. It is now read-only.

Commit

Permalink
Converted from upstream version 3.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
skateman committed Apr 19, 2017
1 parent 65d5450 commit 8899746
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion assets/javascripts/patternfly-functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@
if (parent) {
// Calculate indentation depth
i = parent.find('.treegrid-node > span.indent').length + 1;
for (i; i > 0; i -= 1) {
for (; i > 0; i -= 1) {
node.children('.treegrid-node').prepend('<span class="indent"/>');
}
// Render expand/collapse icons
Expand Down
2 changes: 1 addition & 1 deletion assets/javascripts/patternfly-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

var patternfly = {
version: "3.23.1",
version: "3.23.2",
};

// Util: PatternFly Palette colors
Expand Down
2 changes: 1 addition & 1 deletion assets/javascripts/patternfly-settings.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/javascripts/patternfly.dataTables.pfPagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
var FIRST_PAGE_SELECTOR = ".pagination-pf-back .fa-angle-double-left"; // First page button
var FORWARD_ACTIONS_SELECTOR = ".pagination-pf-forward"; // Forward navigation actions
var LAST_PAGE_SELECTOR = ".pagination-pf-forward .fa-angle-double-right"; // Last page button
var PAGE_SIZE_SELECTOR = ".pagination-pf-pagesize"; // Page size selection
var PAGE_SIZE_SELECTOR = ".bootstrap-select .pagination-pf-pagesize"; // Page size selection
var TOTAL_ITEMS_SELECTOR = ".pagination-pf-items-total"; // Total items
var TOTAL_PAGES_SELECTOR = ".pagination-pf-pages"; // Total pages text
var PREVIOUS_PAGE_SELECTOR = ".pagination-pf-back .fa-angle-left"; // Previous page button
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions assets/javascripts/patternfly.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

var patternfly = {
version: "3.23.1",
version: "3.23.2",
};

// Util: PatternFly Palette colors
Expand Down Expand Up @@ -1102,7 +1102,7 @@
if (parent) {
// Calculate indentation depth
i = parent.find('.treegrid-node > span.indent').length + 1;
for (i; i > 0; i -= 1) {
for (; i > 0; i -= 1) {
node.children('.treegrid-node').prepend('<span class="indent"/>');
}
// Render expand/collapse icons
Expand Down
2 changes: 1 addition & 1 deletion assets/javascripts/patternfly.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/stylesheets/patternfly/_wizard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
font-size: $font-size-base;
font-weight: 700;
height: 25px;
left: calc(50% - 13px);
left: #{calc(50% - 13px)};
line-height: 22px;
position: absolute;
top: 27px;
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "patternfly-sass",
"version": "3.23.1",
"version": "3.23.2",
"license": "Apache-2.0",
"homepage": "https://www.patternfly.org",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions lib/patternfly-sass/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Patternfly
VERSION = '3.23.1'
PATTERNFLY_SHA = '955981aac98855e7dc43d86b7b3cb832de46c2b1'
VERSION = '3.23.2'
PATTERNFLY_SHA = 'c0edb0c381f19250dc2907f241919f786da3aab6'
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "patternfly-sass",
"version": "3.23.1",
"version": "3.23.2",
"author": "Red Hat",
"license": "Apache-2.0",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion spec/html/dist/css/patternfly-additions.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion spec/html/dist/css/patternfly-additions.min.css.map

Large diffs are not rendered by default.

0 comments on commit 8899746

Please sign in to comment.