CSS: mobile.twitter.com

Corrections to UI of mobile.twitter.com

目前为 2022-10-03 提交的版本。查看 最新版本

// ==UserScript==
// @name          CSS: mobile.twitter.com
// @description   Corrections to UI of mobile.twitter.com
// @author        MK
// @namespace     max44
// @homepage      https://gf.qytechs.cn/en/users/309172-max44
// @match         *://mobile.twitter.com/*
// @icon          https://www.google.com/s2/favicons?domain=twitter.com
// @version       1.0.1
// @license       MIT
// @run-at        document-idle
// ==/UserScript==

(function() {
  //CSS for any mode
  var css = `
  /*No opacity for header*/
  .r-6026j {
    background-color: rgba(255, 255, 255, 1) !important;
  }
  .r-1e5uvyk {
    backdrop-filter: none !important;
  }
  /*Add bottom border to header*/
  div.css-1dbjc4n.r-aqfbo4.r-gtdqiz.r-1gn8etr.r-1g40b8q,
  div.css-1dbjc4n.r-1d2f490.r-1xcajam.r-zchlnj.r-1gn8etr {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
    border-bottom-color: rgb(239, 243, 244) !important;
  }
  `;

  if (typeof GM_addStyle != 'undefined') {
    GM_addStyle(css);
  } else if (typeof PRO_addStyle != 'undefined') {
    PRO_addStyle(css);
  } else if (typeof addStyle != 'undefined') {
    addStyle(css);
  } else {
    var node = document.createElement('style');
    node.type = 'text/css';
    node.appendChild(document.createTextNode(css));
    document.documentElement.appendChild(node);
  }
})();

QingJ © 2025

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