diff options
| author | bobzel <zzzman@gmail.com> | 2024-10-10 19:04:57 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-10-10 19:04:57 -0400 |
| commit | 3a35e2687e3c7b0c864dd4f00b1002ff088b56d3 (patch) | |
| tree | 98697432c5be99a0e1b64cc42eff9e7a0ec58457 /src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss | |
| parent | f75f15ae58b57644c28d42446c176289bbe55dd4 (diff) | |
| parent | d347fc59feefd91a796012892da57511787bb6d0 (diff) | |
merged with master
Diffstat (limited to 'src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss')
| -rw-r--r-- | src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss b/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss new file mode 100644 index 000000000..ff5be4a38 --- /dev/null +++ b/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss @@ -0,0 +1,69 @@ +.spinner-container { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100%; +} + +.spinner { + width: 60px; + height: 60px; + position: relative; + margin-bottom: 20px; // Space between spinner and text +} + +.double-bounce1, +.double-bounce2 { + width: 100%; + height: 100%; + border-radius: 50%; + background-color: #4a90e2; + opacity: 0.6; + position: absolute; + top: 0; + left: 0; + animation: bounce 2s infinite ease-in-out; +} + +.double-bounce2 { + animation-delay: -1s; +} + +@keyframes bounce { + 0%, + 100% { + transform: scale(0); + } + 50% { + transform: scale(1); + } +} + +.uploading-overlay { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(255, 255, 255, 0.8); + display: flex; + align-items: center; + justify-content: center; + z-index: 1000; +} + +.progress-container { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; +} + +.step-name { + font-size: 18px; + color: #333; + text-align: center; + width: 100%; + margin-top: -10px; // Adjust to move the text closer to the spinner +} |
