dashlab 0.2.0__tar.gz → 0.2.1__tar.gz
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.
- {dashlab-0.2.0 → dashlab-0.2.1}/PKG-INFO +1 -1
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/_version.py +1 -1
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/listw.css +4 -2
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/widgets.py +1 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/PKG-INFO +1 -1
- {dashlab-0.2.0 → dashlab-0.2.1}/LICENSE +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/README.md +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/__init__.py +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/_internal.py +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/base.py +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/core.py +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/patches.py +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/animator.css +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/animator.js +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/fscreen.css +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/fscreen.js +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/listw.js +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/utils.py +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/SOURCES.txt +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/dependency_links.txt +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/requires.txt +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/top_level.txt +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/pyproject.toml +0 -0
- {dashlab-0.2.0 → dashlab-0.2.1}/setup.cfg +0 -0
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
.list-widget {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
|
-
border-radius: 4px;
|
|
5
4
|
overflow-y: auto; /* user can set max height, so allow this */
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.list-widget:not(.tabs) {
|
|
8
|
+
border-radius: 4px;
|
|
6
9
|
margin-block: 0.5em 0.5em;
|
|
7
10
|
}
|
|
8
11
|
|
|
@@ -10,7 +13,6 @@
|
|
|
10
13
|
.list-widget.tabs {
|
|
11
14
|
flex-direction: row;
|
|
12
15
|
margin-bottom: 0;
|
|
13
|
-
padding: 0 4px;
|
|
14
16
|
border-radius: 4px 4px 0 0;
|
|
15
17
|
border-bottom: 1px inset #8884;
|
|
16
18
|
box-sizing: border-box;
|
|
@@ -168,6 +168,7 @@ class TabsWidget(GridBox):
|
|
|
168
168
|
@traitlets.observe('vertical', 'tabs_width', 'tabs_height')
|
|
169
169
|
def _update_layout(self, change):
|
|
170
170
|
self.layout.grid_template_columns = f'{self.tabs_width} 1fr' if self.vertical else '1fr'
|
|
171
|
+
self.layout.grid_template_rows = '1fr' if self.vertical else f'{self.tabs_height} 1fr'
|
|
171
172
|
self._lw.layout.height = self.tabs_height if not self.vertical else 'auto'
|
|
172
173
|
|
|
173
174
|
@traitlets.validate('children')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|