@iankibetsh/shframework 4.8.4 → 4.8.6
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.
- package/dist/dist/library.mjs.css +32 -32
- package/dist/library.js +1 -1
- package/dist/library.mjs +1 -1
- package/package.json +1 -1
|
@@ -31,6 +31,38 @@
|
|
|
31
31
|
opacity: 0.5;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
.permissions-main {
|
|
35
|
+
background: #edeff2;
|
|
36
|
+
}
|
|
37
|
+
.permissions-main div#permissions-nav {
|
|
38
|
+
padding: 0;
|
|
39
|
+
}
|
|
40
|
+
.permissions-main div#permissions-nav ul {
|
|
41
|
+
padding-left: 0;
|
|
42
|
+
max-height: 400px;
|
|
43
|
+
overflow-y: auto;
|
|
44
|
+
}
|
|
45
|
+
.permissions-main div#permissions-nav ul li.active {
|
|
46
|
+
border-right: none !important;
|
|
47
|
+
position: relative;
|
|
48
|
+
top: 0;
|
|
49
|
+
left: 0;
|
|
50
|
+
background: #88b3b370;
|
|
51
|
+
border-radius: 10px;
|
|
52
|
+
}
|
|
53
|
+
.permissions-main div#permissions-nav ul li {
|
|
54
|
+
list-style: none;
|
|
55
|
+
padding-inline-start: 10px;
|
|
56
|
+
display: flex;
|
|
57
|
+
gap: 5px;
|
|
58
|
+
}
|
|
59
|
+
.permissions-main div#permissions-nav ul li label {
|
|
60
|
+
padding: 8px 0;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
height: 100%;
|
|
63
|
+
flex-grow: 1;
|
|
64
|
+
}
|
|
65
|
+
|
|
34
66
|
.colored-toast.swal2-icon-success {
|
|
35
67
|
background-color: #a5dc86 !important;
|
|
36
68
|
}
|
|
@@ -79,38 +111,6 @@
|
|
|
79
111
|
margin-right: 0.255em;
|
|
80
112
|
}
|
|
81
113
|
|
|
82
|
-
.permissions-main {
|
|
83
|
-
background: #edeff2;
|
|
84
|
-
}
|
|
85
|
-
.permissions-main div#permissions-nav {
|
|
86
|
-
padding: 0;
|
|
87
|
-
}
|
|
88
|
-
.permissions-main div#permissions-nav ul {
|
|
89
|
-
padding-left: 0;
|
|
90
|
-
max-height: 400px;
|
|
91
|
-
overflow-y: auto;
|
|
92
|
-
}
|
|
93
|
-
.permissions-main div#permissions-nav ul li.active {
|
|
94
|
-
border-right: none !important;
|
|
95
|
-
position: relative;
|
|
96
|
-
top: 0;
|
|
97
|
-
left: 0;
|
|
98
|
-
background: #88b3b370;
|
|
99
|
-
border-radius: 10px;
|
|
100
|
-
}
|
|
101
|
-
.permissions-main div#permissions-nav ul li {
|
|
102
|
-
list-style: none;
|
|
103
|
-
padding-inline-start: 10px;
|
|
104
|
-
display: flex;
|
|
105
|
-
gap: 5px;
|
|
106
|
-
}
|
|
107
|
-
.permissions-main div#permissions-nav ul li label {
|
|
108
|
-
padding: 8px 0;
|
|
109
|
-
cursor: pointer;
|
|
110
|
-
height: 100%;
|
|
111
|
-
flex-grow: 1;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
114
|
.callout{
|
|
115
115
|
--bs-link-color-rgb: 110,168,254;
|
|
116
116
|
--bs-code-color: #e685b5;
|
package/dist/library.js
CHANGED
|
@@ -4586,7 +4586,7 @@ return (_ctx, _cache) => {
|
|
|
4586
4586
|
key: act.label
|
|
4587
4587
|
}, [
|
|
4588
4588
|
vue.createVNode(script$h, {
|
|
4589
|
-
class: vue.normalizeClass(act.class),
|
|
4589
|
+
class: vue.normalizeClass(["dropdown-item", act.class]),
|
|
4590
4590
|
action: act,
|
|
4591
4591
|
record: __props.record
|
|
4592
4592
|
}, null, 8 /* PROPS */, ["class", "action", "record"])
|
package/dist/library.mjs
CHANGED
|
@@ -4574,7 +4574,7 @@ return (_ctx, _cache) => {
|
|
|
4574
4574
|
key: act.label
|
|
4575
4575
|
}, [
|
|
4576
4576
|
createVNode(script$h, {
|
|
4577
|
-
class: normalizeClass(act.class),
|
|
4577
|
+
class: normalizeClass(["dropdown-item", act.class]),
|
|
4578
4578
|
action: act,
|
|
4579
4579
|
record: __props.record
|
|
4580
4580
|
}, null, 8 /* PROPS */, ["class", "action", "record"])
|