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,28 +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="
|
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="//rawgit.com/istvan-ujjmeszaros/bootstrap-touchspin/3.0.3/dist/jquery.bootstrap-touchspin.min.js"></script>
|
32
|
-
<script src="
|
31
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
33
32
|
</head>
|
34
33
|
|
35
34
|
<body>
|
@@ -8,28 +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="
|
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/bootstrap-select/1.7.3/js/bootstrap-select.min.js"></script>
|
31
31
|
<script src="//rawgit.com/jonmiles/bootstrap-treeview/v1.2.0/dist/bootstrap-treeview.min.js"></script>
|
32
|
-
<script src="
|
32
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
33
33
|
</head>
|
34
34
|
<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-warning alert-dismissable">
|
35
35
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
|
@@ -49,7 +49,7 @@
|
|
49
49
|
<span class="icon-bar"></span>
|
50
50
|
</button>
|
51
51
|
<a class="navbar-brand" href="/">
|
52
|
-
<img src="
|
52
|
+
<img src="../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
53
53
|
</a>
|
54
54
|
</div>
|
55
55
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
@@ -8,28 +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="
|
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="//rawgit.com/jonmiles/bootstrap-treeview/v1.2.0/dist/bootstrap-treeview.min.js"></script>
|
32
|
-
<script src="
|
31
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
33
32
|
</head>
|
34
33
|
|
35
34
|
<body>
|
data/spec/html/breadcrumbs.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/buttons.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/cards.html
CHANGED
@@ -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">
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<span class="icon-bar"></span>
|
62
62
|
</button>
|
63
63
|
<a class="navbar-brand" href="/">
|
64
|
-
<img src="
|
64
|
+
<img src="../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
65
65
|
</a>
|
66
66
|
</div>
|
67
67
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
data/spec/html/code.html
CHANGED
@@ -8,28 +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="
|
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="//rawgit.com/tcollard/google-code-prettify/v1.0.4/bin/prettify.min.js"></script>
|
32
|
-
<script src="
|
31
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
33
32
|
</head>
|
34
33
|
|
35
34
|
<body>
|
data/spec/html/dashboard.html
CHANGED
@@ -8,28 +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="
|
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/c3/0.4.10/c3.min.js"></script>
|
31
31
|
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.0/d3.min.js"></script>
|
32
|
-
<script src="
|
32
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
33
33
|
</head>
|
34
34
|
<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-warning alert-dismissable">
|
35
35
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
|
@@ -49,7 +49,7 @@
|
|
49
49
|
<span class="icon-bar"></span>
|
50
50
|
</button>
|
51
51
|
<a class="navbar-brand" href="/">
|
52
|
-
<img src="
|
52
|
+
<img src="../../dist/img/brand.svg" alt="PatternFly Enterprise Application" />
|
53
53
|
</a>
|
54
54
|
</div>
|
55
55
|
<div class="collapse navbar-collapse navbar-collapse-1">
|
@@ -8,30 +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="
|
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="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
|
32
31
|
<script src="//cdn.datatables.net/colvis/1.1.2/js/dataTables.colVis.min.js"></script>
|
33
32
|
<script src="//cdn.datatables.net/colreorder/1.1.3/js/dataTables.colReorder.min.js"></script>
|
34
|
-
<script src="
|
33
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
35
34
|
</head>
|
36
35
|
|
37
36
|
<body>
|
data/spec/html/datatables.html
CHANGED
@@ -8,28 +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="
|
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="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
|
32
|
-
<script src="
|
31
|
+
<script src="../../dist/js/patternfly.min.js"></script>
|
33
32
|
</head>
|
34
33
|
|
35
34
|
<body>
|
@@ -3495,6 +3495,7 @@ a.disabled {
|
|
3495
3495
|
display: table-cell;
|
3496
3496
|
-ms-flex: 1;
|
3497
3497
|
flex: 1;
|
3498
|
+
min-width: 0;
|
3498
3499
|
vertical-align: top;
|
3499
3500
|
width: 100%;
|
3500
3501
|
}
|
@@ -3600,6 +3601,7 @@ a.disabled {
|
|
3600
3601
|
display: flex;
|
3601
3602
|
-ms-flex: 1;
|
3602
3603
|
flex: 1;
|
3604
|
+
min-width: 0;
|
3603
3605
|
padding-bottom: 20px;
|
3604
3606
|
padding-top: 20px;
|
3605
3607
|
}
|
@@ -5804,4 +5806,225 @@ a.disabled {
|
|
5804
5806
|
.force-hide-secondary-nav-pf .persistent-secondary .nav-pf-persistent-secondary {
|
5805
5807
|
display: none !important;
|
5806
5808
|
}
|
5809
|
+
.wizard-pf-body {
|
5810
|
+
padding: 0;
|
5811
|
+
}
|
5812
|
+
/* styles the sidebard containing the sub-steps */
|
5813
|
+
.wizard-pf-sidebar {
|
5814
|
+
background: #fafafa;
|
5815
|
+
border-right: 1px solid #d1d1d1;
|
5816
|
+
bottom: 0;
|
5817
|
+
display: table-cell;
|
5818
|
+
left: 0;
|
5819
|
+
overflow-x: hidden;
|
5820
|
+
overflow-y: auto;
|
5821
|
+
position: relative;
|
5822
|
+
top: 0;
|
5823
|
+
vertical-align: top;
|
5824
|
+
}
|
5825
|
+
.wizard-pf-sidebar .list-group {
|
5826
|
+
border-top: 0;
|
5827
|
+
margin-bottom: 0;
|
5828
|
+
}
|
5829
|
+
.wizard-pf-sidebar .list-group-item {
|
5830
|
+
background-color: transparent;
|
5831
|
+
border-color: #ededed;
|
5832
|
+
padding: 0;
|
5833
|
+
}
|
5834
|
+
.wizard-pf-sidebar .list-group-item > a {
|
5835
|
+
color: #030303;
|
5836
|
+
cursor: pointer;
|
5837
|
+
display: block;
|
5838
|
+
font-size: 14px;
|
5839
|
+
font-weight: 700;
|
5840
|
+
height: 50px;
|
5841
|
+
outline: 0;
|
5842
|
+
padding-top: 11px;
|
5843
|
+
padding-left: 20px;
|
5844
|
+
position: relative;
|
5845
|
+
white-space: nowrap;
|
5846
|
+
width: 18em;
|
5847
|
+
}
|
5848
|
+
.wizard-pf-sidebar .list-group-item > a:hover {
|
5849
|
+
text-decoration: none;
|
5850
|
+
}
|
5851
|
+
.wizard-pf-sidebar .list-group-item.active {
|
5852
|
+
background-color: #ededed;
|
5853
|
+
}
|
5854
|
+
.wizard-pf-sidebar .list-group-item.active:hover {
|
5855
|
+
border-color: #ededed;
|
5856
|
+
}
|
5857
|
+
.wizard-pf-sidebar .list-group-item.active > a {
|
5858
|
+
color: #39a5dc;
|
5859
|
+
cursor: default;
|
5860
|
+
}
|
5861
|
+
.wizard-pf-sidebar .list-group-item.active > a:before {
|
5862
|
+
background: #39a5dc;
|
5863
|
+
content: " ";
|
5864
|
+
height: 100%;
|
5865
|
+
left: 0;
|
5866
|
+
position: absolute;
|
5867
|
+
top: 0;
|
5868
|
+
width: 3px;
|
5869
|
+
}
|
5870
|
+
.wizard-pf-sidebar .list-group-item.active > a:after {
|
5871
|
+
color: #39a5dc;
|
5872
|
+
content: "\f105";
|
5873
|
+
display: block;
|
5874
|
+
font-family: FontAwesome;
|
5875
|
+
font-size: 24px;
|
5876
|
+
font-weight: 500;
|
5877
|
+
line-height: 30px;
|
5878
|
+
padding-top: 10px;
|
5879
|
+
position: absolute;
|
5880
|
+
right: 23px;
|
5881
|
+
top: 0;
|
5882
|
+
}
|
5883
|
+
.wizard-pf-substep-number {
|
5884
|
+
display: inline-block;
|
5885
|
+
margin-right: 5px;
|
5886
|
+
vertical-align: middle;
|
5887
|
+
width: 25px;
|
5888
|
+
}
|
5889
|
+
.wizard-pf-substep-title {
|
5890
|
+
display: inline-block;
|
5891
|
+
margin-right: 5px;
|
5892
|
+
text-align: left;
|
5893
|
+
vertical-align: middle;
|
5894
|
+
}
|
5895
|
+
/* styles the steps indicator across the top of the wizard */
|
5896
|
+
.wizard-pf-steps {
|
5897
|
+
border-bottom: solid 1px #d1d1d1;
|
5898
|
+
text-align: center;
|
5899
|
+
}
|
5900
|
+
.wizard-pf-steps-indicator {
|
5901
|
+
font-size: 16px;
|
5902
|
+
display: inline-block;
|
5903
|
+
display: -ms-flexbox;
|
5904
|
+
/* for IE 10 */
|
5905
|
+
display: flex;
|
5906
|
+
height: 120px;
|
5907
|
+
justify-content: space-around;
|
5908
|
+
list-style: none;
|
5909
|
+
padding: 38px 0 0 0;
|
5910
|
+
/* draw the step number in the circle */
|
5911
|
+
}
|
5912
|
+
.wizard-pf-steps-indicator li {
|
5913
|
+
counter-increment: section;
|
5914
|
+
float: left;
|
5915
|
+
/* float for IE9 since it doesn't support flex. If items wrap, they overlap */
|
5916
|
+
-ms-flex: 1;
|
5917
|
+
/* for IE 10 */
|
5918
|
+
flex-grow: 1;
|
5919
|
+
flex-basis: 0;
|
5920
|
+
line-height: 15px;
|
5921
|
+
margin: 0;
|
5922
|
+
padding: 0;
|
5923
|
+
position: relative;
|
5924
|
+
text-align: center;
|
5925
|
+
/* draw the line between the circles */
|
5926
|
+
/* don't draw the line between the circles on the ends */
|
5927
|
+
}
|
5928
|
+
.wizard-pf-steps-indicator li:before {
|
5929
|
+
background-color: #bbb;
|
5930
|
+
content: '';
|
5931
|
+
height: 2px;
|
5932
|
+
left: 0;
|
5933
|
+
position: absolute;
|
5934
|
+
right: 0;
|
5935
|
+
top: 40px;
|
5936
|
+
}
|
5937
|
+
.wizard-pf-steps-indicator li:first-child:before {
|
5938
|
+
left: 50%;
|
5939
|
+
right: 0;
|
5940
|
+
}
|
5941
|
+
.wizard-pf-steps-indicator li:last-child:before {
|
5942
|
+
left: 0;
|
5943
|
+
right: 50%;
|
5944
|
+
}
|
5945
|
+
.wizard-pf-steps-indicator li:only-of-type:before {
|
5946
|
+
background-color: transparent;
|
5947
|
+
}
|
5948
|
+
.wizard-pf-steps-indicator li a {
|
5949
|
+
color: #030303;
|
5950
|
+
font-size: 16px;
|
5951
|
+
cursor: pointer;
|
5952
|
+
margin-left: 1em;
|
5953
|
+
margin-right: 1em;
|
5954
|
+
text-decoration: none;
|
5955
|
+
}
|
5956
|
+
.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number {
|
5957
|
+
background-color: #bbb;
|
5958
|
+
border-color: #bbb;
|
5959
|
+
color: #fff;
|
5960
|
+
}
|
5961
|
+
.wizard-pf-steps-indicator .wizard-pf-step-number {
|
5962
|
+
background-color: #fff;
|
5963
|
+
border-radius: 50%;
|
5964
|
+
border: solid 2px #bbb;
|
5965
|
+
color: #bbb;
|
5966
|
+
font-size: 12px;
|
5967
|
+
font-weight: 700;
|
5968
|
+
height: 25px;
|
5969
|
+
left: calc(50% - 13px);
|
5970
|
+
line-height: 22px;
|
5971
|
+
position: absolute;
|
5972
|
+
top: 27px;
|
5973
|
+
width: 25px;
|
5974
|
+
}
|
5975
|
+
.wizard-pf-steps-indicator .active .wizard-pf-step-number {
|
5976
|
+
cursor: default;
|
5977
|
+
background-color: #39a5dc;
|
5978
|
+
border-color: #39a5dc;
|
5979
|
+
color: #fff;
|
5980
|
+
}
|
5981
|
+
.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number {
|
5982
|
+
background-color: #fff;
|
5983
|
+
border-color: #39a5dc;
|
5984
|
+
color: #030303;
|
5985
|
+
}
|
5986
|
+
/* styles the main content portion of the wizard */
|
5987
|
+
.wizard-pf-main {
|
5988
|
+
display: table-cell;
|
5989
|
+
padding: 3em;
|
5990
|
+
vertical-align: top;
|
5991
|
+
width: 10000px;
|
5992
|
+
}
|
5993
|
+
.wizard-pf-main .blank-slate-pf {
|
5994
|
+
background-color: transparent;
|
5995
|
+
border: none;
|
5996
|
+
left: 0;
|
5997
|
+
right: 0;
|
5998
|
+
}
|
5999
|
+
/* styles the content of a review page */
|
6000
|
+
.wizard-pf-review-page .treeview .list-group-item {
|
6001
|
+
color: #030303;
|
6002
|
+
cursor: pointer;
|
6003
|
+
font-size: 16px;
|
6004
|
+
margin-left: 20px;
|
6005
|
+
padding: .5em .5em;
|
6006
|
+
text-decoration: none;
|
6007
|
+
}
|
6008
|
+
.wizard-pf-review-page .treeview .list-group-item a {
|
6009
|
+
color: #030303;
|
6010
|
+
text-decoration: none;
|
6011
|
+
}
|
6012
|
+
.wizard-pf-review-page .treeview span.icon {
|
6013
|
+
font-size: 24px;
|
6014
|
+
font-weight: 500;
|
6015
|
+
}
|
6016
|
+
.wizard-pf-success-icon {
|
6017
|
+
color: #3f9c35;
|
6018
|
+
font-size: 67.2px;
|
6019
|
+
line-height: 67.2px;
|
6020
|
+
}
|
6021
|
+
/* styles the footer */
|
6022
|
+
.wizard-pf-footer {
|
6023
|
+
border-top: 1px solid #d1d1d1;
|
6024
|
+
margin-top: 0;
|
6025
|
+
padding-bottom: 17px;
|
6026
|
+
}
|
6027
|
+
.wizard-pf-footer .btn-cancel {
|
6028
|
+
margin-right: 25px;
|
6029
|
+
}
|
5807
6030
|
/*# sourceMappingURL=patternfly-additions.css.map */
|