patternfly-sass 3.6.0 → 3.7.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/.travis.yml +2 -2
- data/Rakefile +16 -21
- data/assets/stylesheets/_patternfly.scss +1 -0
- data/assets/stylesheets/patternfly/_list-view.scss +2 -0
- data/assets/stylesheets/patternfly/_wizard.scss +242 -0
- data/bower.json +1 -1
- data/lib/patternfly-sass/version.rb +2 -2
- data/patternfly-sass.gemspec +1 -0
- data/spec/compare_spec.rb +4 -3
- data/spec/html/about-modal.html +13 -13
- data/spec/html/accordions.html +11 -12
- data/spec/html/alerts.html +11 -12
- data/spec/html/area-charts.html +11 -12
- data/spec/html/badges.html +11 -12
- data/spec/html/bar-charts.html +11 -12
- data/spec/html/basic.html +12 -12
- data/spec/html/blank-slate.html +11 -12
- data/spec/html/bootstrap-combobox.html +11 -12
- data/spec/html/bootstrap-datepicker.html +19 -20
- data/spec/html/bootstrap-select.html +11 -12
- data/spec/html/bootstrap-switch.html +11 -12
- data/spec/html/bootstrap-touchspin.html +11 -12
- data/spec/html/bootstrap-treeview-2.html +12 -12
- data/spec/html/bootstrap-treeview.html +11 -12
- data/spec/html/breadcrumbs.html +11 -12
- data/spec/html/buttons.html +11 -12
- data/spec/html/cards.html +12 -12
- data/spec/html/code.html +11 -12
- data/spec/html/dashboard.html +12 -12
- data/spec/html/datatables-columns.html +11 -12
- data/spec/html/datatables.html +11 -12
- data/spec/html/dist/css/patternfly-additions.css +223 -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/donut-charts.html +11 -12
- data/spec/html/dropdowns.html +11 -12
- data/spec/html/form.html +12 -12
- data/spec/html/forms.html +11 -12
- data/spec/html/horizontal-navigation.html +12 -12
- data/spec/html/icons.html +11 -12
- data/spec/html/index.html +14 -12
- data/spec/html/infotip.html +13 -13
- data/spec/html/labels.html +11 -12
- data/spec/html/layout-alt-fixed-inner-scroll.html +12 -12
- data/spec/html/layout-alt-fixed-with-footer-inner-scroll.html +12 -12
- data/spec/html/layout-alt-fixed-with-footer.html +12 -12
- data/spec/html/layout-alt-fixed.html +12 -12
- data/spec/html/line-charts.html +11 -12
- data/spec/html/list-group.html +11 -12
- data/spec/html/list-view.html +11 -12
- data/spec/html/login.html +13 -13
- data/spec/html/modals.html +11 -12
- data/spec/html/navbar.html +36 -37
- data/spec/html/notifications-drawer.html +12 -12
- data/spec/html/pagination.html +11 -12
- data/spec/html/panels.html +11 -12
- data/spec/html/pie-charts.html +11 -12
- data/spec/html/popovers.html +11 -12
- data/spec/html/progress-bars.html +11 -12
- data/spec/html/search.html +11 -12
- data/spec/html/spinner.html +11 -12
- data/spec/html/tab.html +12 -12
- data/spec/html/tables.html +11 -12
- data/spec/html/tabs.html +11 -12
- data/spec/html/time-picker.html +11 -12
- data/spec/html/toast.html +11 -12
- data/spec/html/toolbar.html +13 -14
- data/spec/html/tooltip.html +11 -12
- data/spec/html/typography-2.html +12 -12
- data/spec/html/typography.html +11 -12
- data/spec/html/utilization-bar-charts.html +11 -12
- data/spec/html/vertical-navigation-without-icons.html +12 -12
- data/spec/html/vertical-navigation.html +12 -12
- data/spec/html/wizard.html +472 -0
- data/spec/main.html +2 -2
- data/tasks/converter.rb +12 -6
- metadata +19 -2
@@ -8,29 +8,29 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
28
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
29
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
30
30
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.6.0/jquery.matchHeight-min.js"></script>
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.10/c3.min.js"></script>
|
32
32
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.0/d3.min.js"></script>
|
33
|
-
<script src="
|
33
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
34
34
|
</head>
|
35
35
|
<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-warning alert-dismissable">
|
36
36
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
|
@@ -50,7 +50,7 @@
|
|
50
50
|
<span class="icon-bar"></span>
|
51
51
|
</button>
|
52
52
|
<a href="/" class="navbar-brand">
|
53
|
-
<img class="navbar-brand-icon" src="
|
53
|
+
<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" />
|
54
54
|
</a>
|
55
55
|
</div>
|
56
56
|
<nav class="collapse navbar-collapse">
|
data/spec/html/pagination.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
data/spec/html/panels.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
data/spec/html/pie-charts.html
CHANGED
@@ -8,29 +8,28 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
30
|
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.10/c3.min.js"></script>
|
32
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.0/d3.min.js"></script>
|
33
|
-
<script src="
|
32
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
34
33
|
</head>
|
35
34
|
|
36
35
|
<body>
|
data/spec/html/popovers.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
data/spec/html/search.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
data/spec/html/spinner.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
data/spec/html/tab.html
CHANGED
@@ -8,27 +8,27 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
28
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
29
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
30
30
|
<script src="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
|
31
|
-
<script src="
|
31
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
32
|
</head>
|
33
33
|
<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-warning alert-dismissable">
|
34
34
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
|
@@ -48,7 +48,7 @@
|
|
48
48
|
<span class="icon-bar"></span>
|
49
49
|
</button>
|
50
50
|
<a class="navbar-brand" href="/">
|
51
|
-
<img src="
|
51
|
+
<img src="../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
52
52
|
</a>
|
53
53
|
</div>
|
54
54
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/tables.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|
data/spec/html/tabs.html
CHANGED
@@ -8,27 +8,26 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<link rel="shortcut icon" href="
|
11
|
+
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
|
12
12
|
<!-- iPad retina icon -->
|
13
|
-
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="
|
13
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
|
14
14
|
<!-- iPad retina icon (iOS < 7) -->
|
15
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="
|
15
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
|
16
16
|
<!-- iPad non-retina icon -->
|
17
|
-
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="
|
17
|
+
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
|
18
18
|
<!-- iPad non-retina icon (iOS < 7) -->
|
19
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="
|
19
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
|
20
20
|
<!-- iPhone 6 Plus icon -->
|
21
|
-
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="
|
21
|
+
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
|
22
22
|
<!-- iPhone retina icon (iOS < 7) -->
|
23
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="
|
23
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
|
24
24
|
<!-- iPhone non-retina icon (iOS < 7) -->
|
25
|
-
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
<link rel="stylesheet" href="
|
28
|
-
<link href="tests.css" rel="stylesheet" media="screen, print">
|
25
|
+
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
|
26
|
+
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
|
27
|
+
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
|
29
28
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
30
29
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
31
|
-
<script src="
|
30
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
32
31
|
</head>
|
33
32
|
|
34
33
|
<body>
|