惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The Last Watchdog
The Last Watchdog
博客园 - 司徒正美
L
LangChain Blog
P
Proofpoint News Feed
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
L
LINUX DO - 热门话题
Google DeepMind News
Google DeepMind News
Security Latest
Security Latest
Microsoft Security Blog
Microsoft Security Blog
Cyberwarzone
Cyberwarzone
Project Zero
Project Zero
M
MIT News - Artificial intelligence
NISL@THU
NISL@THU
C
CERT Recently Published Vulnerability Notes
Engineering at Meta
Engineering at Meta
T
Tenable Blog
C
Cybersecurity and Infrastructure Security Agency CISA
T
Troy Hunt's Blog
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Scott Helme
Scott Helme
Recent Announcements
Recent Announcements
S
Secure Thoughts
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
云风的 BLOG
云风的 BLOG
Hacker News - Newest:
Hacker News - Newest: "LLM"
雷峰网
雷峰网
Attack and Defense Labs
Attack and Defense Labs
A
About on SuperTechFans
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler
V2EX - 技术
V2EX - 技术
S
Securelist
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
B
Blog RSS Feed
C
CXSECURITY Database RSS Feed - CXSecurity.com
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
PCI Perspectives
PCI Perspectives
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hacker News: Front Page

小小孩

vaultwarden 部署 - 小小孩 前端项目路径别名终极解决方案 - 小小孩 如何在 Bing 和 百度搜索中去除 CSDN 搜索结果 Nginx 安装 brotli 模块 - 小小孩 JavaScript 高性能现代网页截图 - 小小孩 JS 深拷贝终结者 structuredClone - 小小孩 http 协议头 Content-Disposition 的作用 - 小小孩 Echarts示例 Demo 合集网站 - 小小孩 LNMP Nginx 安装 brotli 模块
去除宝塔面板一些无用的页面信息 - 小小孩
小小孩 · 2001-11-11 · via 小小孩

去除宝塔面板一些无用的页面信息

小小孩

本文最后更新于2024年11月11日,已超过579天没有更新,若内容或图片失效,请留言反馈。

通过 CSS 去除宝塔面板的一些广告信息

9.2.0 稳定版本

免费版专用,去除一切需要需要付费才能玩的东西

  1. 文件夹进入 /www/server/panel/BTPanel/static/vite/css
  2. 双击修改 style.css
  3. 在 @charset "UTF-8"; 换行之后添加如下代码

    .recom-bg,
    .recom-view,
    .recom-btn,
    .advantage-view,
    .wrapper .wrapper-item:has(> .text-center > .absolute),
    .icon-unpaid-ltd,
    .menu-item.menu-waf,
    #tab-PanelReport,
    #tab-safeDetect,
    #tab-contDetect,
    #tab-phpSite,
    #tab-intrusion,
    #tab-system,
    #tab-logAudit,
    #tab-sshLogs,
    #tab-taskSchedule,
    #tab-loginLog,
    #tab-systemAccount
    {
      display: none!important;
    }

8.0.5 版本

  1. 文件夹进入 /www/server/panel/BTPanel/static/vite/css
  2. 双击修改 style.css
  3. 在 @charset "UTF-8"; 之后添加如下代码

    .module-box .wrapper-item{
     margin-left: -1px;
     margin-top: -1px;
     border: 1px solid rgba(236,236,251,var(--tw-border-opacity))!important;
    }
    #updata_pro_info,
    .h-auto:has(> .advantage-view),
    .module-box .wrapper-item:has(> .text-center > .absolute),
    .module-box .wrapper-item:nth-child(n+13){
     display: none!important;
    }

8.0.5 之前的版本

  1. 文件夹进入 /www/server/panel/BTPanel/static/css
  2. 双击修改 site.css
  3. 添加以下代码

    #home-recommend,.btltd-gray,.soft-man .col-lg-3:not([data-id]),.footer,#updata_pro_info {
     display: none!important;
    }
    .bt-warp>.container-fluid {
     padding: 0!important;
    }
    .container-fluid{
     padding-bottom: 15px!important;
    }