@jinntec/jinntap 1.23.0 → 1.24.1

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