From e0addf5b588a1244f9679becd90999dfcb4c3a94 Mon Sep 17 00:00:00 2001 From: "ITSERVICES\\rb7147" Date: Tue, 25 Apr 2017 11:46:00 -0400 Subject: Policy 1707 commit to LF Change-Id: Ibe6f01d92f9a434c040abb05d5386e89d675ae65 Signed-off-by: ITSERVICES\rb7147 --- .../docs/_includes/components/alerts.html | 89 ++++ .../docs/_includes/components/badges.html | 45 ++ .../docs/_includes/components/breadcrumbs.html | 27 ++ .../_includes/components/button-dropdowns.html | 321 ++++++++++++++ .../docs/_includes/components/button-groups.html | 268 ++++++++++++ .../docs/_includes/components/dropdowns.html | 148 +++++++ .../docs/_includes/components/glyphicons.html | 91 ++++ .../docs/_includes/components/input-groups.html | 316 ++++++++++++++ .../docs/_includes/components/jumbotron.html | 27 ++ .../docs/_includes/components/labels.html | 40 ++ .../docs/_includes/components/list-group.html | 167 ++++++++ .../bootstrap/docs/_includes/components/media.html | 207 +++++++++ .../docs/_includes/components/navbar.html | 461 +++++++++++++++++++++ .../bootstrap/docs/_includes/components/navs.html | 189 +++++++++ .../docs/_includes/components/page-header.html | 15 + .../docs/_includes/components/pagination.html | 197 +++++++++ .../docs/_includes/components/panels.html | 279 +++++++++++++ .../docs/_includes/components/progress-bars.html | 209 ++++++++++ .../_includes/components/responsive-embed.html | 23 + .../docs/_includes/components/thumbnails.html | 94 +++++ .../bootstrap/docs/_includes/components/wells.html | 33 ++ 21 files changed, 3246 insertions(+) create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/alerts.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/badges.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/breadcrumbs.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-dropdowns.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-groups.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/dropdowns.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/glyphicons.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/input-groups.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/jumbotron.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/labels.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/list-group.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/media.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navbar.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navs.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/page-header.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/pagination.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/panels.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/progress-bars.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/responsive-embed.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/thumbnails.html create mode 100644 POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/wells.html (limited to 'POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components') diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/alerts.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/alerts.html new file mode 100644 index 000000000..7487a968a --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/alerts.html @@ -0,0 +1,89 @@ +
+

Alerts

+ +

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.

+ +

Examples

+

Wrap any text and an optional dismiss button in .alert and one of the four contextual classes (e.g., .alert-success) for basic alert messages.

+ +
+

No default class

+

Alerts don't have default classes, only base and modifier classes. A default gray alert doesn't make too much sense, so you're required to specify a type via contextual class. Choose from success, info, warning, or danger.

+
+ +
+ + + + +
+{% highlight html %} + + + + +{% endhighlight %} + +

Dismissible alerts

+

Build on any alert by adding an optional .alert-dismissible and close button.

+
+

Requires JavaScript alert plugin

+

For fully functioning, dismissible alerts, you must use the alerts JavaScript plugin.

+
+
+ +
+{% highlight html %} + +{% endhighlight %} + +
+

Ensure proper behavior across all devices

+

Be sure to use the <button> element with the data-dismiss="alert" data attribute.

+
+ + +

Use the .alert-link utility class to quickly provide matching colored links within any alert.

+
+ + + + +
+{% highlight html %} + + + + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/badges.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/badges.html new file mode 100644 index 000000000..a7fff7322 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/badges.html @@ -0,0 +1,45 @@ +
+

Badges

+ +

Easily highlight new or unread items by adding a <span class="badge"> to links, Bootstrap navs, and more.

+ +
+ Inbox 42 +

+ +
+{% highlight html %} +Inbox 42 + + +{% endhighlight %} + +

Self collapsing

+

When there are no new or unread items, badges will simply collapse (via CSS's :empty selector) provided no content exists within.

+ +
+

Cross-browser compatibility

+

Badges won't self collapse in Internet Explorer 8 because it lacks support for the :empty selector.

+
+ +

Adapts to active nav states

+

Built-in styles are included for placing badges in active states in pill navigations.

+
+ +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/breadcrumbs.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/breadcrumbs.html new file mode 100644 index 000000000..39c6c14b6 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/breadcrumbs.html @@ -0,0 +1,27 @@ +
+

Breadcrumbs

+ +

Indicate the current page's location within a navigational hierarchy.

+

Separators are automatically added in CSS through :before and content.

+
+ + + +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-dropdowns.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-dropdowns.html new file mode 100644 index 000000000..1e707c4ba --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-dropdowns.html @@ -0,0 +1,321 @@ +
+

Button dropdowns

+ +

Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup.

+ +
+

Plugin dependency

+

Button dropdowns require the dropdown plugin to be included in your version of Bootstrap.

+
+ +

Single button dropdowns

+

Turn a button into a dropdown toggle with some basic markup changes.

+ +{% highlight html %} + + +{% endhighlight %} + +

Split button dropdowns

+

Similarly, create split button dropdowns with the same markup changes, only with a separate button.

+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+{% highlight html %} + +
+ + + +
+{% endhighlight %} + +

Sizing

+

Button dropdowns work with buttons of all sizes.

+
+ + + +
+{% highlight html %} + +
+ + +
+ + +
+ + +
+ + +
+ + +
+{% endhighlight %} + +

Dropup variation

+

Trigger dropdown menus above elements by adding .dropup to the parent.

+
+ +
+{% highlight html %} +
+ + + +
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-groups.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-groups.html new file mode 100644 index 000000000..5f61bfc05 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/button-groups.html @@ -0,0 +1,268 @@ +
+

Button groups

+ +

Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.

+ +
+

Tooltips & popovers in button groups require special setting

+

When using tooltips or popovers on elements within a .btn-group, you'll have to specify the option container: 'body' to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip or popover is triggered).

+
+ +
+

Ensure correct role and provide a label

+

In order for assistive technologies – such as screen readers – to convey that a series of buttons is grouped, an appropriate role attribute needs to be provided. For button groups, this would be role="group", while toolbars should have a role="toolbar".

+

One exception are groups which only contain a single control (for instance the justified button groups with <button> elements) or a dropdown.

+

In addition, groups and toolbars should be given an explicit label, as most assistive technologies will otherwise not announce them, despite the presence of the correct role attribute. In the examples provided here, we use aria-label, but alternatives such as aria-labelledby can also be used.

+
+ +

Basic example

+

Wrap a series of buttons with .btn in .btn-group.

+
+
+ + + +
+
+{% highlight html %} +
+ + + +
+{% endhighlight %} + +

Button toolbar

+

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +

Sizing

+

Instead of applying button sizing classes to every button in a group, just add .btn-group-* to each .btn-group, including when nesting multiple groups.

+
+
+ + + +
+
+
+ + + +
+
+
+ + + +
+
+
+ + + +
+
+{% highlight html %} +
...
+
...
+
...
+
...
+{% endhighlight %} + +

Nesting

+

Place a .btn-group within another .btn-group when you want dropdown menus mixed with a series of buttons.

+
+
+ + + +
+ + +
+
+
+{% highlight html %} +
+ + + +
+ + +
+
+{% endhighlight %} + +

Vertical variation

+

Make a set of buttons appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.

+
+
+ + +
+ + +
+ + +
+ + +
+
+ + +
+
+ + +
+
+
+{% highlight html %} +
+ ... +
+{% endhighlight %} + +

Justified button groups

+

Make a group of buttons stretch at equal sizes to span the entire width of its parent. Also works with button dropdowns within the button group.

+ +
+

Handling borders

+

Due to the specific HTML and CSS used to justify buttons (namely display: table-cell), the borders between them are doubled. In regular button groups, margin-left: -1px is used to stack the borders instead of removing them. However, margin doesn't work with display: table-cell. As a result, depending on your customizations to Bootstrap, you may wish to remove or re-color the borders.

+
+
+

IE8 and borders

+

Internet Explorer 8 doesn't render borders on buttons in a justified button group, whether it's on <a> or <button> elements. To get around that, wrap each button in another .btn-group.

+

See #12476 for more information.

+
+ +

With <a> elements

+

Just wrap a series of .btns in .btn-group.btn-group-justified.

+ +{% highlight html %} +
+ ... +
+{% endhighlight %} + +
+

Links acting as buttons

+

If the <a> elements are used to act as buttons – triggering in-page functionality, rather than navigating to another document or section within the current page – they should also be given an appropriate role="button".

+
+ +

With <button> elements

+

To use justified button groups with <button> elements, you must wrap each button in a button group. Most browsers don't properly apply our CSS for justification to <button> elements, but since we support button dropdowns, we can work around that.

+
+
+
+ +
+
+ +
+
+ +
+
+
+{% highlight html %} +
+
+ +
+
+ +
+
+ +
+
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/dropdowns.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/dropdowns.html new file mode 100644 index 000000000..2ad269282 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/dropdowns.html @@ -0,0 +1,148 @@ +
+

Dropdowns

+ +

Toggleable, contextual menu for displaying lists of links. Made interactive with the dropdown JavaScript plugin.

+ + +

Wrap the dropdown's trigger and the dropdown menu within .dropdown, or another element that declares position: relative;. Then add the menu's HTML. Dropdown menus can be changed to expand upwards (instead of downwards) by adding .dropup to the parent.

+
+ +
+ + +
+
+{% highlight html %} + + +{% endhighlight %} + + +

By default, a dropdown menu is automatically positioned 100% from the top and along the left side of its parent. Add .dropdown-menu-right to a .dropdown-menu to right align the dropdown menu.

+
+

May require additional positioning

+

Dropdowns are automatically positioned via CSS within the normal flow of the document. This means dropdowns may be cropped by parents with certain overflow properties or appear out of bounds of the viewport. Address these issues on your own as they arise.

+
+
+

Deprecated .pull-right alignment

+

As of v3.1.0, we've deprecated .pull-right on dropdown menus. To right-align a menu, use .dropdown-menu-right. Right-aligned nav components in the navbar use a mixin version of this class to automatically align the menu. To override it, use .dropdown-menu-left.

+
+{% highlight html %} + +{% endhighlight %} + + +

Add a header to label sections of actions in any dropdown menu.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + +

Add a divider to separate series of links in a dropdown menu.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + +

Add .disabled to a <li> in the dropdown to disable the link.

+
+ +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/glyphicons.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/glyphicons.html new file mode 100644 index 000000000..1653863bc --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/glyphicons.html @@ -0,0 +1,91 @@ +
+

Glyphicons

+ +

Available glyphs

+

Includes over 250 glyphs in font format from the Glyphicon Halflings set. Glyphicons Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you include a link back to Glyphicons whenever possible.

+
+
    + {% for iconClassName in site.data.glyphicons %} +
  • + + glyphicon {{ iconClassName }} +
  • + {% endfor %} +
+
+ + +

How to use

+

For performance reasons, all icons require a base class and individual icon class. To use, place the following code just about anywhere. Be sure to leave a space between the icon and text for proper padding.

+
+

Don't mix with other components

+

Icon classes cannot be directly combined with other components. They should not be used along with other classes on the same element. Instead, add a nested <span> and apply the icon classes to the <span>.

+
+
+

Only for use on empty elements

+

Icon classes should only be used on elements that contain no text content and have no child elements.

+
+
+

Changing the icon font location

+

Bootstrap assumes icon font files will be located in the ../fonts/ directory, relative to the compiled CSS files. Moving or renaming those font files means updating the CSS in one of three ways:

+
    +
  • Change the @icon-font-path and/or @icon-font-name variables in the source Less files.
  • +
  • Utilize the relative URLs option provided by the Less compiler.
  • +
  • Change the url() paths in the compiled CSS.
  • +
+

Use whatever option best suits your specific development setup.

+
+
+

Accessible icons

+

Modern versions of assistive technologies will announce CSS generated content, as well as specific Unicode characters. To avoid unintended and confusing output in screen readers (particularly when icons are used purely for decoration), we hide them with the aria-hidden="true" attribute.

+

If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies – for instance, include additional content, visually hidden with the .sr-only class.

+

If you're creating controls with no other text (such as a <button> that only contains an icon), you should always provide alternative content to identify the purpose of the control, so that it will make sense to users of assistive technologies. In this case, you could add an aria-label attribute on the control itself.

+
+{% highlight html %} + +{% endhighlight %} + + +

Examples

+

Use them in buttons, button groups for a toolbar, navigation, or prepended form inputs.

+
+ + +
+{% highlight html %} + + + +{% endhighlight %} +

An icon used in an alert to convey that it's an error message, with additional .sr-only text to convey this hint to users of assistive technologies.

+
+ +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/input-groups.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/input-groups.html new file mode 100644 index 000000000..665c5b7cc --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/input-groups.html @@ -0,0 +1,316 @@ +
+

Input groups

+ +

Extend form controls by adding text or buttons before, after, or on both sides of any text-based <input>. Use .input-group with an .input-group-addon to prepend or append elements to a single .form-control.

+ +
+

Textual <input>s only

+

Avoid using <select> elements here as they cannot be fully styled in WebKit browsers.

+

Avoid using <textarea> elements here as their rows attribute will not be respected in some cases.

+
+
+

Tooltips & popovers in input groups require special setting

+

When using tooltips or popovers on elements within an .input-group, you'll have to specify the option container: 'body' to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip or popover is triggered).

+
+
+

Don't mix with other components

+

Do not mix form groups or grid column classes directly with input groups. Instead, nest the input group inside of the form group or grid-related element.

+
+
+

Always add labels

+

Screen readers will have trouble with your forms if you don't include a label for every input. For these input groups, ensure that any additional label or functionality is conveyed to assistive technologies.

+

The exact technique to be used (<label> elements hidden using the .sr-only class, or use of the aria-label, aria-labelledby, aria-describedby, title or placeholder attribute) and what additional information will need to be conveyed will vary depending on the exact type of interface widget you're implementing. The examples in this section provide a few suggested, case-specific approaches.

+
+ +

Basic example

+

Place one add-on or button on either side of an input. You may also place one on both sides of an input.

+

We do not support multiple add-ons on a single side.

+

We do not support multiple form-controls in a single input group.

+
+
+ @ + +
+
+
+ + @example.com +
+
+
+ $ + + .00 +
+
+{% highlight html %} +
+ @ + +
+ +
+ + @example.com +
+ +
+ $ + + .00 +
+{% endhighlight %} + +

Sizing

+

Add the relative form sizing classes to the .input-group itself and contents within will automatically resize—no need for repeating the form control size classes on each element.

+
+
+ @ + +
+
+
+ @ + +
+
+
+ @ + +
+
+{% highlight html %} +
+ @ + +
+ +
+ @ + +
+ +
+ @ + +
+{% endhighlight %} + + +

Checkboxes and radio addons

+

Place any checkbox or radio option within an input group's addon instead of text.

+
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+{% highlight html %} +
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+{% endhighlight %} + + +

Button addons

+

Buttons in input groups are a bit different and require one extra level of nesting. Instead of .input-group-addon, you'll need to use .input-group-btn to wrap the buttons. This is required due to default browser styles that cannot be overridden.

+
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+{% highlight html %} +
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+{% endhighlight %} + +

Buttons with dropdowns

+

+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+{% highlight html %} +
+
+
+ + +
+
+
+
+ + +
+
+
+{% endhighlight %} + +

Segmented buttons

+
+
+
+
+
+ + + +
+ +
+
+
+
+ +
+ + + +
+
+
+
+
+{% highlight html %} +
+
+ +
+ +
+ +
+ +
+ +
+
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/jumbotron.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/jumbotron.html new file mode 100644 index 000000000..b61ffe061 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/jumbotron.html @@ -0,0 +1,27 @@ +
+

Jumbotron

+ +

A lightweight, flexible component that can optionally extend the entire viewport to showcase key content on your site.

+
+
+

Hello, world!

+

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

+

Learn more

+
+
+{% highlight html %} +
+

Hello, world!

+

...

+

Learn more

+
+{% endhighlight %} +

To make the jumbotron full width, and without rounded corners, place it outside all .containers and instead add a .container within.

+{% highlight html %} +
+
+ ... +
+
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/labels.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/labels.html new file mode 100644 index 000000000..de742caff --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/labels.html @@ -0,0 +1,40 @@ +
+

Labels

+ +

Example

+
+

Example heading New

+

Example heading New

+

Example heading New

+

Example heading New

+
Example heading New
+
Example heading New
+
+{% highlight html %} +

Example heading New

+{% endhighlight %} + +

Available variations

+

Add any of the below mentioned modifier classes to change the appearance of a label.

+
+ Default + Primary + Success + Info + Warning + Danger +
+{% highlight html %} +Default +Primary +Success +Info +Warning +Danger +{% endhighlight %} + +
+

Have tons of labels?

+

Rendering problems can arise when you have dozens of inline labels within a narrow container, each containing its own inline-block element (like an icon). The way around this is setting display: inline-block;. For context and an example, see #13219.

+
+
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/list-group.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/list-group.html new file mode 100644 index 000000000..e95c9d485 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/list-group.html @@ -0,0 +1,167 @@ +
+

List group

+ +

List groups are a flexible and powerful component for displaying not only simple lists of elements, but complex ones with custom content.

+ +

Basic example

+

The most basic list group is simply an unordered list with list items, and the proper classes. Build upon it with the options that follow, or your own CSS as needed.

+
+
    +
  • Cras justo odio
  • +
  • Dapibus ac facilisis in
  • +
  • Morbi leo risus
  • +
  • Porta ac consectetur ac
  • +
  • Vestibulum at eros
  • +
+
+{% highlight html %} +
    +
  • Cras justo odio
  • +
  • Dapibus ac facilisis in
  • +
  • Morbi leo risus
  • +
  • Porta ac consectetur ac
  • +
  • Vestibulum at eros
  • +
+{% endhighlight %} + +

Badges

+

Add the badges component to any list group item and it will automatically be positioned on the right.

+
+
    +
  • + 14 + Cras justo odio +
  • +
  • + 2 + Dapibus ac facilisis in +
  • +
  • + 1 + Morbi leo risus +
  • +
+
+{% highlight html %} +
    +
  • + 14 + Cras justo odio +
  • +
+{% endhighlight %} + +

Linked items

+

Linkify list group items by using anchor tags instead of list items (that also means a parent <div> instead of an <ul>). No need for individual parents around each element.

+ +{% highlight html %} + +{% endhighlight %} + +

Disabled items

+

Add .disabled to a .list-group-item to gray it out to appear disabled.

+ +{% highlight html %} + +{% endhighlight %} + +

Contextual classes

+

Use contextual classes to style list items, default or linked. Also includes .active state.

+
+
+
+
    +
  • Dapibus ac facilisis in
  • +
  • Cras sit amet nibh libero
  • +
  • Porta ac consectetur ac
  • +
  • Vestibulum at eros
  • +
+
+ +
+
+{% highlight html %} +
    +
  • Dapibus ac facilisis in
  • +
  • Cras sit amet nibh libero
  • +
  • Porta ac consectetur ac
  • +
  • Vestibulum at eros
  • +
+ +{% endhighlight %} + +

Custom content

+

Add nearly any HTML within, even for linked list groups like the one below.

+ +{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/media.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/media.html new file mode 100644 index 000000000..f03a12591 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/media.html @@ -0,0 +1,207 @@ +
+

Media object

+ +

Abstract object styles for building various types of components (like blog comments, Tweets, etc) that feature a left- or right-aligned image alongside textual content.

+ +

Default media

+

The default media displays a media object (images, video, audio) to the left or right of a content block.

+
+
+
+ + Generic placeholder image + +
+
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. +
+
+
+
+ + Generic placeholder image + +
+
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. +
+
+ + Generic placeholder image + +
+
+

Nested media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. +
+
+
+
+
+
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
+
+ + Generic placeholder image + +
+
+
+
+ + Generic placeholder image + +
+
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
+
+ + Generic placeholder image + +
+
+
+{% highlight html %} +
+
+ + ... + +
+
+

Media heading

+ ... +
+
+{% endhighlight %} + +

The classes .pull-left and .pull-right also exist and were previously used as part of the media component, but are deprecated for that use as of v3.3.0. They are approximately equivalent to .media-left and .media-right, except that .media-right should be placed after the .media-body in the html.

+

Media alignment

+

The images or other media can be aligned top, middle, or bottom. The default is top aligned.

+
+
+
+ + Generic placeholder image + +
+
+

Top aligned media

+

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

+

Donec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+
+
+
+
+ + Generic placeholder image + +
+
+

Middle aligned media

+

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

+

Donec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+
+
+
+
+ + Generic placeholder image + +
+
+

Bottom aligned media

+

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

+

Donec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+
+
+
+{% highlight html %} +
+
+ + ... + +
+
+

Middle aligned media

+ ... +
+
+{% endhighlight %} + +

Media list

+

With a bit of extra markup, you can use media inside list (useful for comment threads or articles lists).

+
+
    +
  • +
    + + Generic placeholder image + +
    +
    +

    Media heading

    +

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

    + +
    +
    + + Generic placeholder image + +
    +
    +

    Nested media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. + +
    +
    + + Generic placeholder image + +
    +
    +

    Nested media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
    +
    +
    +
    + +
    +
    + + Generic placeholder image + +
    +
    +

    Nested media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
    +
    +
    +
  • +
+
+{% highlight html %} +
    +
  • +
    + + ... + +
    +
    +

    Media heading

    + ... +
    +
  • +
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navbar.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navbar.html new file mode 100644 index 000000000..6cd731ac6 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navbar.html @@ -0,0 +1,461 @@ +
+

Navbar

+ + +

Navbars are responsive meta components that serve as navigation headers for your application or site. They begin collapsed (and are toggleable) in mobile views and become horizontal as the available viewport width increases.

+

Justified navbar nav links are currently not supported.

+ +
+

Overflowing content

+

Since Bootstrap doesn't know how much space the content in your navbar needs, you might run into issues with content wrapping into a second row. To resolve this, you can:

+
    +
  1. Reduce the amount or width of navbar items.
  2. +
  3. Hide certain navbar items at certain screen sizes using responsive utility classes.
  4. +
  5. Change the point at which your navbar switches between collapsed and horizontal mode. Customize the @grid-float-breakpoint variable or add your own media query.
  6. +
+
+
+

Requires JavaScript plugin

+

If JavaScript is disabled and the viewport is narrow enough that the navbar collapses, it will be impossible to expand the navbar and view the content within the .navbar-collapse.

+

The responsive navbar requires the collapse plugin to be included in your version of Bootstrap.

+
+
+

Changing the collapsed mobile navbar breakpoint

+

The navbar collapses into its vertical mobile view when the viewport is narrower than @grid-float-breakpoint, and expands into its horizontal non-mobile view when the viewport is at least @grid-float-breakpoint in width. Adjust this variable in the Less source to control when the navbar collapses/expands. The default value is 768px (the smallest "small" or "tablet" screen).

+
+
+

Make navbars accessible

+

Be sure to use a <nav> element or, if using a more generic element such as a <div>, add a role="navigation" to every navbar to explicitly identify it as a landmark region for users of assistive technologies.

+
+ +
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

Replace the navbar brand with your own image by swapping the text for an <img>. Since the .navbar-brand has its own padding and height, you may need to override some CSS depending on your image.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

Place form content within .navbar-form for proper vertical alignment and collapsed behavior in narrow viewports. Use the alignment options to decide where it resides within the navbar content.

+

As a heads up, .navbar-form shares much of its code with .form-inline via mixin. Some form controls, like input groups, may require fixed widths to be show up properly within a navbar.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +
+

Mobile device caveats

+

There are some caveats regarding using form controls within fixed elements on mobile devices. See our browser support docs for details.

+
+ +
+

Always add labels

+

Screen readers will have trouble with your forms if you don't include a label for every input. For these inline forms, you can hide the labels using the .sr-only class. There are further alternative methods of providing a label for assistive technologies, such as the aria-label, aria-labelledby or title attribute. If none of these is present, screen readers may resort to using the placeholder attribute, if present, but note that use of placeholder as a replacement for other labelling methods is not advised.

+
+ + + +

Add the .navbar-btn class to <button> elements not residing in a <form> to vertically center them in the navbar.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +
+

Context-specific usage

+

Like the standard button classes, .navbar-btn can be used on <a> and <input> elements. However, neither .navbar-btn nor the standard button classes should be used on <a> elements within .navbar-nav.

+
+ + +

Wrap strings of text in an element with .navbar-text, usually on a <p> tag for proper leading and color.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

For folks using standard links that are not within the regular navbar navigation component, use the .navbar-link class to add the proper colors for the default and inverse navbar options.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

Align nav links, forms, buttons, or text, using the .navbar-left or .navbar-right utility classes. Both classes will add a CSS float in the specified direction. For example, to align nav links, put them in a separate <ul> with the respective utility class applied.

+

These classes are mixin-ed versions of .pull-left and .pull-right, but they're scoped to media queries for easier handling of navbar components across device sizes.

+
+

Right aligning multiple components

+

Navbars currently have a limitation with multiple .navbar-right classes. To properly space content, we use negative margin on the last .navbar-right element. When there are multiple elements using that class, these margins don't work as intended.

+

We'll revisit this when we can rewrite that component in v4.

+
+ + + +

Add .navbar-fixed-top and include a .container or .container-fluid to center and pad navbar content.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +
+

Body padding required

+

The fixed navbar will overlay your other content, unless you add padding to the top of the <body>. Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.

+{% highlight scss %} +body { padding-top: 70px; } +{% endhighlight %} +

Make sure to include this after the core Bootstrap CSS.

+
+ + + +

Add .navbar-fixed-bottom and include a .container or .container-fluid to center and pad navbar content.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +
+

Body padding required

+

The fixed navbar will overlay your other content, unless you add padding to the bottom of the <body>. Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.

+{% highlight scss %} +body { padding-bottom: 70px; } +{% endhighlight %} +

Make sure to include this after the core Bootstrap CSS.

+
+ + + +

Create a full-width navbar that scrolls away with the page by adding .navbar-static-top and include a .container or .container-fluid to center and pad navbar content.

+

Unlike the .navbar-fixed-* classes, you do not need to change any padding on the body.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

Modify the look of the navbar by adding .navbar-inverse.

+
+ +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navs.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navs.html new file mode 100644 index 000000000..2e41e57cf --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/navs.html @@ -0,0 +1,189 @@ +
+

Navs

+ +

Navs available in Bootstrap have shared markup, starting with the base .nav class, as well as shared states. Swap modifier classes to switch between each style.

+ +
+

Using navs for tab panels requires JavaScript tabs plugin

+

For tabs with tabbable areas, you must use the tabs JavaScript plugin. The markup will also require additional role and ARIA attributes – see the plugin's example markup for further details.

+
+ +
+

Make navs used as navigation accessible

+

If you are using navs to provide a navigation bar, be sure to add a role="navigation" to the most logical parent container of the <ul>, or wrap a <nav> element around the whole navigation. Do not add the role to the <ul> itself, as this would prevent it from being announced as an actual list by assistive technologies.

+
+ + +

Note the .nav-tabs class requires the .nav base class.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

Take that same HTML, but use .nav-pills instead:

+
+ +
+{% highlight html %} + +{% endhighlight %} +

Pills are also vertically stackable. Just add .nav-stacked.

+
+ +
+{% highlight html %} + +{% endhighlight %} + + + +

Easily make tabs or pills equal widths of their parent at screens wider than 768px with .nav-justified. On smaller screens, the nav links are stacked.

+

Justified navbar nav links are currently not supported.

+
+

Safari and responsive justified navs

+

As of v8.0, Safari exhibits a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing. This bug is also shown in the justified nav example.

+
+
+ +
+ +
+{% highlight html %} + + +{% endhighlight %} + + + +

For any nav component (tabs or pills), add .disabled for gray links and no hover effects.

+ +
+

Link functionality not impacted

+

This class will only change the <a>'s appearance, not its functionality. Use custom JavaScript to disable links here.

+
+ + +{% highlight html %} + +{% endhighlight %} + + + +

Add dropdown menus with a little extra HTML and the dropdowns JavaScript plugin.

+ +

Tabs with dropdowns

+ +{% highlight html %} + +{% endhighlight %} + +

Pills with dropdowns

+ +{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/page-header.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/page-header.html new file mode 100644 index 000000000..3f7a8a094 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/page-header.html @@ -0,0 +1,15 @@ +
+

Page header

+ +

A simple shell for an h1 to appropriately space out and segment sections of content on a page. It can utilize the h1's default small element, as well as most other components (with additional styles).

+
+ +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/pagination.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/pagination.html new file mode 100644 index 000000000..46ee1f1ed --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/pagination.html @@ -0,0 +1,197 @@ +
+

Pagination

+ +

Provide pagination links for your site or app with the multi-page pagination component, or the simpler pager alternative.

+ +

Default pagination

+

Simple pagination inspired by Rdio, great for apps and search results. The large block is hard to miss, easily scalable, and provides large click areas.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +

Disabled and active states

+

Links are customizable for different circumstances. Use .disabled for unclickable links and .active to indicate the current page.

+
+ +
+{% highlight html %} + +{% endhighlight %} +

You can optionally swap out active or disabled anchors for <span>, or omit the anchor in the case of the previous/next arrows, to remove click functionality while retaining intended styles.

+{% highlight html %} + +{% endhighlight %} + + +

Sizing

+

Fancy larger or smaller pagination? Add .pagination-lg or .pagination-sm for additional sizes.

+
+ + + +
+{% highlight html %} + + + +{% endhighlight %} + + +

Pager

+

Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines.

+ +

Default example

+

By default, the pager centers links.

+
+ +
+{% highlight html %} + +{% endhighlight %} + +

Aligned links

+

Alternatively, you can align each link to the sides:

+
+ +
+{% highlight html %} + +{% endhighlight %} + + +

Optional disabled state

+

Pager links also use the general .disabled utility class from the pagination.

+
+ +
+{% highlight html %} + +{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/panels.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/panels.html new file mode 100644 index 000000000..dc6181cac --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/panels.html @@ -0,0 +1,279 @@ +
+

Panels

+ +

While not always necessary, sometimes you need to put your DOM in a box. For those situations, try the panel component.

+ +

Basic example

+

By default, all the .panel does is apply some basic border and padding to contain some content.

+
+
+
+ Basic panel example +
+
+
+{% highlight html %} +
+
+ Basic panel example +
+
+{% endhighlight %} + +

Panel with heading

+

Easily add a heading container to your panel with .panel-heading. You may also include any <h1>-<h6> with a .panel-title class to add a pre-styled heading.

+

For proper link coloring, be sure to place links in headings within .panel-title.

+
+
+
Panel heading without title
+
+ Panel content +
+
+
+
+

Panel title

+
+
+ Panel content +
+
+
+{% highlight html %} +
+
Panel heading without title
+
+ Panel content +
+
+ +
+
+

Panel title

+
+
+ Panel content +
+
+{% endhighlight %} + + +

Wrap buttons or secondary text in .panel-footer. Note that panel footers do not inherit colors and borders when using contextual variations as they are not meant to be in the foreground.

+
+
+
+ Panel content +
+ +
+
+{% highlight html %} +
+
+ Panel content +
+ +
+{% endhighlight %} + +

Contextual alternatives

+

Like other components, easily make a panel more meaningful to a particular context by adding any of the contextual state classes.

+
+
+
+

Panel title

+
+
+ Panel content +
+
+
+
+

Panel title

+
+
+ Panel content +
+
+
+
+

Panel title

+
+
+ Panel content +
+
+
+
+

Panel title

+
+
+ Panel content +
+
+
+
+

Panel title

+
+
+ Panel content +
+
+
+{% highlight html %} +
...
+
...
+
...
+
...
+
...
+{% endhighlight %} + +

With tables

+

Add any non-bordered .table within a panel for a seamless design. If there is a .panel-body, we add an extra border to the top of the table for separation.

+
+
+ +
Panel heading
+
+

Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit.

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#First NameLast NameUsername
1MarkOtto@mdo
2JacobThornton@fat
3Larrythe Bird@twitter
+
+
+{% highlight html %} +
+ +
Panel heading
+
+

...

+
+ + + + ... +
+
+{% endhighlight %} + +

If there is no panel body, the component moves from panel header to table without interruption.

+
+
+ +
Panel heading
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#First NameLast NameUsername
1MarkOtto@mdo
2JacobThornton@fat
3Larrythe Bird@twitter
+
+
+{% highlight html %} +
+ +
Panel heading
+ + + + ... +
+
+{% endhighlight %} + + +

With list groups

+

Easily include full-width list groups within any panel.

+
+
+ +
Panel heading
+
+

Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit.

+
+ + +
    +
  • Cras justo odio
  • +
  • Dapibus ac facilisis in
  • +
  • Morbi leo risus
  • +
  • Porta ac consectetur ac
  • +
  • Vestibulum at eros
  • +
+
+
+{% highlight html %} +
+ +
Panel heading
+
+

...

+
+ + +
    +
  • Cras justo odio
  • +
  • Dapibus ac facilisis in
  • +
  • Morbi leo risus
  • +
  • Porta ac consectetur ac
  • +
  • Vestibulum at eros
  • +
+
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/progress-bars.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/progress-bars.html new file mode 100644 index 000000000..e8ea1beed --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/progress-bars.html @@ -0,0 +1,209 @@ +
+

Progress bars

+ +

Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.

+ +
+

Cross-browser compatibility

+

Progress bars use CSS3 transitions and animations to achieve some of their effects. These features are not supported in Internet Explorer 9 and below or older versions of Firefox. Opera 12 does not support animations.

+
+ +

Basic example

+

Default progress bar.

+
+
+
+ 60% Complete +
+
+
+{% highlight html %} +
+
+ 60% Complete +
+
+{% endhighlight %} + +

With label

+

Remove the <span> with .sr-only class from within the progress bar to show a visible percentage.

+
+
+
+ 60% +
+
+
+{% highlight html %} +
+
+ 60% +
+
+{% endhighlight %} +

To ensure that the label text remains legible even for low percentages, consider adding a min-width to the progress bar.

+
+
+
+ 0% +
+
+
+
+ 2% +
+
+
+{% highlight html %} +
+
+ 0% +
+
+
+
+ 2% +
+
+{% endhighlight %} + + +

Contextual alternatives

+

Progress bars use some of the same button and alert classes for consistent styles.

+
+
+
+ 40% Complete (success) +
+
+
+
+ 20% Complete +
+
+
+
+ 60% Complete (warning) +
+
+
+
+ 80% Complete (danger) +
+
+
+{% highlight html %} +
+
+ 40% Complete (success) +
+
+
+
+ 20% Complete +
+
+
+
+ 60% Complete (warning) +
+
+
+
+ 80% Complete (danger) +
+
+{% endhighlight %} + +

Striped

+

Uses a gradient to create a striped effect. Not available in IE9 and below.

+
+
+
+ 40% Complete (success) +
+
+
+
+ 20% Complete +
+
+
+
+ 60% Complete (warning) +
+
+
+
+ 80% Complete (danger) +
+
+
+{% highlight html %} +
+
+ 40% Complete (success) +
+
+
+
+ 20% Complete +
+
+
+
+ 60% Complete (warning) +
+
+
+
+ 80% Complete (danger) +
+
+{% endhighlight %} + +

Animated

+

Add .active to .progress-bar-striped to animate the stripes right to left. Not available in IE9 and below.

+
+
+
45% Complete
+
+ +
+{% highlight html %} +
+
+ 45% Complete +
+
+{% endhighlight %} + +

Stacked

+

Place multiple bars into the same .progress to stack them.

+
+
+
+ 35% Complete (success) +
+
+ 20% Complete (warning) +
+
+ 10% Complete (danger) +
+
+
+{% highlight html %} +
+
+ 35% Complete (success) +
+
+ 20% Complete (warning) +
+
+ 10% Complete (danger) +
+
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/responsive-embed.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/responsive-embed.html new file mode 100644 index 000000000..bb79053ca --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/responsive-embed.html @@ -0,0 +1,23 @@ +
+

Responsive embed

+ +

Allow browsers to determine video or slideshow dimensions based on the width of their containing block by creating an intrinsic ratio that will properly scale on any device.

+

Rules are directly applied to <iframe>, <embed>, <video>, and <object> elements; optionally use an explicit descendant class .embed-responsive-item when you want to match the styling for other attributes.

+

Pro-Tip! You don't need to include frameborder="0" in your <iframe>s as we override that for you.

+
+
+ +
+
+{% highlight html %} + +
+ +
+ + +
+ +
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/thumbnails.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/thumbnails.html new file mode 100644 index 000000000..0f8382619 --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/thumbnails.html @@ -0,0 +1,94 @@ +
+

Thumbnails

+ +

Extend Bootstrap's grid system with the thumbnail component to easily display grids of images, videos, text, and more.

+

If you're looking for Pinterest-like presentation of thumbnails of varying heights and/or widths, you'll need to use a third-party plugin such as Masonry, Isotope, or Salvattore.

+ +

Default example

+

By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.

+
+
+
+ + Generic placeholder thumbnail + +
+
+ + Generic placeholder thumbnail + +
+
+ + Generic placeholder thumbnail + +
+
+ + Generic placeholder thumbnail + +
+
+
+{% highlight html %} +
+
+ + ... + +
+ ... +
+{% endhighlight %} + +

Custom content

+

With a bit of extra markup, it's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails.

+
+
+
+
+ Generic placeholder thumbnail +
+

Thumbnail label

+

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

+

Button Button

+
+
+
+
+
+ Generic placeholder thumbnail +
+

Thumbnail label

+

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

+

Button Button

+
+
+
+
+
+ Generic placeholder thumbnail +
+

Thumbnail label

+

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

+

Button Button

+
+
+
+
+
+{% highlight html %} +
+
+
+ ... +
+

Thumbnail label

+

...

+

Button Button

+
+
+
+
+{% endhighlight %} +
diff --git a/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/wells.html b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/wells.html new file mode 100644 index 000000000..e502f2b3c --- /dev/null +++ b/POLICY-SDK-APP/src/main/webapp/app/policyApp/CSS/bootstrap/docs/_includes/components/wells.html @@ -0,0 +1,33 @@ +
+

Wells

+ +

Default well

+

Use the well as a simple effect on an element to give it an inset effect.

+
+
+ Look, I'm in a well! +
+
+{% highlight html %} +
...
+{% endhighlight %} +

Optional classes

+

Control padding and rounded corners with two optional modifier classes.

+
+
+ Look, I'm in a large well! +
+
+{% highlight html %} +
...
+{% endhighlight %} + +
+
+ Look, I'm in a small well! +
+
+{% highlight html %} +
...
+{% endhighlight %} +
-- cgit 1.2.3-korg