Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Prevent the icons from taking up extra space, allow space for the label text */
- #radial-menu .markermenu.open .statusicon {
- font-size: 0;
- border:none;
- margin-bottom: 10px;
- margin-left: 20px;
- padding-right: 10px;
- margin-top: 7px !important;
- margin-right: 30px;
- width: 25px;
- }
- #radial-menu .markermenu.open {
- width: 705px;
- height: 370px;
- border-radius: 15px;
- top: 30px;
- left:-730px;
- padding-left: 20px !important;
- margin-top: -330px !important;
- background: var(--dark-surface1, #eee) !important;
- }
- /* Undo the default dead "X" styling */
- #radial-menu .markermenu .markercolor.dead {
- font-weight: normal;
- height: 24px;
- margin-left: 20px;
- padding: 0;
- top: 0 !important;
- width: 24px;
- }
- /* Show the icon titles as labels */
- #radial-menu .markermenu.open .statusicon::after {
- color: var(--color-element-bg, #8c8c8c);
- content: attr(title);
- display: inline-block;
- font-size: 12px;
- font-weight:bold;
- line-height: 1em;
- overflow: hidden;
- position: relative;
- text-align: center;
- left: -25px;
- top: 24px;
- white-space: nowrap;
- width: 80px;
- }
- /* Recreate the dead "X" without disrupting the layout */
- #radial-menu .markermenu .markercolor.dead::before {
- content: "X";
- display: block;
- font-size: 24px;
- font-weight: bold;
- position: absolute;
- text-align: center;
- top: 20px;
- width: 100%;
- }
- #radial-menu .markermenu .markericon.active {
- border: none !important;
- color: var(--dark-surface1, #eee);
- display: inline-block;
- border-radius: 5px;
- animation: blinkingBackground 2s infinite;
- }
- @keyframes blinkingBackground {
- 0% {
- background-color: #10c018;
- }
- 25% {
- background-color: #1056c0;
- }
- 50% {
- background-color: #ef0a1a;
- }
- 75% {
- background-color: #254878;
- }
- 100% {
- background-color: #04a1d5;
- }
- }
- #radial-menu {
- z-index: 5000;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement