mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
* Improve sizing for Number inputs
Co-Authored-By: Ran Byron <ranbena@gmail.com>
* Migrate WidgetDialog
* Start migrating Widget
* Update textbox to use HtmlContent
* QueryLink migration and some updates
* Add visualization rendering
* Render widget
* Add delete button
* Update AutoHeight
* Add widget bottom
* Add Drodpown button
* Split Widget component
* Update with #4056 and trigger netlify
* In progress: use composition
* Add header and footer
* Update widget actions positioning
* Re-render when refreshing from widget
* Add workaround to force DashboardGrid re-render
* VisualizationWidgetFooter component
* VisualizationWidget menu
* Separate RestrictedWidget
* Update tests
* Update margin for Parameters
* Remove widget files
* Revert "Improve sizing for Number inputs"
This reverts commit a02ce8f0aa.
* Some cleanup
* Move refresh logic to the Dashboard
* Add loadingWidgets logic to the public dashboard
* Add onLoadWidget
* Remove parameter from URL when empty
* Recreate widget array instead of loadingWidgets
* Add comment about re-rendering + whitespace missing
* CR changes
* Use plain html instead of string syntax
Co-Authored-By: Ran Byron <ranbena@gmail.com>
19 lines
260 B
Plaintext
19 lines
260 B
Plaintext
.visualization-name:empty + span {
|
||
color: rgba(0, 0, 0, 0.8);
|
||
}
|
||
|
||
.visualization-name {
|
||
font-size: 15px;
|
||
font-weight: 500;
|
||
color: rgba(0, 0, 0, 0.8);
|
||
|
||
&:after {
|
||
content: "−";
|
||
margin-left: 5px;
|
||
}
|
||
|
||
&:empty:after {
|
||
content: none;
|
||
}
|
||
}
|