Style.sql 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. SELECT 'text' AS component
  2. , '<style>
  3. /* loader container */
  4. .sqlpage-loader-container {
  5. position: fixed;
  6. text-align: center;
  7. left: 50vw;
  8. top: 50vh;
  9. margin-top: -5.5em;
  10. margin-left: -87.5px;
  11. padding-bottom: 2em;
  12. height: 9em;
  13. width: 175px;
  14. }
  15. .sqlpage-loader-container:has(.status) {
  16. position: inherit;
  17. text-align: inherit;
  18. left: inherit;
  19. top: inherit;
  20. margin-top: inherit;
  21. margin-left: inherit;
  22. padding-bottom: inherit;
  23. height: inherit;
  24. width: inherit;
  25. }
  26. div.sqlpage-loader-start:has(+ .sqlpage-loader-stop) {
  27. /* hide if followed by sqlpage-loader-stop */
  28. display: none;
  29. }
  30. /* end loader container */
  31. /* progress container */
  32. .sqlpage-progress-container {
  33. margin: 1em 0 1em;
  34. }
  35. div.sqlpage-progress-container:has(+ .sqlpage-progress-container) {
  36. /* hide if followed by sqlpage-progress-container */
  37. display: none;
  38. }
  39. .sqlpage-progress-container label {
  40. text-align:left;
  41. color: var(--tblr-text-primary);
  42. }
  43. .sqlpage-progress-container label:after {
  44. content: "…";
  45. }
  46. /* end progress container */
  47. </style>
  48. ' AS html
  49. ;