css前端滚动条无效,滚动条css失效,求助~~~~~~~~~~~~~~~~~~

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

以前一直用下面的css放在stylish里面,实现鼠标悬浮至滚动条处,显示滚动条,平时滚动条是隐藏的。

可以最近几天,不管换哪个css,滚动条都没有变化……@-moz-document regexp("((?!theoldreader.com).)*")

{

/* 垂直滚动条http://bbs.kafan.cn/thread-1529981-1-1.html */

scrollbar *

scrollbar scrollbarbutton { display: none ! important; }

scrollbar scrollbarbutton { visibility: collapse !important }

scrollbar[orient="vertical"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important; /* 滚动条背景透明 */

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于垂直滚动条宽度的负值 */

position: relative !important; /* 更改滚动条的定位方式为相对 */

z-index: 2147483647 !important; /* 把滚动条提到Z轴最上层 */

}

/* 可以改变垂直滚动条的宽度,默认17px(必须同时改变,最小宽度和最大宽度完全相同) */

/* 默认的垂直滚动条的宽度是17px */

scrollbar[orient="vertical"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="vertical"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-width: 4px !important;

max-width: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: none none none solid !important; /* 垂直滚动条按钮的左边框样式 */

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="vertical"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="vertical"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 水平滚动条 */

scrollbar[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于水平滚动条高度的负值 */

position: relative !important;

z-index: 2147483647 !important;

}

/* 可以改变水平滚动条的高度,默认17px(必须同时改变,最小高度和最大高度完全相同) */

/* 默认高度是17px */

scrollbar[orient="horizontal"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-height: 4px !important;

max-height: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: solid none none none !important; /* 水平滚动条按钮的上边框样式 */

margin-left: 0px !important;

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="horizontal"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="horizontal"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 去除垂直与水平滚动条相交汇的角落 */

scrollcorner{opacity: 0 !important;}

scrollbar scrollcorner:hover {background:transparent !important;}

}

@-moz-document regexp("((?!theoldreader.com).)*")

{

/* 垂直滚动条http://bbs.kafan.cn/thread-1529981-1-1.html */

scrollbar *

scrollbar scrollbarbutton { display: none ! important; }

scrollbar scrollbarbutton { visibility: collapse !important }

scrollbar[orient="vertical"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important; /* 滚动条背景透明 */

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于垂直滚动条宽度的负值 */

position: relative !important; /* 更改滚动条的定位方式为相对 */

z-index: 2147483647 !important; /* 把滚动条提到Z轴最上层 */

}

/* 可以改变垂直滚动条的宽度,默认17px(必须同时改变,最小宽度和最大宽度完全相同) */

/* 默认的垂直滚动条的宽度是17px */

scrollbar[orient="vertical"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="vertical"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-width: 4px !important;

max-width: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: none none none solid !important; /* 垂直滚动条按钮的左边框样式 */

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="vertical"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="vertical"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 水平滚动条 */

scrollbar[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于水平滚动条高度的负值 */

position: relative !important;

z-index: 2147483647 !important;

}

/* 可以改变水平滚动条的高度,默认17px(必须同时改变,最小高度和最大高度完全相同) */

/* 默认高度是17px */

scrollbar[orient="horizontal"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-height: 4px !important;

max-height: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: solid none none none !important; /* 水平滚动条按钮的上边框样式 */

margin-left: 0px !important;

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="horizontal"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="horizontal"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 去除垂直与水平滚动条相交汇的角落 */

scrollcorner{opacity: 0 !important;}

scrollbar scrollcorner:hover {background:transparent !important;}

}

@-moz-document regexp("((?!theoldreader.com).)*")

{

/* 垂直滚动条http://bbs.kafan.cn/thread-1529981-1-1.html */

scrollbar *

scrollbar scrollbarbutton { display: none ! important; }

scrollbar scrollbarbutton { visibility: collapse !important }

scrollbar[orient="vertical"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important; /* 滚动条背景透明 */

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于垂直滚动条宽度的负值 */

position: relative !important; /* 更改滚动条的定位方式为相对 */

z-index: 2147483647 !important; /* 把滚动条提到Z轴最上层 */

}

/* 可以改变垂直滚动条的宽度,默认17px(必须同时改变,最小宽度和最大宽度完全相同) */

/* 默认的垂直滚动条的宽度是17px */

scrollbar[orient="vertical"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="vertical"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-width: 4px !important;

max-width: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: none none none solid !important; /* 垂直滚动条按钮的左边框样式 */

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="vertical"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="vertical"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 水平滚动条 */

scrollbar[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于水平滚动条高度的负值 */

position: relative !important;

z-index: 2147483647 !important;

}

/* 可以改变水平滚动条的高度,默认17px(必须同时改变,最小高度和最大高度完全相同) */

/* 默认高度是17px */

scrollbar[orient="horizontal"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-height: 4px !important;

max-height: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: solid none none none !important; /* 水平滚动条按钮的上边框样式 */

margin-left: 0px !important;

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="horizontal"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="horizontal"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 去除垂直与水平滚动条相交汇的角落 */

scrollcorner{opacity: 0 !important;}

scrollbar scrollcorner:hover {background:transparent !important;}

}

@-moz-document regexp("((?!theoldreader.com).)*")

{

/* 垂直滚动条http://bbs.kafan.cn/thread-1529981-1-1.html */

scrollbar *

scrollbar scrollbarbutton { display: none ! important; }

scrollbar scrollbarbutton { visibility: collapse !important }

scrollbar[orient="vertical"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important; /* 滚动条背景透明 */

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于垂直滚动条宽度的负值 */

position: relative !important; /* 更改滚动条的定位方式为相对 */

z-index: 2147483647 !important; /* 把滚动条提到Z轴最上层 */

}

/* 可以改变垂直滚动条的宽度,默认17px(必须同时改变,最小宽度和最大宽度完全相同) */

/* 默认的垂直滚动条的宽度是17px */

scrollbar[orient="vertical"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-width: 4px !important;

max-width: 4px !important;

-moz-margin-start: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="vertical"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-width: 4px !important;

max-width: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: none none none solid !important; /* 垂直滚动条按钮的左边框样式 */

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="vertical"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="vertical"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 水平滚动条 */

scrollbar[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important; /* 把滚动条位置移到屏幕外,这里的像素应该等于水平滚动条高度的负值 */

position: relative !important;

z-index: 2147483647 !important;

}

/* 可以改变水平滚动条的高度,默认17px(必须同时改变,最小高度和最大高度完全相同) */

/* 默认高度是17px */

scrollbar[orient="horizontal"]:hover

{

-moz-appearance: none !important;

background-color: transparent !important; background-image: none !important;

min-height: 4px !important;

max-height: 4px !important;

margin-top: -4px !important;

position: relative !important;

z-index: 2147483647 !important;

}

/* 滚动条按钮 */

scrollbar thumb[orient="horizontal"]

{

-moz-appearance: none !important;

background-color: rgba(0,100,255,.5) !important;

border-radius: 0px !important;

min-height: 4px !important;

max-height: 4px !important;

border: 1px !important; /* 滚动条按钮边框 */

border-color: rgba(0,100,255,.75) !important; /* 滚动条按钮边框颜色和透明度 */

border-style: solid none none none !important; /* 水平滚动条按钮的上边框样式 */

margin-left: 0px !important;

}

/* 鼠标悬停样式: 滚动条按钮 */

scrollbar thumb[orient="horizontal"]:hover

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 点击拖动样式:滚动条按钮 */

scrollbar thumb[orient="horizontal"]:active

{

background-color: rgba(0,100,255,.75) !important;

border-radius: 0px !important;

border: 0px !important;

}

/* 去除垂直与水平滚动条相交汇的角落 */

scrollcorner{opacity: 0 !important;}

scrollbar scrollcorner:hover {background:transparent !important;}

}

--我去年长了个尾巴

09cfca7afa64b48d862773eaba043ba7.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值