@jinntec/jinntap 1.23.0 → 1.24.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.
- package/dist/jinn-tap.css +20 -16
- package/dist/jinn-tap.es.js +4083 -4071
- package/package.json +2 -2
package/dist/jinn-tap.css
CHANGED
|
@@ -13,6 +13,10 @@ jinn-tap {
|
|
|
13
13
|
margin-bottom:50vh
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
jinn-tap[sidebar] {
|
|
17
|
+
grid-template-columns: 1fr;
|
|
18
|
+
}
|
|
19
|
+
|
|
16
20
|
jinn-tap > nav {
|
|
17
21
|
grid-area: toolbar;
|
|
18
22
|
position: sticky;
|
|
@@ -21,7 +25,7 @@ jinn-tap > nav {
|
|
|
21
25
|
background-color: var(--jinn-tap-background-color, white);
|
|
22
26
|
}
|
|
23
27
|
|
|
24
|
-
jinn-tap .user-info {
|
|
28
|
+
.jinn-tap-aside .user-info {
|
|
25
29
|
font-size: 0.75rem;
|
|
26
30
|
}
|
|
27
31
|
|
|
@@ -30,7 +34,7 @@ jinn-tap .editor-area, jinn-tap .code-area {
|
|
|
30
34
|
min-height: 1rem;
|
|
31
35
|
}
|
|
32
36
|
|
|
33
|
-
jinn-tap .aside {
|
|
37
|
+
jinn-tap .jinn-tap-aside {
|
|
34
38
|
grid-area: aside;
|
|
35
39
|
background: var(--jinn-tap-background-color, white);
|
|
36
40
|
padding: 20px;
|
|
@@ -40,11 +44,11 @@ jinn-tap .aside {
|
|
|
40
44
|
z-index: 10;
|
|
41
45
|
}
|
|
42
46
|
|
|
43
|
-
jinn-tap .attribute-panel > div {
|
|
47
|
+
.jinn-tap-aside .attribute-panel > div {
|
|
44
48
|
overflow-y: auto;
|
|
45
49
|
}
|
|
46
50
|
|
|
47
|
-
jinn-tap .attribute-panel fieldset {
|
|
51
|
+
.jinn-tap-aside .attribute-panel fieldset {
|
|
48
52
|
display: grid;
|
|
49
53
|
grid-template-columns: min-content 1fr;
|
|
50
54
|
grid-auto-rows: min-content;
|
|
@@ -57,60 +61,60 @@ jinn-tap .attribute-panel fieldset {
|
|
|
57
61
|
margin: 0;
|
|
58
62
|
}
|
|
59
63
|
|
|
60
|
-
jinn-tap .attribute-panel fieldset label {
|
|
64
|
+
.jinn-tap-aside .attribute-panel fieldset label {
|
|
61
65
|
display: block;
|
|
62
66
|
padding-right: 1rem;
|
|
63
67
|
}
|
|
64
68
|
|
|
65
|
-
jinn-tap .attribute-panel fieldset input,
|
|
66
|
-
jinn-tap .attribute-panel fieldset select {
|
|
69
|
+
.jinn-tap-aside .attribute-panel fieldset input,
|
|
70
|
+
.jinn-tap-aside .attribute-panel fieldset select {
|
|
67
71
|
display: block;
|
|
68
72
|
margin: 0;
|
|
69
73
|
}
|
|
70
74
|
|
|
71
|
-
jinn-tap .attribute-panel details {
|
|
75
|
+
.jinn-tap-aside .attribute-panel details {
|
|
72
76
|
margin-top: 1rem;
|
|
73
77
|
}
|
|
74
78
|
|
|
75
|
-
jinn-tap .attribute-panel footer {
|
|
79
|
+
.jinn-tap-aside .attribute-panel footer {
|
|
76
80
|
display: flex;
|
|
77
81
|
justify-content: flex-end;
|
|
78
82
|
margin-top: 1rem;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
|
-
jinn-tap pb-authority-lookup {
|
|
85
|
+
.jinn-tap-aside pb-authority-lookup {
|
|
82
86
|
overflow-y: auto;
|
|
83
87
|
height: 20rem;
|
|
84
88
|
}
|
|
85
89
|
|
|
86
|
-
jinn-tap .occurrences {
|
|
90
|
+
.jinn-tap-aside .occurrences {
|
|
87
91
|
margin-top: 1rem;
|
|
88
92
|
overflow-y: auto;
|
|
89
93
|
}
|
|
90
94
|
|
|
91
|
-
jinn-tap .occurrences [role="group"] {
|
|
95
|
+
.jinn-tap-aside .occurrences [role="group"] {
|
|
92
96
|
float: right;
|
|
93
97
|
width: fit-content;
|
|
94
98
|
}
|
|
95
99
|
|
|
96
|
-
jinn-tap .occurrences ul {
|
|
100
|
+
.jinn-tap-aside .occurrences ul {
|
|
97
101
|
height: 20rem;
|
|
98
102
|
overflow-y: auto;
|
|
99
103
|
margin: 0;
|
|
100
104
|
padding: 0;
|
|
101
105
|
}
|
|
102
106
|
|
|
103
|
-
jinn-tap .occurrences li {
|
|
107
|
+
.jinn-tap-aside .occurrences li {
|
|
104
108
|
list-style: none;
|
|
105
109
|
}
|
|
106
110
|
|
|
107
|
-
jinn-tap .toolbar .disabled {
|
|
111
|
+
.jinn-tap-toolbar .toolbar .disabled {
|
|
108
112
|
opacity: 0.5;
|
|
109
113
|
cursor: not-allowed;
|
|
110
114
|
pointer-events: none;
|
|
111
115
|
}
|
|
112
116
|
|
|
113
|
-
jinn-tap .toolbar details i {
|
|
117
|
+
.jinn-tap-toolbar .toolbar details i {
|
|
114
118
|
padding-right: 0.5rem;
|
|
115
119
|
}
|
|
116
120
|
|