Advertisement
Guest User

Untitled

a guest
Feb 20th, 2025
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. /* Prevent the icons from taking up extra space, allow space for the label text */
  2. #radial-menu .markermenu.open .statusicon {
  3. font-size: 0;
  4. border:none;
  5. margin-bottom: 10px;
  6. margin-left: 20px;
  7. padding-right: 10px;
  8. margin-top: 7px !important;
  9. margin-right: 30px;
  10. width: 25px;
  11. }
  12. #radial-menu .markermenu.open {
  13. width: 705px;
  14. height: 370px;
  15. border-radius: 15px;
  16. top: 30px;
  17. left:-730px;
  18. padding-left: 20px !important;
  19. margin-top: -330px !important;
  20. background: var(--dark-surface1, #eee) !important;
  21. }
  22. /* Undo the default dead "X" styling */
  23. #radial-menu .markermenu .markercolor.dead {
  24. font-weight: normal;
  25. height: 24px;
  26. margin-left: 20px;
  27. padding: 0;
  28. top: 0 !important;
  29. width: 24px;
  30. }
  31. /* Show the icon titles as labels */
  32. #radial-menu .markermenu.open .statusicon::after {
  33. color: var(--color-element-bg, #8c8c8c);
  34. content: attr(title);
  35. display: inline-block;
  36. font-size: 12px;
  37. font-weight:bold;
  38. line-height: 1em;
  39. overflow: hidden;
  40. position: relative;
  41. text-align: center;
  42. left: -25px;
  43. top: 24px;
  44. white-space: nowrap;
  45. width: 80px;
  46. }
  47. /* Recreate the dead "X" without disrupting the layout */
  48. #radial-menu .markermenu .markercolor.dead::before {
  49. content: "X";
  50. display: block;
  51. font-size: 24px;
  52. font-weight: bold;
  53. position: absolute;
  54. text-align: center;
  55. top: 20px;
  56. width: 100%;
  57. }
  58.  
  59. #radial-menu .markermenu .markericon.active {
  60. border: none !important;
  61. color: var(--dark-surface1, #eee);
  62. display: inline-block;
  63. border-radius: 5px;
  64. animation: blinkingBackground 2s infinite;
  65. }
  66. @keyframes blinkingBackground {
  67. 0% {
  68. background-color: #10c018;
  69. }
  70. 25% {
  71. background-color: #1056c0;
  72. }
  73. 50% {
  74. background-color: #ef0a1a;
  75. }
  76. 75% {
  77. background-color: #254878;
  78. }
  79. 100% {
  80. background-color: #04a1d5;
  81. }
  82. }
  83.  
  84. #radial-menu {
  85. z-index: 5000;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement