@patternfly/react-styles 4.92.6 → 4.92.8
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/package.json +3 -4
- package/css/components/Topology/topology-components.css +0 -832
- package/css/components/Topology/topology-components.d.ts +0 -67
- package/css/components/Topology/topology-components.js +0 -68
- package/css/components/Topology/topology-components.mjs +0 -66
- package/css/components/Topology/topology-controlbar.css +0 -22
- package/css/components/Topology/topology-controlbar.d.ts +0 -11
- package/css/components/Topology/topology-controlbar.js +0 -12
- package/css/components/Topology/topology-controlbar.mjs +0 -10
- package/css/components/Topology/topology-pipelines.css +0 -554
- package/css/components/Topology/topology-pipelines.d.ts +0 -30
- package/css/components/Topology/topology-pipelines.js +0 -31
- package/css/components/Topology/topology-pipelines.mjs +0 -29
- package/css/components/Topology/topology-side-bar.css +0 -73
- package/css/components/Topology/topology-side-bar.d.ts +0 -14
- package/css/components/Topology/topology-side-bar.js +0 -15
- package/css/components/Topology/topology-side-bar.mjs +0 -13
- package/css/components/Topology/topology-view.css +0 -13
- package/css/components/Topology/topology-view.d.ts +0 -6
- package/css/components/Topology/topology-view.js +0 -7
- package/css/components/Topology/topology-view.mjs +0 -5
- package/src/css/components/Topology/topology-components.css +0 -832
- package/src/css/components/Topology/topology-controlbar.css +0 -22
- package/src/css/components/Topology/topology-pipelines.css +0 -554
- package/src/css/components/Topology/topology-side-bar.css +0 -73
- package/src/css/components/Topology/topology-view.css +0 -13
@@ -1,73 +0,0 @@
|
|
1
|
-
.pf-topology-container__with-sidebar {
|
2
|
-
position: relative;
|
3
|
-
}
|
4
|
-
|
5
|
-
.pf-topology-side-bar {
|
6
|
-
position: absolute;
|
7
|
-
top: 0;
|
8
|
-
right: 0;
|
9
|
-
width: 0;
|
10
|
-
max-width: 100%;
|
11
|
-
height: 100%;
|
12
|
-
background-color: var(--pf-global--BackgroundColor--100);
|
13
|
-
overflow-x: hidden;
|
14
|
-
opacity: 0;
|
15
|
-
z-index: 5;
|
16
|
-
-webkit-transition: opacity 0.15s linear, transform 0.15s linear;
|
17
|
-
-o-transition: opacity 0.15s linear, transform 0.15s linear;
|
18
|
-
transition: opacity 0.15s linear, transform 0.15s linear;
|
19
|
-
}
|
20
|
-
.pf-topology-side-bar.in {
|
21
|
-
opacity: 1;
|
22
|
-
}
|
23
|
-
.pf-topology-side-bar.shown {
|
24
|
-
width: 100%;
|
25
|
-
}
|
26
|
-
.pf-topology-side-bar__dismiss.pf-c-button {
|
27
|
-
position: absolute;
|
28
|
-
top: calc(2rem - 0.375rem + 0.0625rem);
|
29
|
-
right: 1rem;
|
30
|
-
}
|
31
|
-
.pf-topology-side-bar:not(.in) {
|
32
|
-
-webkit-transform: translate3d(-25%, 0, 0);
|
33
|
-
transform: translate3d(25%, 0, 0);
|
34
|
-
}
|
35
|
-
|
36
|
-
.pf-topology-resizable-side-bar {
|
37
|
-
width: 100%;
|
38
|
-
height: 100%;
|
39
|
-
background-color: var(--pf-global--BackgroundColor--100);
|
40
|
-
overflow-x: hidden;
|
41
|
-
}
|
42
|
-
|
43
|
-
.pf-topology-side-bar > .pf-topology-side-bar__dismiss + * {
|
44
|
-
margin-right: 2rem;
|
45
|
-
}
|
46
|
-
.pf-topology-side-bar > .pf-topology-side-bar__header + * {
|
47
|
-
margin-top: 1.5rem;
|
48
|
-
}
|
49
|
-
|
50
|
-
@media (min-width: 768px) {
|
51
|
-
.pf-topology-container__with-sidebar {
|
52
|
-
overflow-x: hidden;
|
53
|
-
background-color: var(--pf-global--Color--light-200) !important;
|
54
|
-
}
|
55
|
-
.pf-topology-container__with-sidebar .pf-topology-content {
|
56
|
-
-webkit-transition: width 0.15s linear;
|
57
|
-
-o-transition: width 0.15s linear;
|
58
|
-
transition: width 0.15s linear;
|
59
|
-
position: absolute;
|
60
|
-
left: 0;
|
61
|
-
min-width: 100%;
|
62
|
-
}
|
63
|
-
.pf-topology-container__with-sidebar.pf-topology-container__with-sidebar--open .pf-topology-content {
|
64
|
-
width: 180px;
|
65
|
-
min-width: calc(100% - 550px);
|
66
|
-
}
|
67
|
-
|
68
|
-
.pf-topology-side-bar.shown {
|
69
|
-
box-shadow: var(--pf-global--BoxShadow--md);
|
70
|
-
width: calc(100% - 180px);
|
71
|
-
max-width: 550px;
|
72
|
-
}
|
73
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import './topology-side-bar.css';
|
2
|
-
declare const _default: {
|
3
|
-
"button": "pf-c-button",
|
4
|
-
"in": "in",
|
5
|
-
"shown": "shown",
|
6
|
-
"topologyContainerWithSidebar": "pf-topology-container__with-sidebar",
|
7
|
-
"topologyContainerWithSidebarOpen": "pf-topology-container__with-sidebar--open",
|
8
|
-
"topologyContent": "pf-topology-content",
|
9
|
-
"topologyResizableSideBar": "pf-topology-resizable-side-bar",
|
10
|
-
"topologySideBar": "pf-topology-side-bar",
|
11
|
-
"topologySideBarDismiss": "pf-topology-side-bar__dismiss",
|
12
|
-
"topologySideBarHeader": "pf-topology-side-bar__header"
|
13
|
-
};
|
14
|
-
export default _default;
|
@@ -1,15 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
exports.__esModule = true;
|
3
|
-
require('./topology-side-bar.css');
|
4
|
-
exports.default = {
|
5
|
-
"button": "pf-c-button",
|
6
|
-
"in": "in",
|
7
|
-
"shown": "shown",
|
8
|
-
"topologyContainerWithSidebar": "pf-topology-container__with-sidebar",
|
9
|
-
"topologyContainerWithSidebarOpen": "pf-topology-container__with-sidebar--open",
|
10
|
-
"topologyContent": "pf-topology-content",
|
11
|
-
"topologyResizableSideBar": "pf-topology-resizable-side-bar",
|
12
|
-
"topologySideBar": "pf-topology-side-bar",
|
13
|
-
"topologySideBarDismiss": "pf-topology-side-bar__dismiss",
|
14
|
-
"topologySideBarHeader": "pf-topology-side-bar__header"
|
15
|
-
};
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import './topology-side-bar.css';
|
2
|
-
export default {
|
3
|
-
"button": "pf-c-button",
|
4
|
-
"in": "in",
|
5
|
-
"shown": "shown",
|
6
|
-
"topologyContainerWithSidebar": "pf-topology-container__with-sidebar",
|
7
|
-
"topologyContainerWithSidebarOpen": "pf-topology-container__with-sidebar--open",
|
8
|
-
"topologyContent": "pf-topology-content",
|
9
|
-
"topologyResizableSideBar": "pf-topology-resizable-side-bar",
|
10
|
-
"topologySideBar": "pf-topology-side-bar",
|
11
|
-
"topologySideBarDismiss": "pf-topology-side-bar__dismiss",
|
12
|
-
"topologySideBarHeader": "pf-topology-side-bar__header"
|
13
|
-
};
|