patternfly-sass 3.3.6 → 3.4.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/assets/stylesheets/_patternfly.scss +1 -0
- data/assets/stylesheets/patternfly/_alerts.scss +1 -1
- data/assets/stylesheets/patternfly/_bootstrap-combobox.scss +1 -1
- data/assets/stylesheets/patternfly/_bootstrap-datepicker.scss +5 -5
- data/assets/stylesheets/patternfly/_bootstrap-select.scss +7 -9
- data/assets/stylesheets/patternfly/_bootstrap-switch.scss +1 -1
- data/assets/stylesheets/patternfly/_buttons.scss +4 -4
- data/assets/stylesheets/patternfly/_cards.scss +1 -1
- data/assets/stylesheets/patternfly/_charts.scss +2 -2
- data/assets/stylesheets/patternfly/_color-variables.scss +4 -1
- data/assets/stylesheets/patternfly/_datatables.scss +11 -11
- data/assets/stylesheets/patternfly/_forms.scss +2 -2
- data/assets/stylesheets/patternfly/_infotip.scss +3 -3
- data/assets/stylesheets/patternfly/_list-view.scss +3 -3
- data/assets/stylesheets/patternfly/_login.scss +5 -6
- data/assets/stylesheets/patternfly/_mixin_overrides.scss +3 -3
- data/assets/stylesheets/patternfly/_mixins.scss +3 -3
- data/assets/stylesheets/patternfly/_modals.scss +1 -1
- data/assets/stylesheets/patternfly/_nav-vertical-alt.scss +1 -1
- data/assets/stylesheets/patternfly/_navbar.scss +5 -7
- data/assets/stylesheets/patternfly/_notifications-drawer.scss +116 -0
- data/assets/stylesheets/patternfly/_pager.scss +1 -1
- data/assets/stylesheets/patternfly/_pagination.scss +2 -2
- data/assets/stylesheets/patternfly/_panels.scss +4 -3
- data/assets/stylesheets/patternfly/_popovers.scss +1 -1
- data/assets/stylesheets/patternfly/_progress-bars.scss +1 -1
- data/assets/stylesheets/patternfly/_search.scss +1 -1
- data/assets/stylesheets/patternfly/_sidebar.scss +2 -2
- data/assets/stylesheets/patternfly/_spinner.scss +8 -8
- data/assets/stylesheets/patternfly/_tables.scss +2 -2
- data/assets/stylesheets/patternfly/_toast.scss +2 -2
- data/assets/stylesheets/patternfly/_toolbar.scss +3 -3
- data/assets/stylesheets/patternfly/_variables.scss +90 -90
- data/assets/stylesheets/patternfly/_vertical-nav.scss +2 -2
- data/assets/stylesheets/patternfly/lib/bootstrap-datepicker.scss +2 -2
- data/bower.json +1 -1
- data/lib/patternfly-sass/version.rb +2 -2
- data/spec/html/dist/css/patternfly-additions.css +372 -264
- data/spec/html/dist/css/patternfly-additions.css.map +1 -1
- data/spec/html/dist/css/patternfly-additions.min.css +2 -2
- data/spec/html/dist/css/patternfly-additions.min.css.map +1 -1
- data/spec/html/dist/css/patternfly.css +323 -303
- data/spec/html/dist/css/patternfly.css.map +1 -1
- data/spec/html/dist/css/patternfly.min.css +3 -3
- data/spec/html/dist/css/patternfly.min.css.map +1 -1
- data/spec/html/forms.html +7 -4
- data/spec/html/horizontal-navigation.html +759 -0
- data/spec/html/index.html +6 -0
- data/spec/html/list-view.html +12 -3
- data/spec/html/navbar.html +87 -87
- data/spec/html/notifications-drawer.html +1624 -0
- data/spec/html/vertical-navigation-without-icons.html +4 -6
- data/spec/html/vertical-navigation.html +6 -8
- data/tasks/converter.rb +6 -0
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2df46c425504d645e6a9ed8829bbf70141a736b
|
4
|
+
data.tar.gz: cb570e27a7122c78815f101833b0eeb06031fcd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d64072e58813820f3a734e5c489c5e7fc53ece3c8f0795032543dedf94b23af1bcf4d969c585f6a3f9e50038e6103d33411b45321d89a71c5772552b8e19ef4
|
7
|
+
data.tar.gz: 3e56f97ce6dcc46312978d26eac5ccf5550c2d3612b0d9167641e0e07fa88ebc61449784504854494395a919a1abb7e25ed1647a6330467067f92c39b8422c9e
|
@@ -90,6 +90,7 @@
|
|
90
90
|
@import "patternfly/navbar-alt";
|
91
91
|
@import "patternfly/navbar-vertical";
|
92
92
|
@import "patternfly/nav-vertical-alt";
|
93
|
+
@import "patternfly/notifications-drawer";
|
93
94
|
@import "patternfly/search";
|
94
95
|
@import "patternfly/sidebar";
|
95
96
|
@import "patternfly/spinner";
|
@@ -29,7 +29,7 @@
|
|
29
29
|
@include button-variant($btn-default-color, $btn-default-bg, $btn-default-bg-img-start, $btn-default-bg-img-stop, $btn-default-border);
|
30
30
|
position: relative; // IE8
|
31
31
|
&:active {
|
32
|
-
@include box-shadow(inset 0 2px 8px rgba(
|
32
|
+
@include box-shadow(inset 0 2px 8px rgba($color-pf-black, 0.2));
|
33
33
|
}
|
34
34
|
}
|
35
35
|
}
|
@@ -6,23 +6,23 @@
|
|
6
6
|
background-color: $input-bg;
|
7
7
|
border-color: $input-border !important;
|
8
8
|
color: $input-color;
|
9
|
-
@include box-shadow(inset 0 1px 1px rgba(
|
9
|
+
@include box-shadow(inset 0 1px 1px rgba($color-pf-black, 0.075));
|
10
10
|
@include form-control-focus;
|
11
11
|
&:focus {
|
12
12
|
border-color: $input-border-focus !important;
|
13
13
|
.has-error & {
|
14
14
|
border-color: darken($state-danger-text, 10%);
|
15
|
-
$shadow: inset 0 1px 1px rgba(
|
15
|
+
$shadow: inset 0 1px 1px rgba($color-pf-black, 0.075), 0 0 6px lighten($state-danger-text, 20%);
|
16
16
|
@include box-shadow($shadow);
|
17
17
|
}
|
18
18
|
.has-success & {
|
19
19
|
border-color: darken($state-success-text, 10%);
|
20
|
-
$shadow: inset 0 1px 1px rgba(
|
20
|
+
$shadow: inset 0 1px 1px rgba($color-pf-black, 0.075), 0 0 6px lighten($state-success-text, 20%);
|
21
21
|
@include box-shadow($shadow);
|
22
22
|
}
|
23
23
|
.has-warning & {
|
24
24
|
border-color: darken($state-warning-text, 10%);
|
25
|
-
$shadow: inset 0 1px 1px rgba(
|
25
|
+
$shadow: inset 0 1px 1px rgba($color-pf-black, 0.075), 0 0 6px lighten($state-warning-text, 20%);
|
26
26
|
@include box-shadow($shadow);
|
27
27
|
}
|
28
28
|
}
|
@@ -72,7 +72,7 @@
|
|
72
72
|
&.active.active.disabled,
|
73
73
|
&.active.active.disabled:hover {
|
74
74
|
background: $dropdown-link-active-bg !important;
|
75
|
-
color:
|
75
|
+
color: $color-pf-white !important;
|
76
76
|
text-shadow: none;
|
77
77
|
}
|
78
78
|
&.day:hover,
|
@@ -18,7 +18,7 @@
|
|
18
18
|
border-color: $state-danger-text;
|
19
19
|
&:focus {
|
20
20
|
border-color: darken($state-danger-text, 10%);
|
21
|
-
$shadow: inset 0 1px 1px rgba(
|
21
|
+
$shadow: inset 0 1px 1px rgba($color-pf-black, 0.075), 0 0 6px lighten($state-danger-text, 20%);
|
22
22
|
@include box-shadow($shadow);
|
23
23
|
}
|
24
24
|
}
|
@@ -26,7 +26,7 @@
|
|
26
26
|
border-color: $state-success-text;
|
27
27
|
&:focus {
|
28
28
|
border-color: darken($state-success-text, 10%);
|
29
|
-
$shadow: inset 0 1px 1px rgba(
|
29
|
+
$shadow: inset 0 1px 1px rgba($color-pf-black, 0.075), 0 0 6px lighten($state-success-text, 20%);
|
30
30
|
@include box-shadow($shadow);
|
31
31
|
}
|
32
32
|
}
|
@@ -34,7 +34,7 @@
|
|
34
34
|
border-color: $state-warning-text;
|
35
35
|
&:focus {
|
36
36
|
border-color: darken($state-warning-text, 10%);
|
37
|
-
$shadow: inset 0 1px 1px rgba(
|
37
|
+
$shadow: inset 0 1px 1px rgba($color-pf-black, 0.075), 0 0 6px lighten($state-warning-text, 20%);
|
38
38
|
@include box-shadow($shadow);
|
39
39
|
}
|
40
40
|
}
|
@@ -58,10 +58,9 @@
|
|
58
58
|
> .selected > a {
|
59
59
|
background-color: $dropdown-link-active-bg !important;
|
60
60
|
border-color: $dropdown-link-active-border-color !important;
|
61
|
-
color:
|
61
|
+
color: $color-pf-white !important;
|
62
62
|
small {
|
63
|
-
color:
|
64
|
-
color:rgba(225,255,255,0.5) !important;
|
63
|
+
color: rgba($color-pf-white, 0.5) !important;
|
65
64
|
}
|
66
65
|
}
|
67
66
|
.divider {
|
@@ -69,7 +68,7 @@
|
|
69
68
|
margin: $dropdown-divider-margin !important;
|
70
69
|
}
|
71
70
|
dt {
|
72
|
-
color:
|
71
|
+
color: $color-pf-black-500;
|
73
72
|
font-weight:normal;
|
74
73
|
padding: 1px 10px;
|
75
74
|
}
|
@@ -79,8 +78,7 @@
|
|
79
78
|
}
|
80
79
|
& a {
|
81
80
|
&:active small {
|
82
|
-
color:
|
83
|
-
color:rgba(225,255,255,0.5) !important;
|
81
|
+
color: rgba($color-pf-white, 0.5) !important;
|
84
82
|
}
|
85
83
|
&:hover,
|
86
84
|
&:focus {
|
@@ -11,7 +11,7 @@
|
|
11
11
|
}
|
12
12
|
.#{$bootstrap-switch-base}-label {
|
13
13
|
background: $bootstrap-switch-bg-color;
|
14
|
-
box-shadow: 0 0 2px rgba(
|
14
|
+
box-shadow: 0 0 2px rgba($color-pf-black, 0.4);
|
15
15
|
@include gradient-vertical($bootstrap-switch-bg-color-start, $bootstrap-switch-bg-color-stop);
|
16
16
|
position: relative;
|
17
17
|
z-index: 9;
|
@@ -3,17 +3,17 @@
|
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
5
5
|
.btn {
|
6
|
-
@include box-shadow(0 2px 3px rgba(
|
6
|
+
@include box-shadow(0 2px 3px rgba($color-pf-black, 0.1));
|
7
7
|
&:active {
|
8
|
-
@include box-shadow(inset 0 2px 8px rgba(
|
8
|
+
@include box-shadow(inset 0 2px 8px rgba($color-pf-black, 0.2));
|
9
9
|
}
|
10
10
|
&.disabled,
|
11
11
|
&[disabled],
|
12
12
|
fieldset[disabled] & {
|
13
|
-
background-color:
|
13
|
+
background-color: $color-pf-black-100 !important;
|
14
14
|
background-image: none !important;
|
15
15
|
border-color: $color-pf-black-300 !important;
|
16
|
-
color:
|
16
|
+
color: $color-pf-black-500 !important;
|
17
17
|
opacity: 1;
|
18
18
|
&:active {
|
19
19
|
@include box-shadow(none);
|
@@ -5,7 +5,7 @@
|
|
5
5
|
.card-pf {
|
6
6
|
background: $card-pf-bg-color;
|
7
7
|
border-top: 2px solid $card-pf-border-top-color;
|
8
|
-
@include box-shadow(0 1px 1px rgba(
|
8
|
+
@include box-shadow(0 1px 1px rgba($color-pf-black, 0.175));
|
9
9
|
margin: 0 (-($grid-gutter-width / 4)) ($grid-gutter-width / 2);
|
10
10
|
padding: 0 ($grid-gutter-width / 2);
|
11
11
|
&.card-pf-accented {
|
@@ -20,7 +20,7 @@
|
|
20
20
|
}
|
21
21
|
|
22
22
|
.c3-chart-arc path {
|
23
|
-
stroke:
|
23
|
+
stroke: $color-pf-white;
|
24
24
|
}
|
25
25
|
|
26
26
|
.c3-grid line {
|
@@ -90,7 +90,7 @@
|
|
90
90
|
.line-chart-pf {
|
91
91
|
.c3-zoom-rect {
|
92
92
|
opacity: 1.0 !important;
|
93
|
-
fill:
|
93
|
+
fill: $color-pf-black-100;
|
94
94
|
stroke: $table-border-color;
|
95
95
|
stroke-width: 1px;
|
96
96
|
}
|
@@ -1,12 +1,14 @@
|
|
1
1
|
$color-pf-black-100: #fafafa;
|
2
|
+
$color-pf-black-150: #f5f5f5;
|
2
3
|
$color-pf-black-200: #ededed;
|
3
4
|
$color-pf-black-300: #d1d1d1;
|
4
|
-
$color-pf-black-400: #
|
5
|
+
$color-pf-black-400: #bbb;
|
5
6
|
$color-pf-black-500: #8b8d8f;
|
6
7
|
$color-pf-black-600: #72767b;
|
7
8
|
$color-pf-black-700: #4d5258;
|
8
9
|
$color-pf-black-800: #393f44;
|
9
10
|
$color-pf-black-900: #292e34;
|
11
|
+
$color-pf-blue-50: #def3ff;
|
10
12
|
$color-pf-blue-100: #bee1f4;
|
11
13
|
$color-pf-blue-200: #7dc3e8;
|
12
14
|
$color-pf-blue-300: #39a5dc;
|
@@ -79,3 +81,4 @@ $color-pf-light-green: $color-pf-light-green-400;
|
|
79
81
|
$color-pf-orange: $color-pf-orange-400;
|
80
82
|
$color-pf-purple: $color-pf-purple-400;
|
81
83
|
$color-pf-red: $color-pf-red-100;
|
84
|
+
$color-pf-white: #fff;
|
@@ -20,7 +20,7 @@
|
|
20
20
|
border: 1px solid $dropdown-fallback-border; // IE8 fallback
|
21
21
|
border: 1px solid $dropdown-border;
|
22
22
|
border-radius: $border-radius-base;
|
23
|
-
@include box-shadow(0 6px 12px rgba(
|
23
|
+
@include box-shadow(0 6px 12px rgba($color-pf-black, 0.175));
|
24
24
|
background-clip: padding-box;
|
25
25
|
list-style: none;
|
26
26
|
margin: -1px 0 0 0;
|
@@ -36,7 +36,7 @@
|
|
36
36
|
}
|
37
37
|
|
38
38
|
.ColVis_collectionBackground {
|
39
|
-
background-color:
|
39
|
+
background-color: $color-pf-white;
|
40
40
|
height: 100%;
|
41
41
|
left: 0;
|
42
42
|
position: fixed;
|
@@ -46,7 +46,7 @@
|
|
46
46
|
}
|
47
47
|
|
48
48
|
.dataTables_header {
|
49
|
-
background-color:
|
49
|
+
background-color: $color-pf-black-150;
|
50
50
|
border: 1px solid $table-border-color;
|
51
51
|
border-bottom: none;
|
52
52
|
padding: 5px;
|
@@ -86,7 +86,7 @@
|
|
86
86
|
}
|
87
87
|
|
88
88
|
.dataTables_footer {
|
89
|
-
background-color:
|
89
|
+
background-color: $color-pf-white;
|
90
90
|
border: 1px solid $table-border-color;
|
91
91
|
border-top: none;
|
92
92
|
overflow: hidden;
|
@@ -101,7 +101,7 @@
|
|
101
101
|
margin: 0;
|
102
102
|
> li {
|
103
103
|
> span {
|
104
|
-
border-color:
|
104
|
+
border-color: $color-pf-white $color-pf-black-300 $color-pf-black-150;
|
105
105
|
border-width: 0 1px;
|
106
106
|
font-size: ($font-size-base + 4);
|
107
107
|
font-weight: normal;
|
@@ -117,9 +117,9 @@
|
|
117
117
|
border-right: none;
|
118
118
|
}
|
119
119
|
&.disabled > span {
|
120
|
-
background:
|
121
|
-
border-left-color:
|
122
|
-
border-right-color:
|
120
|
+
background: $color-pf-black-150;
|
121
|
+
border-left-color: $color-pf-black-200;
|
122
|
+
border-right-color: $color-pf-black-200;
|
123
123
|
@include reset-filter;
|
124
124
|
}
|
125
125
|
}
|
@@ -131,8 +131,8 @@
|
|
131
131
|
padding: 4px 15px 0;
|
132
132
|
text-align: right;
|
133
133
|
.paginate_input {
|
134
|
-
border: 1px solid
|
135
|
-
@include box-shadow(inset 0 1px 1px rgba(
|
134
|
+
border: 1px solid $color-pf-black-300;
|
135
|
+
@include box-shadow(inset 0 1px 1px rgba($color-pf-black, 0.075));
|
136
136
|
font-size: $font-size-base;
|
137
137
|
font-weight: 600;
|
138
138
|
height: 19px;
|
@@ -160,7 +160,7 @@
|
|
160
160
|
}
|
161
161
|
|
162
162
|
.DTCR_clonedTable {
|
163
|
-
background-color: rgba(
|
163
|
+
background-color: rgba($color-pf-white, 0.7);
|
164
164
|
z-index: 202;
|
165
165
|
}
|
166
166
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
fieldset[disabled] & {
|
17
17
|
border-color: $input-border-disabled !important;
|
18
18
|
@include box-shadow(none);
|
19
|
-
color:
|
19
|
+
color: $color-pf-black-500;
|
20
20
|
}
|
21
21
|
&:hover {
|
22
22
|
border-color: $input-border-hover;
|
@@ -32,7 +32,7 @@
|
|
32
32
|
}
|
33
33
|
}
|
34
34
|
|
35
|
-
.has-error {
|
35
|
+
.has-error, .has-success, .has-warning {
|
36
36
|
.checkbox,
|
37
37
|
.checkbox-inline,
|
38
38
|
.control-label,
|
@@ -11,7 +11,7 @@
|
|
11
11
|
// Overwrites for PatternFly - navbar.less
|
12
12
|
@media (max-width: $grid-float-breakpoint-max) {
|
13
13
|
.navbar-pf .navbar-nav .open .dropdown-menu.infotip {
|
14
|
-
background-color:
|
14
|
+
background-color: $color-pf-white !important;
|
15
15
|
margin-top: 0;
|
16
16
|
}
|
17
17
|
}
|
@@ -45,7 +45,7 @@
|
|
45
45
|
}
|
46
46
|
}
|
47
47
|
.footer {
|
48
|
-
background-color:
|
48
|
+
background-color: $color-pf-black-150;
|
49
49
|
padding: 6px 15px;
|
50
50
|
a:hover {
|
51
51
|
color: $link-color;
|
@@ -110,7 +110,7 @@
|
|
110
110
|
margin-left: -$popover-arrow-outer-width;
|
111
111
|
&:after {
|
112
112
|
border-bottom-width: 0;
|
113
|
-
border-top-color:
|
113
|
+
border-top-color: $color-pf-black-150;
|
114
114
|
bottom: 1px;
|
115
115
|
content: " ";
|
116
116
|
margin-left: -$popover-arrow-width;
|
@@ -10,7 +10,7 @@
|
|
10
10
|
display: -ms-flexbox;// IE10 fallback
|
11
11
|
display: flex;
|
12
12
|
padding-bottom: 0;
|
13
|
-
padding-top: 0;
|
13
|
+
padding-top: 0;
|
14
14
|
&.active {
|
15
15
|
color: $list-group-link-color;
|
16
16
|
background-color: $list-view-active-bg;
|
@@ -57,7 +57,7 @@
|
|
57
57
|
float: right; // IE9 fallback
|
58
58
|
margin-bottom: ($grid-gutter-width/2);
|
59
59
|
margin-left: ($grid-gutter-width/2);
|
60
|
-
margin-top: ($grid-gutter-width/2);
|
60
|
+
margin-top: ($grid-gutter-width/2);
|
61
61
|
-ms-flex-order: 2;
|
62
62
|
order: 2;
|
63
63
|
button, > a {
|
@@ -65,7 +65,7 @@
|
|
65
65
|
}
|
66
66
|
.list-view-pf-top-align & {
|
67
67
|
align-self: flex-start;
|
68
|
-
}
|
68
|
+
}
|
69
69
|
}
|
70
70
|
.list-view-pf-additional-info {
|
71
71
|
align-items: center;
|
@@ -37,10 +37,9 @@
|
|
37
37
|
}
|
38
38
|
}
|
39
39
|
.container {
|
40
|
-
background-color: $login-container-bg-color;
|
41
40
|
background-color: $login-container-bg-color-rgba;
|
42
41
|
clear: right;
|
43
|
-
color:
|
42
|
+
color: $color-pf-white;
|
44
43
|
padding-bottom: 40px;
|
45
44
|
padding-top: 20px;
|
46
45
|
width: auto;
|
@@ -52,11 +51,11 @@
|
|
52
51
|
}
|
53
52
|
[class^='alert'] {
|
54
53
|
background: transparent;
|
55
|
-
color:
|
54
|
+
color: $color-pf-white;
|
56
55
|
}
|
57
56
|
.details {
|
58
57
|
p:first-child {
|
59
|
-
border-top: 1px solid
|
58
|
+
border-top: 1px solid rgba($color-pf-white, 0.3);
|
60
59
|
padding-top: 25px;
|
61
60
|
margin-top: 25px;
|
62
61
|
}
|
@@ -66,7 +65,7 @@
|
|
66
65
|
padding-top: 0;
|
67
66
|
margin-top: 0;
|
68
67
|
}
|
69
|
-
border-left: 1px solid
|
68
|
+
border-left: 1px solid rgba($color-pf-white, 0.3);
|
70
69
|
padding-left: 40px;
|
71
70
|
}
|
72
71
|
p {
|
@@ -87,7 +86,7 @@
|
|
87
86
|
}
|
88
87
|
}
|
89
88
|
.help-block {
|
90
|
-
color:
|
89
|
+
color: $color-pf-white;
|
91
90
|
}
|
92
91
|
.login {
|
93
92
|
@media (min-width: $screen-sm-min) {
|
@@ -14,18 +14,18 @@
|
|
14
14
|
&:focus {
|
15
15
|
border-color: $color;
|
16
16
|
outline: 0 !important;
|
17
|
-
@include box-shadow(#{inset 0 1px 1px rgba(
|
17
|
+
@include box-shadow(#{inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px #{$color-rgba}});
|
18
18
|
}
|
19
19
|
}
|
20
20
|
|
21
21
|
|
22
|
-
@mixin gradient-striped($color: rgba(
|
22
|
+
@mixin gradient-striped($color: rgba($color-pf-black, 0.15), $angle: -45deg) {
|
23
23
|
background-image: -webkit-linear-gradient($angle, $color 25%, $color 26%, transparent 27%, transparent 49%, $color 50%, $color 51%, transparent 52%, transparent 74%, $color 75%, $color 76%, transparent 77%);
|
24
24
|
background-image: linear-gradient($angle, $color 25%, $color 26%, transparent 27%, transparent 49%, $color 50%, $color 51%, transparent 52%, transparent 74%, $color 75%, $color 76%, transparent 77%);
|
25
25
|
}
|
26
26
|
|
27
27
|
// Horizontal dividers
|
28
|
-
@mixin nav-divider($color:
|
28
|
+
@mixin nav-divider($color: $color-pf-black-200, $margin: 4px 1px) {
|
29
29
|
background-color: $color;
|
30
30
|
height: 1px;
|
31
31
|
margin: $margin;
|
@@ -67,20 +67,20 @@
|
|
67
67
|
&:focus {
|
68
68
|
border-color: $color;
|
69
69
|
outline: 0 !important;
|
70
|
-
@include box-shadow(#{inset 0 1px 1px rgba(
|
70
|
+
@include box-shadow(#{inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px #{$color-rgba}});
|
71
71
|
}
|
72
72
|
}
|
73
73
|
|
74
74
|
// Gradients
|
75
75
|
#gradient {
|
76
|
-
@mixin striped($color: rgba(
|
76
|
+
@mixin striped($color: rgba($color-pf-black, 0.15), $angle: -45deg) {
|
77
77
|
background-image: -webkit-linear-gradient($angle, $color 25%, $color 26%, transparent 27%, transparent 49%, $color 50%, $color 51%, transparent 52%, transparent 74%, $color 75%, $color 76%, transparent 77%);
|
78
78
|
background-image: linear-gradient($angle, $color 25%, $color 26%, transparent 27%, transparent 49%, $color 50%, $color 51%, transparent 52%, transparent 74%, $color 75%, $color 76%, transparent 77%);
|
79
79
|
}
|
80
80
|
}
|
81
81
|
|
82
82
|
// Horizontal dividers
|
83
|
-
@mixin nav-divider($color:
|
83
|
+
@mixin nav-divider($color: $color-pf-black-200, $margin: 4px 1px) {
|
84
84
|
background-color: $color;
|
85
85
|
height: 1px;
|
86
86
|
margin: $margin;
|