@appscode/design-system 1.0.43-alpha.90 → 1.0.43-alpha.94
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.
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
.graph-tooltip-wrapper {
|
|
2
|
+
background-color: var(--ac-white);
|
|
3
|
+
border: 1px solid var(--ac-white-light);
|
|
4
|
+
|
|
5
|
+
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
|
|
6
|
+
border-radius: 4px;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
h6 {
|
|
9
|
+
padding: 10px 20px;
|
|
10
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
11
|
+
}
|
|
12
|
+
.table-wrapper {
|
|
13
|
+
padding: 10px 20px;
|
|
14
|
+
tr {
|
|
15
|
+
td {
|
|
16
|
+
&:first-child {
|
|
17
|
+
font-weight: 450;
|
|
18
|
+
padding-right: 10px;
|
|
19
|
+
color: var(--ac-text-heading);
|
|
20
|
+
}
|
|
21
|
+
padding: 4px 0;
|
|
22
|
+
font-size: 13px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.is-hovering .label text tspan {
|
|
29
|
+
stroke: var(--ac-white);
|
|
30
|
+
fill: var(--ac-white);
|
|
31
|
+
stroke-width: 0.3px;
|
|
32
|
+
}
|
|
33
|
+
.is-selected .label text tspan {
|
|
34
|
+
stroke: var(--ac-white);
|
|
35
|
+
fill: var(--ac-white);
|
|
36
|
+
stroke-width: 0.3px;
|
|
37
|
+
}
|
|
38
|
+
.label text tspan {
|
|
39
|
+
stroke: var(--ac-black);
|
|
40
|
+
fill: var(--ac-black);
|
|
41
|
+
stroke-width: 0.3px;
|
|
42
|
+
}
|
|
43
|
+
.edgeLabel .label text tspan {
|
|
44
|
+
stroke-width: 0px;
|
|
45
|
+
}
|
|
@@ -158,7 +158,12 @@
|
|
|
158
158
|
border-radius: 4px;
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
|
-
|
|
161
|
+
.is-collapsed {
|
|
162
|
+
&.ac-nested-elements::before,
|
|
163
|
+
&.ac-nested-elements::after {
|
|
164
|
+
display: none;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
162
167
|
// details with checkradio
|
|
163
168
|
.details-with-checkradio-wrapper {
|
|
164
169
|
display: grid;
|
package/main.scss
CHANGED
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
@import "~assets/design-system/components/wizard";
|
|
56
56
|
@import "~assets/design-system/components/preloader";
|
|
57
57
|
@import "~assets/design-system/components/pagination";
|
|
58
|
+
@import "~assets/design-system/components/graph";
|
|
58
59
|
@import "~assets/design-system/components/ui-builder/ui-builder";
|
|
59
60
|
@import "~assets/design-system/components/ac-toaster/ac-toasted";
|
|
60
61
|
@import "~assets/design-system/components/bbum/post";
|
package/package.json
CHANGED
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appscode/design-system",
|
|
3
|
-
"version": "1.0.43-alpha.
|
|
3
|
+
"version": "1.0.43-alpha.94",
|
|
4
4
|
"description": "A design system for Appscode websites and dashboards made using Bulma",
|
|
5
5
|
"main": "main.scss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@appscode/design-system-images": "0.0.13"
|
|
11
|
-
"bulma-checkradio": "^1.1.1",
|
|
12
|
-
"bulma-switch": "^2.0.0",
|
|
13
|
-
"bulma-tooltip": "^3.0.2",
|
|
14
|
-
"v-calendar": "^1.0.6",
|
|
15
|
-
"vue-multiselect": "^2.1.6"
|
|
10
|
+
"@appscode/design-system-images": "0.0.13"
|
|
16
11
|
},
|
|
17
12
|
"repository": {
|
|
18
13
|
"type": "git",
|