Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
Merge branch 'master-local' into master-dist
Browse files Browse the repository at this point in the history
  • Loading branch information
patternfly-build committed May 22, 2018
2 parents 15252be + d2ef176 commit 48ca9b1
Show file tree
Hide file tree
Showing 28 changed files with 148 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dist/css/patternfly-additions.css.map

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions dist/css/patternfly.css
Original file line number Diff line number Diff line change
Expand Up @@ -10254,6 +10254,19 @@ fieldset[disabled] .pagination > li > span.active {
box-shadow: 0 2px 2px rgba(3, 3, 3, 0.08);
padding: 0;
}
.popover.bottom .popover-title:before {
content: "";
position: absolute;
top: -20px;
left: 50%;
-ms-transform: translateX(-50%);
transform: translateX(-50%);
border-top-width: 0;
border-width: 10px;
border-color: transparent;
border-bottom-color: #f5f5f5;
border-style: solid;
}
.popover-content {
color: #4d5258;
line-height: 18px;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/patternfly.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/patternfly.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/patternfly.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/rcue-additions.css.map

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions dist/css/rcue.css
Original file line number Diff line number Diff line change
Expand Up @@ -10255,6 +10255,19 @@ fieldset[disabled] .pagination > li > span.active {
box-shadow: 0 2px 2px rgba(3, 3, 3, 0.08);
padding: 0;
}
.popover.bottom .popover-title:before {
content: "";
position: absolute;
top: -20px;
left: 50%;
-ms-transform: translateX(-50%);
transform: translateX(-50%);
border-top-width: 0;
border-width: 10px;
border-color: transparent;
border-bottom-color: #f5f5f5;
border-style: solid;
}
.popover-content {
color: #4d5258;
line-height: 18px;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/rcue.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/rcue.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/rcue.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/patternfly-settings-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

var patternfly = {
version: "3.46.1"
version: "0.0.0-semantically-released",
};

// definition of breakpoint sizes for tablet and desktop modes
Expand Down
2 changes: 1 addition & 1 deletion dist/js/patternfly-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

var patternfly = {
version: "3.46.1"
version: "0.0.0-semantically-released",
};

// definition of breakpoint sizes for tablet and desktop modes
Expand Down
2 changes: 1 addition & 1 deletion dist/js/patternfly-settings.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/patternfly.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

var patternfly = {
version: "3.46.1"
version: "0.0.0-semantically-released",
};

// definition of breakpoint sizes for tablet and desktop modes
Expand Down
2 changes: 1 addition & 1 deletion dist/js/patternfly.min.js

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions dist/less/popovers.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
.popover {
.box-shadow(0 2px 2px fade(@color-pf-black, 8%));
padding: 0;
&.bottom {
.popover-title:before {
content:"";
position: absolute;
top: @popover-position-top;
left: 50%;
transform: translateX(-50%);
border-top-width: @popover-border-top-width;
border-width: @popover-border-width;
border-color: transparent;
border-bottom-color: @popover-border-bottom-color;
border-style: solid;
}
}
}

.popover-content {
Expand Down
4 changes: 4 additions & 0 deletions dist/less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,11 @@
@popover-arrow-color: @color-pf-white;
@popover-arrow-outer-color: @color-pf-black-400;
@popover-border-color: @color-pf-black-400;
@popover-border-bottom-color: @color-pf-black-150;
@popover-border-width: 10px;
@popover-border-top-width: 0;
@popover-max-width: 220px;
@popover-position-top: -20px;
@popover-title-bg: @color-pf-black-150;
@pre-bg: @color-pf-black-100;
@progress-bg: @color-pf-black-200;
Expand Down
14 changes: 14 additions & 0 deletions dist/sass/patternfly/_popovers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
.popover {
@include box-shadow(0 2px 2px rgba($color-pf-black, (8/100)));
padding: 0;
&.bottom {
.popover-title:before {
content:"";
position: absolute;
top: $popover-position-top;
left: 50%;
transform: translateX(-50%);
border-top-width: $popover-border-top-width;
border-width: $popover-border-width;
border-color: transparent;
border-bottom-color: $popover-border-bottom-color;
border-style: solid;
}
}
}

.popover-content {
Expand Down
4 changes: 4 additions & 0 deletions dist/sass/patternfly/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,11 @@ $panel-inner-border: $color-pf-bl
$popover-arrow-color: $color-pf-white !default;
$popover-arrow-outer-color: $color-pf-black-400 !default;
$popover-border-color: $color-pf-black-400 !default;
$popover-border-bottom-color: $color-pf-black-150 !default;
$popover-border-width: 10px !default;
$popover-border-top-width: 0 !default;
$popover-max-width: 220px !default;
$popover-position-top: -20px !default;
$popover-title-bg: $color-pf-black-150 !default;
$pre-bg: $color-pf-black-100 !default;
$progress-bg: $color-pf-black-200 !default;
Expand Down
14 changes: 14 additions & 0 deletions dist/sass/rcue/_popovers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
.popover {
@include box-shadow(0 2px 2px rgba($color-pf-black, (8/100)));
padding: 0;
&.bottom {
.popover-title:before {
content:"";
position: absolute;
top: $popover-position-top;
left: 50%;
transform: translateX(-50%);
border-top-width: $popover-border-top-width;
border-width: $popover-border-width;
border-color: transparent;
border-bottom-color: $popover-border-bottom-color;
border-style: solid;
}
}
}

.popover-content {
Expand Down
4 changes: 4 additions & 0 deletions dist/sass/rcue/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,11 @@ $panel-inner-border: $color-pf-bl
$popover-arrow-color: $color-pf-white !default;
$popover-arrow-outer-color: $color-pf-black-400 !default;
$popover-border-color: $color-pf-black-400 !default;
$popover-border-bottom-color: $color-pf-black-150 !default;
$popover-border-width: 10px !default;
$popover-border-top-width: 0 !default;
$popover-max-width: 220px !default;
$popover-position-top: -20px !default;
$popover-title-bg: $color-pf-black-150 !default;
$pre-bg: $color-pf-black-100 !default;
$progress-bg: $color-pf-black-200 !default;
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions src/less/popovers.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
.popover {
.box-shadow(0 2px 2px fade(@color-pf-black, 8%));
padding: 0;
&.bottom {
.popover-title:before {
content:"";
position: absolute;
top: @popover-position-top;
left: 50%;
transform: translateX(-50%);
border-top-width: @popover-border-top-width;
border-width: @popover-border-width;
border-color: transparent;
border-bottom-color: @popover-border-bottom-color;
border-style: solid;
}
}
}

.popover-content {
Expand Down
4 changes: 4 additions & 0 deletions src/less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,11 @@
@popover-arrow-color: @color-pf-white;
@popover-arrow-outer-color: @color-pf-black-400;
@popover-border-color: @color-pf-black-400;
@popover-border-bottom-color: @color-pf-black-150;
@popover-border-width: 10px;
@popover-border-top-width: 0;
@popover-max-width: 220px;
@popover-position-top: -20px;
@popover-title-bg: @color-pf-black-150;
@pre-bg: @color-pf-black-100;
@progress-bg: @color-pf-black-200;
Expand Down
14 changes: 14 additions & 0 deletions src/sass/converted/patternfly/_popovers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
.popover {
@include box-shadow(0 2px 2px rgba($color-pf-black, (8/100)));
padding: 0;
&.bottom {
.popover-title:before {
content:"";
position: absolute;
top: $popover-position-top;
left: 50%;
transform: translateX(-50%);
border-top-width: $popover-border-top-width;
border-width: $popover-border-width;
border-color: transparent;
border-bottom-color: $popover-border-bottom-color;
border-style: solid;
}
}
}

.popover-content {
Expand Down
4 changes: 4 additions & 0 deletions src/sass/converted/patternfly/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,11 @@ $panel-inner-border: $color-pf-bl
$popover-arrow-color: $color-pf-white !default;
$popover-arrow-outer-color: $color-pf-black-400 !default;
$popover-border-color: $color-pf-black-400 !default;
$popover-border-bottom-color: $color-pf-black-150 !default;
$popover-border-width: 10px !default;
$popover-border-top-width: 0 !default;
$popover-max-width: 220px !default;
$popover-position-top: -20px !default;
$popover-title-bg: $color-pf-black-150 !default;
$pre-bg: $color-pf-black-100 !default;
$progress-bg: $color-pf-black-200 !default;
Expand Down
14 changes: 14 additions & 0 deletions src/sass/converted/rcue/_popovers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
.popover {
@include box-shadow(0 2px 2px rgba($color-pf-black, (8/100)));
padding: 0;
&.bottom {
.popover-title:before {
content:"";
position: absolute;
top: $popover-position-top;
left: 50%;
transform: translateX(-50%);
border-top-width: $popover-border-top-width;
border-width: $popover-border-width;
border-color: transparent;
border-bottom-color: $popover-border-bottom-color;
border-style: solid;
}
}
}

.popover-content {
Expand Down
4 changes: 4 additions & 0 deletions src/sass/converted/rcue/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,11 @@ $panel-inner-border: $color-pf-bl
$popover-arrow-color: $color-pf-white !default;
$popover-arrow-outer-color: $color-pf-black-400 !default;
$popover-border-color: $color-pf-black-400 !default;
$popover-border-bottom-color: $color-pf-black-150 !default;
$popover-border-width: 10px !default;
$popover-border-top-width: 0 !default;
$popover-max-width: 220px !default;
$popover-position-top: -20px !default;
$popover-title-bg: $color-pf-black-150 !default;
$pre-bg: $color-pf-black-100 !default;
$progress-bg: $color-pf-black-200 !default;
Expand Down

0 comments on commit 48ca9b1

Please sign in to comment.