patternfly-sass 3.20.0 → 3.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/assets/javascripts/patternfly-functions.js +80 -0
- data/assets/javascripts/patternfly-functions.min.js +1 -1
- data/assets/javascripts/patternfly-settings.js +1 -1
- data/assets/javascripts/patternfly-settings.min.js +1 -1
- data/assets/javascripts/patternfly.js +81 -1
- data/assets/javascripts/patternfly.min.js +2 -2
- data/assets/stylesheets/_patternfly.scss +1 -0
- data/assets/stylesheets/patternfly/_alerts.scss +1 -0
- data/assets/stylesheets/patternfly/_list-pf.scss +50 -0
- data/assets/stylesheets/patternfly/_variables.scss +5 -0
- data/assets/stylesheets/patternfly/_wizard.scss +4 -0
- data/bower.json +1 -1
- data/lib/patternfly-sass/version.rb +2 -2
- data/package.json +1 -1
- data/spec/html/about-modal.html +2 -2
- data/spec/html/accordions.html +1 -1
- data/spec/html/alerts.html +1 -1
- data/spec/html/area-charts.html +1 -1
- data/spec/html/badges.html +1 -1
- data/spec/html/bar-charts.html +1 -1
- data/spec/html/basic.html +2 -2
- data/spec/html/blank-slate.html +1 -1
- data/spec/html/bootstrap-combobox.html +1 -1
- data/spec/html/bootstrap-datepicker.html +1 -1
- data/spec/html/bootstrap-select.html +1 -1
- data/spec/html/bootstrap-switch.html +1 -1
- data/spec/html/bootstrap-touchspin.html +1 -1
- data/spec/html/bootstrap-treeview-2.html +2 -2
- data/spec/html/bootstrap-treeview.html +1 -1
- data/spec/html/breadcrumbs.html +1 -1
- data/spec/html/buttons.html +1 -1
- data/spec/html/card-view-card-variations.html +1 -1
- data/spec/html/card-view-multi-select.html +2 -2
- data/spec/html/card-view-single-select.html +2 -2
- data/spec/html/cards.html +2 -2
- data/spec/html/code.html +1 -1
- data/spec/html/dashboard.html +3 -3
- data/spec/html/dist/css/patternfly-additions.css +47 -0
- data/spec/html/dist/css/patternfly-additions.css.map +1 -1
- data/spec/html/dist/css/patternfly-additions.min.css +1 -1
- data/spec/html/dist/css/patternfly-additions.min.css.map +1 -1
- data/spec/html/dist/css/patternfly.css +1 -0
- data/spec/html/dist/css/patternfly.css.map +1 -1
- data/spec/html/dist/css/patternfly.min.css +1 -1
- data/spec/html/dist/css/patternfly.min.css.map +1 -1
- data/spec/html/donut-charts.html +1 -1
- data/spec/html/dropdowns.html +1 -1
- data/spec/html/form.html +2 -2
- data/spec/html/forms.html +1 -1
- data/spec/html/horizontal-navigation.html +2 -2
- data/spec/html/icons.html +1 -1
- data/spec/html/index.html +4 -1
- data/spec/html/infotip.html +1 -1
- data/spec/html/labels.html +1 -1
- data/spec/html/line-charts.html +1 -1
- data/spec/html/list-group.html +1 -1
- data/spec/html/list-pf.html +220 -0
- data/spec/html/list-view-compound-expansion.html +2 -2
- data/spec/html/list-view-rows.html +1 -1
- data/spec/html/list-view-simple-expansion.html +2 -2
- data/spec/html/list-view.html +2 -2
- data/spec/html/login.html +3 -3
- data/spec/html/modals.html +1 -1
- data/spec/html/navbar.html +2 -2
- data/spec/html/notification-drawer-horizontal-nav.html +2 -2
- data/spec/html/notification-drawer-vertical-nav.html +2 -2
- data/spec/html/pagination-card-view.html +2 -2
- data/spec/html/pagination-list-view.html +2 -2
- data/spec/html/pagination-table-view.html +2 -2
- data/spec/html/pagination.html +1 -1
- data/spec/html/panels.html +1 -1
- data/spec/html/pie-charts.html +1 -1
- data/spec/html/popovers.html +1 -1
- data/spec/html/progress-bars.html +1 -1
- data/spec/html/search.html +1 -1
- data/spec/html/spinner.html +1 -1
- data/spec/html/tab.html +2 -2
- data/spec/html/table-view-columns.html +1 -1
- data/spec/html/table-view-navbar.html +2 -2
- data/spec/html/table-view.html +1 -1
- data/spec/html/tables.html +1 -1
- data/spec/html/tabs.html +1 -1
- data/spec/html/time-picker.html +1 -1
- data/spec/html/toast.html +1 -1
- data/spec/html/toolbar.html +2 -2
- data/spec/html/tooltip.html +1 -1
- data/spec/html/typography-2.html +2 -2
- data/spec/html/typography.html +1 -1
- data/spec/html/utilization-bar-charts.html +1 -1
- data/spec/html/vertical-navigation-primary-only.html +2 -2
- data/spec/html/vertical-navigation-with-badges.html +2 -2
- data/spec/html/vertical-navigation-with-secondary.html +2 -2
- data/spec/html/vertical-navigation-with-tertiary-no-icons.html +2 -2
- data/spec/html/vertical-navigation-with-tertiary-pins.html +2 -2
- data/spec/html/wizard.html +1 -1
- metadata +5 -2
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
<div class="toast-notifications-list-pf">
|
|
36
36
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
<span class="icon-bar"></span>
|
|
53
53
|
</button>
|
|
54
54
|
<a class="navbar-brand" href="/">
|
|
55
|
-
<img src="
|
|
55
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
56
56
|
</a>
|
|
57
57
|
</div>
|
|
58
58
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
|
|
36
36
|
<body>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
<div class="toast-notifications-list-pf">
|
|
36
36
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
<span class="icon-bar"></span>
|
|
53
53
|
</button>
|
|
54
54
|
<a class="navbar-brand" href="/">
|
|
55
|
-
<img src="
|
|
55
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
56
56
|
</a>
|
|
57
57
|
</div>
|
|
58
58
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/list-view.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
<div class="toast-notifications-list-pf">
|
|
34
34
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<span class="icon-bar"></span>
|
|
51
51
|
</button>
|
|
52
52
|
<a class="navbar-brand" href="/">
|
|
53
|
-
<img src="
|
|
53
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
54
54
|
</a>
|
|
55
55
|
</div>
|
|
56
56
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/login.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
<div class="toast-notifications-list-pf">
|
|
34
34
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
|
|
43
43
|
<body>
|
|
44
44
|
<span id="badge">
|
|
45
|
-
<img src="
|
|
45
|
+
<img src="./../../dist/img/logo.svg" alt="PatternFly logo" />
|
|
46
46
|
</span>
|
|
47
47
|
<div class="container">
|
|
48
48
|
<div class="row">
|
|
49
49
|
<div class="col-sm-12">
|
|
50
50
|
<div id="brand">
|
|
51
|
-
<img src="
|
|
51
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application">
|
|
52
52
|
</div><!--/#brand-->
|
|
53
53
|
</div><!--/.col-*-->
|
|
54
54
|
<div class="col-sm-7 col-md-6 col-lg-5 login">
|
data/spec/html/modals.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/navbar.html
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/js/bootstrap-select.min.js"></script>
|
|
32
|
-
<script src="
|
|
32
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
33
33
|
</head>
|
|
34
34
|
|
|
35
35
|
<body>
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
<span class="icon-bar"></span>
|
|
139
139
|
</button>
|
|
140
140
|
<a class="navbar-brand" href="/">
|
|
141
|
-
<img src="
|
|
141
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
142
142
|
</a>
|
|
143
143
|
</div>
|
|
144
144
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
33
33
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
34
|
-
<script src="
|
|
34
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
35
35
|
</head>
|
|
36
36
|
<div class="toast-notifications-list-pf">
|
|
37
37
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<span class="icon-bar"></span>
|
|
55
55
|
</button>
|
|
56
56
|
<a class="navbar-brand" href="/">
|
|
57
|
-
<img src="
|
|
57
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
58
58
|
</a>
|
|
59
59
|
</div>
|
|
60
60
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
33
33
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
34
|
-
<script src="
|
|
34
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
35
35
|
</head>
|
|
36
36
|
<div class="toast-notifications-list-pf">
|
|
37
37
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<span class="icon-bar"></span>
|
|
55
55
|
</button>
|
|
56
56
|
<a href="/" class="navbar-brand">
|
|
57
|
-
<img class="navbar-brand-icon" src="
|
|
57
|
+
<img class="navbar-brand-icon" src="./../../dist/img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="./../../dist/img/brand-alt.svg" alt="PatternFly Enterprise Application" />
|
|
58
58
|
</a>
|
|
59
59
|
</div>
|
|
60
60
|
<nav class="collapse navbar-collapse">
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/js/bootstrap-select.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
<div class="toast-notifications-list-pf">
|
|
36
36
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
<span class="icon-bar"></span>
|
|
64
64
|
</button>
|
|
65
65
|
<a class="navbar-brand" href="/">
|
|
66
|
-
<img src="
|
|
66
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
67
67
|
</a>
|
|
68
68
|
</div>
|
|
69
69
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/js/bootstrap-select.min.js"></script>
|
|
32
|
-
<script src="
|
|
32
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
33
33
|
</head>
|
|
34
34
|
<div class="toast-notifications-list-pf">
|
|
35
35
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
<span class="icon-bar"></span>
|
|
52
52
|
</button>
|
|
53
53
|
<a class="navbar-brand" href="/">
|
|
54
|
-
<img src="
|
|
54
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
55
55
|
</a>
|
|
56
56
|
</div>
|
|
57
57
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<script src="../../dist/js/patternfly.dataTables.pfPagination.js"></script>
|
|
37
37
|
<script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
|
|
38
38
|
<script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
|
|
39
|
-
<script src="
|
|
39
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
40
40
|
</head>
|
|
41
41
|
|
|
42
42
|
<body>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<span class="icon-bar"></span>
|
|
51
51
|
</button>
|
|
52
52
|
<a class="navbar-brand" href="/">
|
|
53
|
-
<img src="
|
|
53
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
54
54
|
</a>
|
|
55
55
|
</div>
|
|
56
56
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/pagination.html
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/js/bootstrap-select.min.js"></script>
|
|
32
|
-
<script src="
|
|
32
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
33
33
|
</head>
|
|
34
34
|
|
|
35
35
|
<body>
|
data/spec/html/panels.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/pie-charts.html
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
|
|
36
36
|
<body>
|
data/spec/html/popovers.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/search.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/spinner.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/tab.html
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<script src="../../dist/js/patternfly.dataTables.pfFilter.js"></script>
|
|
36
36
|
<script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
|
|
37
37
|
<script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
|
|
38
|
-
<script src="
|
|
38
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
39
39
|
</head>
|
|
40
40
|
<div class="toast-notifications-list-pf">
|
|
41
41
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<span class="icon-bar"></span>
|
|
58
58
|
</button>
|
|
59
59
|
<a class="navbar-brand" href="/">
|
|
60
|
-
<img src="
|
|
60
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
61
61
|
</a>
|
|
62
62
|
</div>
|
|
63
63
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<script src="//cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
|
|
32
32
|
<script src="//cdn.datatables.net/colvis/1.1.2/js/dataTables.colVis.min.js"></script>
|
|
33
33
|
<script src="//cdn.datatables.net/colreorder/1.3.2/js/dataTables.colReorder.min.js"></script>
|
|
34
|
-
<script src="
|
|
34
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
35
35
|
</head>
|
|
36
36
|
|
|
37
37
|
<body>
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<script src="../../dist/js/patternfly.dataTables.pfPagination.js"></script>
|
|
37
37
|
<script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
|
|
38
38
|
<script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
|
|
39
|
-
<script src="
|
|
39
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
40
40
|
</head>
|
|
41
41
|
|
|
42
42
|
<body>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<span class="icon-bar"></span>
|
|
51
51
|
</button>
|
|
52
52
|
<a class="navbar-brand" href="/">
|
|
53
|
-
<img src="
|
|
53
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
54
54
|
</a>
|
|
55
55
|
</div>
|
|
56
56
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/table-view.html
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<script src="../../dist/js/patternfly.dataTables.pfPagination.js"></script>
|
|
37
37
|
<script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
|
|
38
38
|
<script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
|
|
39
|
-
<script src="
|
|
39
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
40
40
|
</head>
|
|
41
41
|
|
|
42
42
|
<body>
|
data/spec/html/tables.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/tabs.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/time-picker.html
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment.min.js"></script>
|
|
32
32
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/js/bootstrap-datetimepicker.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
|
|
36
36
|
<body>
|
data/spec/html/toast.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/toolbar.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
<span class="icon-bar"></span>
|
|
52
52
|
</button>
|
|
53
53
|
<a class="navbar-brand" href="/">
|
|
54
|
-
<img src="
|
|
54
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
55
55
|
</a>
|
|
56
56
|
</div>
|
|
57
57
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/tooltip.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
data/spec/html/typography-2.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="typography-2.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
<div class="toast-notifications-list-pf">
|
|
34
34
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<span class="icon-bar"></span>
|
|
51
51
|
</button>
|
|
52
52
|
<a class="navbar-brand" href="/">
|
|
53
|
-
<img src="
|
|
53
|
+
<img src="./../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
|
54
54
|
</a>
|
|
55
55
|
</div>
|
|
56
56
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/typography.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<link href="tests.css" rel="stylesheet" media="screen, print">
|
|
29
29
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
|
-
<script src="
|
|
31
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
|
|
34
34
|
<body>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
33
|
-
<script src="
|
|
33
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
34
34
|
</head>
|
|
35
35
|
|
|
36
36
|
<body>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
|
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
|
|
33
33
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
|
|
34
|
-
<script src="
|
|
34
|
+
<script src="./../../dist/js/patternfly.min.js"></script>
|
|
35
35
|
</head>
|
|
36
36
|
<div class="toast-notifications-list-pf">
|
|
37
37
|
<div class="toast-pf alert alert-warning alert-dismissable">
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<span class="icon-bar"></span>
|
|
55
55
|
</button>
|
|
56
56
|
<a href="/" class="navbar-brand">
|
|
57
|
-
<img class="navbar-brand-icon" src="
|
|
57
|
+
<img class="navbar-brand-icon" src="./../../dist/img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="./../../dist/img/brand-alt.svg" alt="PatternFly Enterprise Application" />
|
|
58
58
|
</a>
|
|
59
59
|
</div>
|
|
60
60
|
<nav class="collapse navbar-collapse">
|