我的Firefox Newtab页面自定义CSS

今天就折腾这个了,其实这事情拖了好几天。Firefox某次更新以后我旧的userContent.css不好使了。于是调整了一下弄的新的。

我没用插件,只是单纯用css实现的。用多了其实不那么热爱折腾,只是实现一点简单的功能,巴不得扩展装的越少越好,(笑)

参考
http://bbs.kafan.cn/thread-1747407-1-1.html
http://bbs.kafan.cn/thread-1838559-1-1.html

我只是稍稍改一下about:newtab的九宫格而已,就用自定义userContent.css实现了,没装扩展。

以下code

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url("about:newtab") {
/*屏蔽周围元素*/
#newtab-customize-button {display: none !important;}
#newtab-intro-what {display: none !important;}    
#newtab-search-container {display: none !important;}/*搜索框隐藏*/
.newtab-control{display: true !important;}/*控制按钮隐藏*/
.newtab-title{display: none !important;}/*网站名隐藏*/
.newtab-link:hover .newtab-title {display: block !important;}/*悬停显示站点名*/


/*背景*/
    
#newtab-scrollbox:not([page-disabled]) {
    background: url(http://area.sinaapp.com/bingImg); /*http://area.sinaapp.com/bingImg?daysAgo=2*/
    background-color: #E8EDF1;
    color: rgb(0, 0, 0);
}




/*拨号区域尺寸、位置*/
.newtab-grid{
    max-width: 1400px !important;
    max-height: 500px !important;
    margin-top: 20px;
}
/*拨号尺寸、间隔*/
.newtab-cell{
    width: 250px !important;
    height: 155px !important;
    margin: 10px 10px !important;
}

/*拨号去圆角*/
.newtab-link {
    border-radius: 0!important;
}
.newtab-cell {
    border-radius: 0!important;
}
/*拨号透明度*/
/*
.newtab-thumbnail{opacity: 0.85 !important;}   
.newtab-cell:hover .newtab-thumbnail{opacity: 1 !important;}
*/
    
/*拨号边框*/
.newtab-site {
  border-radius: inherit; 
  text-decoration: none;
  transition-property: top, left, opacity, box-shadow, background-color;
  box-shadow: none;
  border:none !important;
}
/*悬停边框*/
.newtab-cell:not([ignorehover]) > .newtab-site:hover, .newtab-site[dragged] {
    border: 3px solid #7E7E7E;
    box-shadow: 0 0px 0px 0px #E2E3E4;
    margin: -2px;
    border-radius: 0;
}

/*文字颜色*/
#newtab-intro-what, .newtab-sponsored, .newtab-title {color: #E6E6E6;}

/*站点名*/
.newtab-title {
    background-color: rgba(25, 25, 25, 0.55) !important;
    color:white!important;
    font-size:13px!important;
    text-align:left !important;
    top:134px;
    bottom:auto!important;
    line-height:25px!important;
    padding:0px 10px!important;
}
.newtab-title:before {
    display:none!important;
}

/*控制按钮*/
.newtab-control-pin{
    width:15px !important; height:15px !important;
    top:0px !important;left:0px !important;transition: 0.5s !important;}
.newtab-control-pin:not([pinned]) {background:gold !important;}
.newtab-control-pin[pinned="true"] {background:skyblue !important;}
.newtab-control-block {
    height: 15px !important;width: 15px!important;background:orangered !important;
    top:0px !important;right:0px !important;}
.newtab-control-block:hover {background:Red !important;transition: 0.5s !important;}

    
/*缩略图*/
    [href*="www.baidu.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.baidu.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.chinaso.com"] .newtab-thumbnail {
        background: rgba(124, 192, 43, 1) url("http://cmsfile03.chinaso.com/group1/M00/1A/54/Cgqg11TcZiWAU7LMAAAaLXXZRTI293.jpg") center center no-repeat !important;
        background-size: 100% 80%!important;
    }
    [href*="email.163.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://mail.163.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.douban.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.douban.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="bbs.kafan.cn"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://bbs.kafan.cn") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.eastmoney.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.eastmoney.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="gouwu.hao123.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.hao123.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.zhihu.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.zhihu.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.google.com.hk"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.google.com.hk") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.bing.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.bing.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="pan.baidu.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://pan.baidu.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="weibo.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://weibo.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="zh.wikipedia.org"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://zh.wikipedia.org") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.youtube.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.youtube.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="douban.fm"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://douban.fm") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.lzu.edu.cn"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.lzu.edu.cn") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.outlook.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.outlook.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="ele.me"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://ele.me") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="waimai.meituan.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://waimai.meituan.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="tieba.baidu.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://tieba.baidu.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }   
    [href*="www.luoo.net"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.luoo.net") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="9.douban.com/"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://9.douban.com/") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="www.facebook.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.facebook.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="www.renren.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.renren.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="twitter.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://twitter.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="plus.google.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://plus.google.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="mail.google.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://mail.google.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="mail.qq.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://mail.qq.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="www.huxiu.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.huxiu.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="36kr.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://36kr.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="www.guokr.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.guokr.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    }    
    [href*="jandan.net"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://jandan.net") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="www.ithome.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.ithome.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="www.lofter.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.lofter.com") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="www.youku.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.youku.com/") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="www.alipay.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://www.alipay.com/") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="tv.sohu.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("http://data.ie.sogou.com/favor/icon2.php?url=http://tv.sohu.com/") center center no-repeat !important;
        background-size: 100% 100%!important;
    } 
    [href*="www.firefoxfan.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("chrome://userchromejs/content/thumbnails/firefoxfan.png") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.quora.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("chrome://userchromejs/content/thumbnails/quora.png") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.inoreader.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("chrome://userchromejs/content/thumbnails/inoreader.png") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="www.pinterest.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("chrome://userchromejs/content/thumbnails/pinterest.png") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    [href*="500px.com"] .newtab-thumbnail {
        background: rgba(0, 0, 0, .05) url("chrome://userchromejs/content/thumbnails/500px.png") center center no-repeat !important;
        background-size: 100% 100%!important;
    }
    
} 
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,723评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,080评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,604评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,440评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,431评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,499评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,893评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,541评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,751评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,547评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,619评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,320评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,890评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,896评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,137评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,796评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,335评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,364评论 25 707
  • http://bbs.ybtop.com/thread-784279-1-1.htmlhttp://www.5zz...
    ef4502bffbeb阅读 210评论 0 1
  • 2017.8.7 星期一 晴转多云 亲子日记(104) 今天立秋了,还是挺热!今天把儿子送到老妈那里了。今天很听话...
    于泽妈妈阅读 166评论 0 0
  • 十八 两周过去了,欧阳丹恢复得很好,脸上再次泛出血色,一度凹陷的...
    cb0eb3d25744阅读 350评论 0 2
  • 何谓自由? 于我而言 自由是可以根据自己所喜好,主宰自己的生活。但人活在世上总会有所牵绊,当我们在意的人日益增加,...
    cyrensw阅读 467评论 0 5