@jinntec/jinntap 1.13.4 → 1.13.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/jinn-tap.css +29 -3
- package/dist/jinn-tap.es.js +449 -451
- package/package.json +1 -1
package/dist/jinn-tap.css
CHANGED
|
@@ -14,7 +14,7 @@ jinn-tap > nav {
|
|
|
14
14
|
position: sticky;
|
|
15
15
|
top: 0;
|
|
16
16
|
z-index: 100;
|
|
17
|
-
background-color: white;
|
|
17
|
+
background-color: var(--jinn-tap-background-color, white);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
jinn-tap .editor-area {
|
|
@@ -24,7 +24,7 @@ jinn-tap .editor-area {
|
|
|
24
24
|
|
|
25
25
|
jinn-tap .aside {
|
|
26
26
|
grid-area: aside;
|
|
27
|
-
background: white;
|
|
27
|
+
background: var(--jinn-tap-background-color, white);
|
|
28
28
|
padding: 20px;
|
|
29
29
|
max-height: fit-content;
|
|
30
30
|
position: sticky;
|
|
@@ -36,6 +36,28 @@ jinn-tap .attribute-panel > div {
|
|
|
36
36
|
overflow-y: auto;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
jinn-tap .attribute-panel fieldset {
|
|
40
|
+
display: grid;
|
|
41
|
+
grid-template-columns: min-content 1fr;
|
|
42
|
+
grid-auto-rows: min-content;
|
|
43
|
+
align-items: center;
|
|
44
|
+
column-gap: 1rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
jinn-tap .attribute-panel fieldset label {
|
|
48
|
+
display: block;
|
|
49
|
+
padding-right: 1rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
jinn-tap .attribute-panel fieldset input {
|
|
53
|
+
display: block;
|
|
54
|
+
margin: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
jinn-tap .attribute-panel details {
|
|
58
|
+
margin-top: 1rem;
|
|
59
|
+
}
|
|
60
|
+
|
|
39
61
|
jinn-tap pb-authority-lookup {
|
|
40
62
|
overflow-y: auto;
|
|
41
63
|
height: 20rem;
|
|
@@ -120,4 +142,8 @@ jinn-tap .ProseMirror {
|
|
|
120
142
|
.collaboration-cursor__caret:hover .collaboration-cursor__label {
|
|
121
143
|
animation: none;
|
|
122
144
|
opacity: 1;
|
|
123
|
-
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.jinn-tap.overlay {
|
|
148
|
+
border: 2px dotted var(--jinn-tap-overlay-color, rgb(255, 123, 0));
|
|
149
|
+
}
|