-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from patternfly/bump-v3.6.0
Bumped version number to 3.6.0.
- Loading branch information
Showing
16 changed files
with
194 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// | ||
// About Modal | ||
// -------------------------------------------------- | ||
|
||
.about-modal-pf { | ||
background-color: @color-pf-black-900; | ||
background-image: url("@{img-path}/@{modal-about-pf-bg-img}"); | ||
background-position: right bottom; | ||
background-repeat: no-repeat; | ||
background-size: 216px auto; | ||
@media (min-width: @screen-sm-min) { | ||
background-size: auto; | ||
} | ||
.modal-body { | ||
color: @color-pf-white; | ||
padding-bottom: 16px; | ||
padding-left: @grid-gutter-width; | ||
padding-right: @grid-gutter-width; | ||
@media (min-width: @screen-sm-min) { | ||
padding-left: (@grid-gutter-width * 2); | ||
padding-right: (@grid-gutter-width * 2); | ||
} | ||
} | ||
.modal-header { | ||
background-color: transparent; | ||
} | ||
.pficon-close { | ||
color: @color-pf-white; | ||
} | ||
} | ||
|
||
.product-versions-pf { | ||
margin-bottom: 30px; | ||
margin-top: 30px; | ||
li { | ||
strong { | ||
margin-right: (@grid-gutter-width / 4); | ||
} | ||
} | ||
} | ||
|
||
.trademark-pf { | ||
font-size: ceil((@font-size-base - 1)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<!DOCTYPE html> | ||
<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]--> | ||
<!--[if gt IE 9]><!--> | ||
<html lang="en-us"> | ||
<!--<![endif]--> | ||
<head> | ||
<title>About Modal - Red Hat® Common User Experience</title> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="shortcut icon" href="../dist/img/favicon.ico"> | ||
<!-- iPad retina icon --> | ||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../dist/img/apple-touch-icon-precomposed-152.png"> | ||
<!-- iPad retina icon (iOS < 7) --> | ||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../dist/img/apple-touch-icon-precomposed-144.png"> | ||
<!-- iPad non-retina icon --> | ||
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../dist/img/apple-touch-icon-precomposed-76.png"> | ||
<!-- iPad non-retina icon (iOS < 7) --> | ||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../dist/img/apple-touch-icon-precomposed-72.png"> | ||
<!-- iPhone 6 Plus icon --> | ||
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../dist/img/apple-touch-icon-precomposed-180.png"> | ||
<!-- iPhone retina icon (iOS < 7) --> | ||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../dist/img/apple-touch-icon-precomposed-114.png"> | ||
<!-- iPhone non-retina icon (iOS < 7) --> | ||
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../dist/img/apple-touch-icon-precomposed-57.png"> | ||
<link rel="stylesheet" href="../dist/css/rcue.min.css" > | ||
<link rel="stylesheet" href="../dist/css/rcue-additions.min.css" > | ||
<link href="tests.css" rel="stylesheet" media="screen, print"> | ||
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script> | ||
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> | ||
<script src="../components/patternfly/dist/js/patternfly.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1>About Modal</h1> | ||
</div> | ||
<div class="alert alert-warning"> | ||
<span class="pficon pficon-warning-triangle-o"></span> | ||
These examples are included for development testing purposes. For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>. | ||
</div> | ||
<hr> | ||
<button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch about modal</button> | ||
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content about-modal-pf"> | ||
<div class="modal-header"> | ||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"> | ||
<span class="pficon pficon-close"></span> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
<h1>Product Title</h1> | ||
<div class="product-versions-pf"> | ||
<ul class="list-unstyled"> | ||
<li><strong>Label</strong> Version</li> | ||
<li><strong>Label</strong> Version</li> | ||
<li><strong>Label</strong> Version</li> | ||
<li><strong>Label</strong> Version</li> | ||
<li><strong>Label</strong> Version</li> | ||
<li><strong>Label</strong> Version</li> | ||
</ul> | ||
</div> | ||
<div class="trademark-pf"> | ||
Trademark and Copyright Information | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<img src="../dist/img/logo-alt.svg" alt="Patternfly Symbol"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div><!-- /container --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters