diff --git a/superset-frontend/package-lock.json b/superset-frontend/package-lock.json index 0a79bfe8de26f..ac49a706fef5e 100644 --- a/superset-frontend/package-lock.json +++ b/superset-frontend/package-lock.json @@ -57,6 +57,7 @@ "@visx/xychart": "^3.0.0", "abortcontroller-polyfill": "^1.1.9", "ace-builds": "^1.4.14", + "animate.css": "^4.1.1", "ansi-regex": "^4.1.1", "antd": "4.10.3", "array-move": "^2.2.1", @@ -22100,6 +22101,11 @@ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", "dev": true }, + "node_modules/animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, "node_modules/ansi-align": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", @@ -81614,6 +81620,11 @@ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", "dev": true }, + "animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, "ansi-align": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", diff --git a/superset-frontend/package.json b/superset-frontend/package.json index a0f5bdd8c088f..229fe0797e07a 100644 --- a/superset-frontend/package.json +++ b/superset-frontend/package.json @@ -122,6 +122,7 @@ "@visx/xychart": "^3.0.0", "abortcontroller-polyfill": "^1.1.9", "ace-builds": "^1.4.14", + "animate.css": "^4.1.1", "ansi-regex": "^4.1.1", "antd": "4.10.3", "array-move": "^2.2.1", diff --git a/superset-frontend/src/assets/images/favicon.png b/superset-frontend/src/assets/images/favicon.png old mode 100644 new mode 100755 index 2bf2c4bde23c0..83533f00da06e Binary files a/superset-frontend/src/assets/images/favicon.png and b/superset-frontend/src/assets/images/favicon.png differ diff --git a/superset-frontend/src/assets/images/ortege-logo-horiz.png b/superset-frontend/src/assets/images/ortege-logo-horiz.png new file mode 100644 index 0000000000000..4cba05a9a58a8 Binary files /dev/null and b/superset-frontend/src/assets/images/ortege-logo-horiz.png differ diff --git a/superset-frontend/src/assets/images/ortege-logo.png b/superset-frontend/src/assets/images/ortege-logo.png new file mode 100755 index 0000000000000..850a0ed239dce Binary files /dev/null and b/superset-frontend/src/assets/images/ortege-logo.png differ diff --git a/superset-frontend/src/components/Loading/index.tsx b/superset-frontend/src/components/Loading/index.tsx index b8d91ce6a2ead..98139fa0597b3 100644 --- a/superset-frontend/src/components/Loading/index.tsx +++ b/superset-frontend/src/components/Loading/index.tsx @@ -20,7 +20,8 @@ import React from 'react'; import { styled } from '@superset-ui/core'; import cls from 'classnames'; -import Loader from 'src/assets/images/loading.gif'; +import 'animate.css'; +import Loader from 'src/assets/images/ortege-logo.png'; export type PositionOption = | 'floating' @@ -35,8 +36,9 @@ export interface Props { const LoaderImg = styled.img` z-index: 99; - width: 50px; - height: unset; + height: 100px; + animation-duration: 1s; + animation-iteration-count: infinite; position: relative; margin: 10px; &.inline { @@ -64,7 +66,13 @@ export default function Loading({ }: Props) { return ( - {ALT_LOADING} +
{REFRESHING}
diff --git a/superset/config.py b/superset/config.py index 401dfd2f3d995..09602b43c4c9f 100644 --- a/superset/config.py +++ b/superset/config.py @@ -287,10 +287,10 @@ def _try_json_readsha(filepath: str, length: int) -> str | None: # GLOBALS FOR APP Builder # ------------------------------ # Uncomment to setup Your App name -APP_NAME = "Superset" +APP_NAME = "Ortege" # Specify the App icon -APP_ICON = "/static/assets/images/superset-logo-horiz.png" +APP_ICON = "/static/assets/images/ortege-logo-horiz.png" # Specify where clicking the logo would take the user # e.g. setting it to '/' would take the user to '/superset/welcome/' diff --git a/superset/templates/superset/basic.html b/superset/templates/superset/basic.html index 0a4d24cc058e6..1372d04e3b931 100644 --- a/superset/templates/superset/basic.html +++ b/superset/templates/superset/basic.html @@ -80,7 +80,7 @@ {% block body %}
- +
{% endblock %}