IP Dounford Scripts Styles

Centralize IP Dounford Styles

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/506089/1448276/IP%20Dounford%20Scripts%20Styles.js

  1. // ==UserScript==
  2. // @name IP Dounford Scripts Styles
  3. // @version 1.0.3
  4. // @description Centralize IP Dounford Styles
  5. // @author Dounford
  6. // @license MIT
  7. // @match *://idle-pixel.com/login/play*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. function isNewerVersion () {
  14. const oldParts = document.getElementById('dounfordStyles').getAttribute('version').split('.')
  15. const newParts = GM_info.script.version.split('.')
  16. for (let i = 0; i < newParts.length; i++) {
  17. const a = ~~newParts[i]
  18. const b = ~~oldParts[i]
  19. if (a > b) return true
  20. if (a < b) return false
  21. }
  22. return false
  23. }
  24.  
  25. (function addStyles() {
  26. let style = document.createElement('style');
  27. style.id = "dounfordStyles"
  28. style.setAttribute('version', GM_info.script.version)
  29. const styleHTML = `
  30. /* Hover */
  31. .dounfordHover:hover {
  32. cursor: pointer;
  33. background-color: rgb(225 225 225);
  34. }
  35. /* Modal Style */
  36. dialog::backdrop {
  37. background-color: rgba(0, 0, 0, 0.855);
  38. }
  39. .dounfordModal {
  40. padding: 0;
  41. width: 600px;
  42. background-color: #e5e5e5;
  43. border-radius: 0.5rem;
  44. overflow: visible;
  45. }
  46. .dounfordModal label {
  47. margin-left: 5px;
  48. }
  49. .dounfordModalHeader {
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. padding: 1rem;
  54. border-bottom: 1px solid #ccc;
  55. }
  56. .dounfordModalBody {
  57. padding: 1rem;
  58. text-align: center;
  59. }
  60. .dounfordModalFooter {
  61. display: flex;
  62. align-items: center;
  63. justify-content: flex-end;
  64. padding: 0.75rem;
  65. border-top: 1px solid #ccc;
  66. }
  67. .dounfordModalFooter > * {
  68. margin: 0.25rem;
  69. }
  70. /* Blocked User Modal */
  71. .blockedUser {
  72. display: flex;
  73. justify-content: space-between;
  74. padding: 10px;
  75. border-radius: 10px;
  76. font-weight: bold;
  77. align-items: center;
  78. }
  79.  
  80. .blockedUser:hover {
  81. background-color: aliceblue;
  82. }
  83. /* Tooltips*/
  84. [dounfordTooltip] {
  85. position: relative;
  86. border-bottom: 1px dashed #000;
  87. }
  88.  
  89. [dounfordTooltip]::after {
  90. position: absolute;
  91. z-index: 10;
  92. opacity: 0;
  93. pointer-events: none;
  94. content: attr(dounfordTooltip);
  95. left: 0;
  96. top: calc(100% + 10px);
  97. border-radius: 3px;
  98. box-shadow: 0 0 5px 2px rgba(100, 100, 100, 0.6);
  99. background-color: black;
  100. color: white;
  101. padding: 5px;
  102. width: 200px;
  103. }
  104.  
  105. [dounfordTooltip]:hover::after {
  106. opacity: 1;
  107. }
  108. /* PVP Tab */
  109. .dounfordPVPGrid {
  110. display: grid;
  111. grid-template-columns: 1fr 1fr;
  112. grid-template-rows: auto auto;
  113. color: white;
  114. max-height: 1223px;
  115. text-align:center;
  116. }
  117. .dounfordPVPTitles {
  118. color: black;
  119. display: inline-block;
  120. padding: 10px;
  121. border: 2px solid gold;
  122. background-color: white;
  123. border-radius: 5px;
  124. margin: 5px;
  125. font-size: 1.2rem;
  126. }
  127. .dounfordPVPTitles {
  128. display: inline-flex;
  129. align-items: center;
  130. gap: 5px;
  131. border: 2px solid gold;
  132. border-radius: 5px;
  133. padding: 10px;
  134. font-size: 1.2rem;
  135. background-color: white;
  136. color: black;
  137. }
  138. `;
  139.  
  140. if (document.getElementById('dounfordStyles')) {
  141. if (!isNewerVersion()) return
  142. document.getElementById('dounfordStyles').innerHTML = styleHTML
  143. document.getElementById('dounfordStyles').setAttribute('version', GM_info.script.version)
  144. } else {
  145. style.innerHTML = styleHTML
  146. document.head.appendChild(style);
  147. }
  148. })()
  149. })()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址