dashlab 0.3.2__tar.gz → 0.3.3__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.3.2 → dashlab-0.3.3}/PKG-INFO +1 -1
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/_version.py +1 -1
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/utils.py +4 -4
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab.egg-info/PKG-INFO +1 -1
- {dashlab-0.3.2 → dashlab-0.3.3}/LICENSE +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/README.md +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/__init__.py +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/_internal.py +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/base.py +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/core.py +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/patches.py +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/static/animator.css +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/static/animator.js +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/static/fscreen.css +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/static/fscreen.js +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/static/listw.css +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/static/listw.js +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab/widgets.py +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab.egg-info/SOURCES.txt +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab.egg-info/dependency_links.txt +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab.egg-info/requires.txt +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/dashlab.egg-info/top_level.txt +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/pyproject.toml +0 -0
- {dashlab-0.3.2 → dashlab-0.3.3}/setup.cfg +0 -0
|
@@ -132,10 +132,10 @@ def _build_css(selector, props):
|
|
|
132
132
|
content += f"{key} {{\n\t"
|
|
133
133
|
content += _build_css(selector, value).replace('\n','\n\t').rstrip('\t') # last tab is bad
|
|
134
134
|
content += "}\n"
|
|
135
|
-
elif key.startswith('@'): #
|
|
136
|
-
content += f"{key}
|
|
137
|
-
content += _build_css((), value).
|
|
138
|
-
content += "
|
|
135
|
+
elif key.startswith('@'): # @page, @keyframes etc.
|
|
136
|
+
content += f"{key} " # braces added by _build_css below, no extra needed
|
|
137
|
+
content += _build_css((), value).strip(' \n\t\r') # strip both sides here to take brace at previous line
|
|
138
|
+
content += "\n"
|
|
139
139
|
elif key.startswith(':root'): # This is fine
|
|
140
140
|
content+= _build_css((key,), value)
|
|
141
141
|
else:
|
|
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
|
|
File without changes
|