1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
| div#rightmenu-wrapper { display: -webkit-box ; display: -moz-box ; display: none; position: fixed; z-index: 2147483648; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
ul.list-v.rightmenu { display: -webkit-box ; display: -moz-box ; display: block; background-color: var(--board-bg-color); max-width: 240px; overflow: hidden; }
ul.list-v { z-index: 1; display: -webkit-box ; display: -moz-box ; display: none; position: absolute; background: var(--color-card); box-shadow: 0 2px 4px 0px rgba(0,0,0,0.08), 0 4px 8px 0px rgba(0,0,0,0.08), 0 8px 16px 0px rgba(0,0,0,0.08); -webkit-box-shadow: 0 2px 4px 0px rgba(0,0,0,0.08), 0 4px 8px 0px rgba(0,0,0,0.08), 0 8px 16px 0px rgba(0,0,0,0.08); margin-top: -6px; border-radius: 4px; -webkit-border-radius: 4px; padding: 8px 0; }
ul.list-v.rightmenu li.navigation, ul.list-v.rightmenu li.music { display: -webkit-box ; display: -moz-box ; display: -ms-flexbox ; display: -webkit-flex ; display: flex ; display: flex; justify-content: space-between; -webkit-justify-content: space-between; -khtml-justify-content: space-between; -moz-justify-content: space-between; -o-justify-content: space-between; -ms-justify-content: space-between; }
ul.list-v >li { white-space: nowrap; word-break: keep-all; }
ul.list-v hr { margin-top: 8px; margin-bottom: 8px; }
ul.list-v.rightmenu li.navigation a.nav i, ul.list-v.rightmenu li.music a.nav i { margin: 0; width: 32px; line-height: 32px; }
ul.list-v >li { white-space: nowrap; word-break: keep-all; }
ul.list-v.rightmenu li.navigation a.nav:first-child, ul.list-v.rightmenu li.music a.nav:first-child { margin-left: 3px; }
ul.list-v.rightmenu a.vlts-menu { text-overflow: ellipsis; overflow: hidden; line-height: 36px; font-weight: normal; }
.rightmenu-icon{ margin: 0 11px 0 8px; }
ul.list-v >li>a { transition: all 0.28s ease; -webkit-transition: all 0.28s ease; -khtml-transition: all 0.28s ease; -moz-transition: all 0.28s ease; -o-transition: all 0.28s ease; -ms-transition: all 0.28s ease; display: -webkit-box ; display: -moz-box ; display: block; color: var(--text-color); font-size: 1rem; font-weight: bold; line-height: 36px; padding: 0 8px 0 8px; text-overflow: ellipsis; margin: 0 4px; border-radius: 4px; -webkit-border-radius: 4px; }
ul.list-v >li>a :hover{ color: var(--link-hover-color) }
ul.list-v.rightmenu a { cursor: default; }
.tooltip-rightmenu { position: fixed; top: 10%; left: 50%; transform: translate(-50%, -50%); background: var(--text-color); color: #fff; padding: 10px 25px; border-radius: 5px; opacity: 0; z-index: 99; transition: opacity 1s ease-in-out; }
.show-tooltip { opacity: 0.8; }
|