@ansible/ansible-ui-framework 0.0.539 → 0.0.540

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,27 @@
1
+ .border-top {
2
+ border-top: thin solid var(--pf-global--BorderColor--100);
3
+ }
4
+
5
+ .border-bottom {
6
+ border-bottom: thin solid var(--pf-global--BorderColor--100);
7
+ }
8
+
9
+ .light {
10
+ background-color: var(--pf-global--BackgroundColor--100);
11
+ }
12
+
13
+ :root:where(.pf-theme-dark) .dark-0 {
14
+ background-color: var(--pf-global--BackgroundColor--200);
15
+ }
16
+
17
+ :root:where(.pf-theme-dark) .dark-1 {
18
+ background-color: var(--pf-global--BackgroundColor--100);
19
+ }
20
+
21
+ :root:where(.pf-theme-dark) .dark-2 {
22
+ background-color: var(--pf-global--BackgroundColor--300);
23
+ }
24
+
25
+ :root:where(.pf-theme-dark) .dark-3 {
26
+ background-color: var(--pf-global--BackgroundColor--400);
27
+ }
@@ -0,0 +1,7 @@
1
+ .pf-c-toolbar__content-section {
2
+ row-gap: 16px !important;
3
+ }
4
+
5
+ .pf-c-toolbar__expandable-content.pf-m-expanded {
6
+ z-index: 400;
7
+ }
@@ -0,0 +1,12 @@
1
+ .collapsed {
2
+ max-height: 0;
3
+ transition: max-height 0.15s ease-out, opacity 0.15s ease-out;
4
+ overflow: hidden;
5
+ opacity: 0;
6
+ }
7
+
8
+ .expanded {
9
+ max-height: 500px;
10
+ transition: max-height 0.25s ease-in, opacity 0.25s ease-in;
11
+ opacity: 1;
12
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ansible/ansible-ui-framework",
3
3
  "description": "A framework for building applications using PatternFly.",
4
- "version": "0.0.539",
4
+ "version": "0.0.540",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",