Organise browser overides
This commit is contained in:
parent
ce49677a3e
commit
2d8afece25
37 changed files with 970 additions and 12455 deletions
27
NOSTOW/firefoxExtentions/browseroverrides/js/codemirror.js
Normal file
27
NOSTOW/firefoxExtentions/browseroverrides/js/codemirror.js
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
//This script will ensure that code mirror code is always gruvbox dark
|
||||||
|
|
||||||
|
class CodemirrorStyle{
|
||||||
|
constructor(){
|
||||||
|
this.domLoaded = this.domLoaded.bind(this);
|
||||||
|
if (document.readyState === 'loading') {
|
||||||
|
//Listend for change
|
||||||
|
document.addEventListener('readystatechange', this.domLoaded )
|
||||||
|
} else {
|
||||||
|
this.domLoaded()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
domLoaded(){
|
||||||
|
console.log("dom before remove");
|
||||||
|
document.removeEventListener('readystatechange',this.domLoaded);
|
||||||
|
console.log("dom after remove");
|
||||||
|
document.querySelectorAll('.CodeMirror').forEach(this.changeClass).forEach(this.changeStyles);
|
||||||
|
}
|
||||||
|
|
||||||
|
changeClass(el){
|
||||||
|
console.log("changeClass");
|
||||||
|
el.className = el.className.replace(/cm-s-\S*/,'cm-s-gruvbox-dark');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
new CodemirrorStyle();
|
File diff suppressed because one or more lines are too long
|
@ -1,11 +1,58 @@
|
||||||
@import "gruvbox-colours.less";
|
@import "gruvbox-colours.less";
|
||||||
|
|
||||||
body{
|
html, body, .pun{
|
||||||
font-family: opendyslexic !important;
|
font-family: opendyslexic !important;
|
||||||
background-color: @gb-dm-bg0 !important;
|
background-color: @gb-dm-bg0 !important;
|
||||||
color: @gb-dm-fg0 !important;
|
color: @gb-dm-fg0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pun .punwrap{
|
||||||
|
background: @gb-dm-bg0-soft;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#brdmenu{
|
||||||
|
background: transparent;
|
||||||
|
a{
|
||||||
|
&, &:visited, &:link{
|
||||||
|
background: @gb-dm-bg0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .blockpost{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
background-color: @gb-dm-bg1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .blockpost .postbody, .pun .blockpost .postfoot{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .postmsg{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .blockpost h2{
|
||||||
|
background: @gb-dm-bg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .blocktable th{
|
||||||
|
background: @gb-dm-bg2;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .blocktable .box{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.box{
|
||||||
|
background: @gb-dm-bg0-hard;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
code, pre, tt, .blob-code-inner{
|
code, pre, tt, .blob-code-inner{
|
||||||
font-family: Iosevka !important;
|
font-family: Iosevka !important;
|
||||||
color: @gb-dm-fg0 !important;
|
color: @gb-dm-fg0 !important;
|
||||||
|
@ -16,6 +63,44 @@ h1, h2, h3, h4, h5, h6 g{
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pun a, .pun a:link, .pun a:visited, a:link, a:visited{
|
||||||
|
color: @gb-dm-light-aqua;
|
||||||
|
&:hover{
|
||||||
|
color: @gb-dm-dark-aqua;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pun .quotebox{
|
||||||
|
background-color: @gb-dm-bg4;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
border-color: @gb-dm-bg3;
|
||||||
|
cite{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dl dt{
|
||||||
|
color: @gb-dm-fg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.results tr:nth-child(2n+1), #article-list tr:nth-child(2n+1){
|
||||||
|
background-color: @gb-dm-bg1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.results tr:nth-child(2n), #article-list tr:nth-child(2n){
|
||||||
|
background-color: @gb-dm-bg3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.results th{
|
||||||
|
background-color: @gb-dm-bg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
select[multiple], input[type="text"], input[type="password"], textarea, select{
|
||||||
|
background-color: @gb-dm-bg2;
|
||||||
|
border-color: @gb-dm-bg1;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
#content{
|
#content{
|
||||||
font-family: opendyslexic !important;
|
font-family: opendyslexic !important;
|
||||||
background-color: @gb-dm-bg0 !important;
|
background-color: @gb-dm-bg0 !important;
|
||||||
|
|
83
NOSTOW/firefoxExtentions/browseroverrides/less/bbc.less
Normal file
83
NOSTOW/firefoxExtentions/browseroverrides/less/bbc.less
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
@import "gruvbox-colours.less";
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-color: @gb-dm-bg0;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#orb-container, #page{
|
||||||
|
background-color: @gb-dm-bg0;
|
||||||
|
h1,h2,h3,h4,h5,h6,p,ul,ol,li{
|
||||||
|
color: @gb-dm-fg0 !important;
|
||||||
|
}
|
||||||
|
a, a:visited{
|
||||||
|
color: @gb-dm-dark-aqua;
|
||||||
|
&:hover, &:active{
|
||||||
|
color: @gb-dm-light-aqua;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-stories-promo{
|
||||||
|
background-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
.top-stories-promo-story__title{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.features-and-analysis{
|
||||||
|
background-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-heron{
|
||||||
|
background-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-stories-container .hp-module__container, .local-news-container .hp-module__container, .uk-hero-promos-container .hp-module__container, .hero-promos-container .hp-module__container{
|
||||||
|
background-color: @gb-dm-bg1 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hp-module{
|
||||||
|
background-color: @gb-dm-bg0;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hp-banner__text{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-story__wrapper{
|
||||||
|
background-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-story{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-stories__title{
|
||||||
|
color: @gb-dm-fg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dismissible-nations-links-container{
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hp-tv-radio__putty{
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nw-o-link-split__text{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nw-c-promo-summary, .nw-c-timestamp{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nw-c-nav__secondary-menuitem-container a{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.share-tools--event-tag{
|
||||||
|
display: none !important;
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
@import "gruvbox-colours.less";
|
||||||
|
|
||||||
|
// Came from here https://github.com/codemirror/CodeMirror/blob/master/theme/gruvbox-dark.css
|
||||||
|
.cm-s-gruvbox-dark.CodeMirror, .cm-s-gruvbox-dark .CodeMirror-gutters { background-color: @gb-dm-bg0; color: @gb-dm-fg3; }
|
||||||
|
.cm-s-gruvbox-dark .CodeMirror-gutters {background: @gb-dm-bg0; border-right: 0px;}
|
||||||
|
.cm-s-gruvbox-dark .CodeMirror-linenumber {color: @gb-dm-bg4;}
|
||||||
|
.cm-s-gruvbox-dark .CodeMirror-cursor { border-left: 1px solid @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark div.CodeMirror-selected { background: @gb-dm-dark-gray; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-meta { color: @gb-dm-light-blue; }
|
||||||
|
|
||||||
|
.cm-s-gruvbox-dark span.cm-comment { color: @gb-dm-dark-gray; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-number, span.cm-atom { color: @gb-dm-light-purple; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-keyword { color: #f84934; }
|
||||||
|
|
||||||
|
.cm-s-gruvbox-dark span.cm-variable { color: @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-variable-2 { color: @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-variable-3, .cm-s-gruvbox-dark span.cm-type { color: #fabd2f; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-operator { color: @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-callee { color: @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-def { color: @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-property { color: @gb-dm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-string { color: @gb-dm-light-green; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-string-2 { color: @gb-dm-light-aqua; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-qualifier { color: @gb-dm-light-aqua; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-attribute { color: @gb-dm-light-aqua; }
|
||||||
|
|
||||||
|
.cm-s-gruvbox-dark .CodeMirror-activeline-background { background: @gb-lm-fg1; }
|
||||||
|
.cm-s-gruvbox-dark .CodeMirror-matchingbracket { background: @gb-dm-dark-gray; color:@gb-dm-bg0 !important; }
|
||||||
|
|
||||||
|
.cm-s-gruvbox-dark span.cm-builtin { color: #fe8019; }
|
||||||
|
.cm-s-gruvbox-dark span.cm-tag { color: #fe8019; }
|
||||||
|
|
|
@ -67,6 +67,10 @@ a{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg-gray-light{
|
||||||
|
background-color: @gb-dm-bg0-soft !important;
|
||||||
|
}
|
||||||
|
|
||||||
.gh-header{
|
.gh-header{
|
||||||
background-color: @gb-dm-bg0;
|
background-color: @gb-dm-bg0;
|
||||||
}
|
}
|
||||||
|
|
100
NOSTOW/firefoxExtentions/browseroverrides/less/gitlab.less
Normal file
100
NOSTOW/firefoxExtentions/browseroverrides/less/gitlab.less
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
@import "gruvbox-colours.less";
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper .container-fluid{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-nav{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
li a{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
li.active a{
|
||||||
|
color: @gb-dm-dark-aqua;
|
||||||
|
border-color: @gb-dm-dark-aqua;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nav-links.sub-nav{
|
||||||
|
&, .container-fluid{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
a, a:visited{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h1, h2, h3, h4, h5, h6, p{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.project-stats .nav > li > a{
|
||||||
|
&, &:link, &:visited{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
&:hover{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
table.table tr th, .file-holder table tr th, .wiki table tr th, .md table tr th, ul.notes .note .note-body .note-text table tr th{
|
||||||
|
background-color: @gb-dm-bg4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-holder .tree-table tr{
|
||||||
|
background-color: @gb-dm-bg1;
|
||||||
|
td{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
&:nth-of-type(2n){
|
||||||
|
background-color: @gb-dm-bg2;
|
||||||
|
}
|
||||||
|
&:hover{
|
||||||
|
td{
|
||||||
|
background-color: @gb-dm-bg3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-holder .tree-item .tree-item-file-name i, .tree-holder .tree-item .tree-item-file-name a{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-holder .tree-commit .tree-commit-link{
|
||||||
|
color: @gb-dm-light-aqua;
|
||||||
|
}
|
||||||
|
|
||||||
|
.file-holder{
|
||||||
|
border-color: @gb-dm-bg0-hard;
|
||||||
|
.file-title{
|
||||||
|
background-color: @gb-dm-bg1;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
a:not(.btn){
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.file-content{
|
||||||
|
background-color: @gb-dm-bg0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.wiki{
|
||||||
|
h1, h2, h3, h4, h5, h6, p, ul, ol, li{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
a, a:link, a:visited{
|
||||||
|
color: @gb-dm-light-aqua;
|
||||||
|
&:hover{
|
||||||
|
color: @gb-dm-dark-aqua;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p code, li code{
|
||||||
|
background-color: @gb-dm-bg4;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
border: 1px solid @gb-dm-bg3;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,13 +1,351 @@
|
||||||
@import "gruvbox-colours.less";
|
@import "./gruvbox-colours.less";
|
||||||
|
@import "codemirror.less";
|
||||||
|
|
||||||
body,
|
html{
|
||||||
.content{
|
background: #fff - @gb-dm-bg0;
|
||||||
font-family: opendyslexic;
|
filter: invert(100%);
|
||||||
background-color: @gb-dm-bg0;
|
|
||||||
color: @gb-dm-fg0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6
|
body{
|
||||||
.h1, .h2, .h3, .h4, .h5, .h6{
|
background: #fff - @gb-dm-bg0;
|
||||||
color: @gb-dm-fg0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img,svg{
|
||||||
|
filter: invert(100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vimvixen-console-frame{
|
||||||
|
filter: invert(100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
//html
|
||||||
|
//{
|
||||||
|
// background: @gb-dm-bg0;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// /*----- DEFAULT TEXT, BORDER & BACKGROUND COLORS -----*/
|
||||||
|
//*
|
||||||
|
//{
|
||||||
|
// color: @gb-dm-fg0;
|
||||||
|
// //text-shadow: 0 0 3px #000;
|
||||||
|
// box-shadow: none;
|
||||||
|
// background-color: transparent;
|
||||||
|
// border-color: @gb-dm-fg4;
|
||||||
|
// border-top-color: @gb-dm-fg4;
|
||||||
|
// border-bottom-color: @gb-dm-fg4;
|
||||||
|
// border-left-color: @gb-dm-fg4;
|
||||||
|
// border-right-color: @gb-dm-fg4;
|
||||||
|
// //font-family: opendyslexic;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//body,
|
||||||
|
//.content,
|
||||||
|
//#content,
|
||||||
|
//main,
|
||||||
|
//.main,
|
||||||
|
//#main,
|
||||||
|
//{
|
||||||
|
// background: transparent !important;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//*:before, *:after
|
||||||
|
//{
|
||||||
|
// background-color: transparent;
|
||||||
|
// border-color: @gb-dm-fg4;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a, a *
|
||||||
|
//{
|
||||||
|
// color: #409B9B;
|
||||||
|
// text-decoration: none;
|
||||||
|
// text-shadow: none;
|
||||||
|
// color: @gb-dm-dark-aqua;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a:hover, a:hover *, a:visited:hover, a:visited:hover *, span[onclick]:hover, div[onclick]:hover, [role="link"]:hover, [role="link"]:hover *, [role="button"]:hover *, [role="menuitem"]:hover, [role="menuitem"]:hover *, .link:hover, .link:hover *
|
||||||
|
//{
|
||||||
|
// color: @gb-dm-light-aqua;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a:visited, a:visited *
|
||||||
|
//{
|
||||||
|
// color: @gb-dm-light-purple;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a.highlight, a.highlight *, a.active, a.active *, .selected, .selected *, [href="#"]
|
||||||
|
//{
|
||||||
|
// color: @gb-dm-fg0;
|
||||||
|
// font-weight: bold;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//h1, h2, h3, h4, h5, h6, h1 *, h2 *, h3 *, strong, [id*="headline"], [class*="headline"], [id*="header"], [class*="header"], [class*="header"] td, .title
|
||||||
|
//{
|
||||||
|
// color: @gb-dm-fg0;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a h1, a h2, a h3, a h4, a h5, a h6, h1 a, h2 a, h3 a, a strong, a[id*="headline"], a[class*="headline"], a[id*="header"], a[class*="header"]
|
||||||
|
//{
|
||||||
|
// text-decoration: underline;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//[class*="error"], [class*="alert"], code, span[onclick], div[onclick]
|
||||||
|
//{
|
||||||
|
// color: @gb-dm-dark-red;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//::selection
|
||||||
|
//{
|
||||||
|
// background: @gb-lm-dark-orange;
|
||||||
|
// //color: #000;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//:focus
|
||||||
|
//{
|
||||||
|
// outline: none;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//.card{
|
||||||
|
// background-color: @gb-dm-bg0-soft;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//.on-light{
|
||||||
|
// background: transparent;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
///*----- MENU & CO BACKGROUND-COLORS -----*/
|
||||||
|
//div[style="display: block;"], div[role="navigation"]
|
||||||
|
//{
|
||||||
|
// background: fade(@gb-dm-bg0-hard, 50%);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//table
|
||||||
|
//{
|
||||||
|
// background: @gb-dm-bg2;
|
||||||
|
// border-radius: 6px;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//table > tbody > tr:nth-child(even), table > tbody > tr > td:nth-child(even)
|
||||||
|
//{
|
||||||
|
// background-color: rgba(0,0,0,.2);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//iframe, embed, nav, label [onclick], nav ul, div[style*="position:"][style*="left:"][style*="visible"], div[style*="z-index:"][style*="left:"][style*="visible"], div[style*="-moz-user-select"], div[role="menu"], div[role="dialog"], span[class*="script"] div[class*=navigation], [id*="menu"], [id*="Menu"], [class*="dropdown"], [class*="popup"], [class="title"], ul[style*="display:"], ul[style*="visibility:"] ul, [id*="nav"] ul, [class*="nav"] ul, ul[class*="menu"], a[onclick][style*="display"], a[id*="ghosteryfirefox"], #ghostery-purple-bubble, #translator-popup, .menu, .tooltip, .hovercard, .vbmenu_popup
|
||||||
|
//{
|
||||||
|
// background: @gb-dm-bg0-soft;
|
||||||
|
// border-radius: 5px;
|
||||||
|
// box-shadow: 1px 1px 5px @gb-dm-bg0-hard;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//header, #header, footer, #footer
|
||||||
|
//{
|
||||||
|
// background: fade( @gb-dm-bg0-hard, 90%);
|
||||||
|
// box-shadow: 0 0 5px #000;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//body > #dialog, body > .xenOverlay
|
||||||
|
//{
|
||||||
|
// background: rgba(19,19,19,.96);
|
||||||
|
// background-clip: padding-box;
|
||||||
|
// box-shadow: 0 0 15px #000, inset 0 0 0 1px rgba(200,200,200,.5), inset 0 0 5px #111;
|
||||||
|
// border: 10px solid rgba(99,99,99,.7);
|
||||||
|
// border-radius: 0;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//[id*="overlay"], [id*="lightbox"], blockquote
|
||||||
|
//{
|
||||||
|
// background-color: rgba(35,35,35,.9);
|
||||||
|
// border-radius: 5px;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//pre, dl, .Message code
|
||||||
|
//{
|
||||||
|
// background-color: rgba(5,5,5,.5);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//
|
||||||
|
///*----- DEFAULT BUTTONS, SEARCHBOXES & CO -----*/
|
||||||
|
//input, select, button, [role="button"], a.button, a.submit, a.BigButton, a.TabLink, .install[onclick]
|
||||||
|
//{
|
||||||
|
// -moz-appearance: none;
|
||||||
|
// -webkit-appearance: none;
|
||||||
|
// transition: border-color 0.3s;
|
||||||
|
// background: @gb-lm-bg4;
|
||||||
|
// color: @gb-dm-fg0;
|
||||||
|
// text-shadow: 0 0px #000;
|
||||||
|
// border: 2px solid @gb-dm-fg4;
|
||||||
|
// border-radius: 4px;
|
||||||
|
// box-shadow: 0 0 2px fade(@gb-dm-bg0, 90%);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a[href="javascript:;"], a[class*="button"]:not(:empty), a[id*="button"]:not(:empty), a[id*="Button"]:not(:empty), div[class*="button"][onclick]
|
||||||
|
//{
|
||||||
|
// transition: border-color 0.3s;
|
||||||
|
// background: @gb-dm-bg4;
|
||||||
|
// color: @gb-dm-fg0;
|
||||||
|
// text-shadow: 0 1px @gb-dm-bg0;
|
||||||
|
// border-color: #333;
|
||||||
|
// box-shadow: 0 0 2px fade(@gb-dm-bg0, 90%);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//a[href="javascript:;"]:hover, a[class*="button"]:not(:empty):hover, a[id*="button"]:hover, a[id*="Button"]:not(:empty):hover, div[class*="button"][onclick]:hover
|
||||||
|
//{
|
||||||
|
// background: #151515;
|
||||||
|
// color: #FFF;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input *, select *, button *, a.button *, a.submit *
|
||||||
|
//{
|
||||||
|
// color: #BBB;
|
||||||
|
// text-shadow: none;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input:hover, input[type="button"]:hover, select:hover, button:hover, [role="button"]:hover, a.button:hover, a.submit:hover, a.BigButton:hover, a.TabLink:hover
|
||||||
|
//{
|
||||||
|
// border: 2px solid #555;
|
||||||
|
// border-top-color: #555;
|
||||||
|
// border-bottom-color: #555;
|
||||||
|
// border-left-color: #555;
|
||||||
|
// border-right-color: #555;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input:focus, select:focus
|
||||||
|
//{
|
||||||
|
// box-shadow: 0 0 5px #077;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input *:hover *
|
||||||
|
//{
|
||||||
|
// color: #F0F0F0;
|
||||||
|
// text-shadow: 0 0 2px #FFF;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input[disabled], select[disabled], button[disabled], input[disabled]:hover, select[disabled]:hover, button[disabled]:hover, input[disabled]:focus, select[disabled]:focus, button[disabled]:focus
|
||||||
|
//{
|
||||||
|
// opacity: 0.5;
|
||||||
|
// border-color: #333;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
///*
|
||||||
|
//input[type="checkbox"], input[type="radio"] {
|
||||||
|
//box-shadow: 0 0 0 2px #444, 0 0 2px 2px #000;
|
||||||
|
//opacity: 0.7;
|
||||||
|
//transition: box-shadow 0.2s, opacity 0.2s}
|
||||||
|
//input[type="checkbox"]:not([disabled]):hover, input[type="radio"]:not([disabled]):hover {
|
||||||
|
//opacity: 0.9}
|
||||||
|
//input[type="checkbox"]:not([disabled]):active, input[type="radio"]:not([disabled]):active {
|
||||||
|
//box-shadow: 0 0 0 2px #999, 0 0 2px 2px #000}
|
||||||
|
//input[type="checkbox"]:checked, input[type="radio"]:checked {
|
||||||
|
//box-shadow: 0 0 0 2px #077, 0 0 2px 2px #000}
|
||||||
|
//input[type="checkbox"][disabled], input[type="radio"][disabled] {
|
||||||
|
//opacity: 0.35}
|
||||||
|
//*/
|
||||||
|
//input[type="checkbox"]
|
||||||
|
//{
|
||||||
|
// border-radius: 1px;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input[type="radio"], input[type="radio"]:focus
|
||||||
|
//{
|
||||||
|
// border-radius: 100%;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input[type="checkbox"], input[type="radio"]
|
||||||
|
//{
|
||||||
|
// min-width: 12px;
|
||||||
|
// min-height: 12px;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//input[type="checkbox"]:checked, input[type="radio"]:checked
|
||||||
|
//{
|
||||||
|
// border-color: #077;
|
||||||
|
// box-shadow: 0 0 5px #077;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//select
|
||||||
|
//{
|
||||||
|
// padding-right: 15px;
|
||||||
|
// background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAeSURBVBhXY5g5c+Z/BiwALo6uAEMDTACXSWgSDAwA4jATh950E30AAAAASUVORK5CYII=) no-repeat right 4px center #060606;
|
||||||
|
// transition: border-color 0.3s, background-position 0.3s;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//button:active, input[type="submit"]:active, input[type="button"]:active, a.button:active, a[class*="button"]:not(:empty):active, a.submit:active, a.BigButton:active, a.TabLink:active, .Active .TabLink
|
||||||
|
//{
|
||||||
|
// background: #292929;
|
||||||
|
// color: #FFF;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//textarea
|
||||||
|
//{
|
||||||
|
// -moz-appearance: none;
|
||||||
|
// -webkit-appearance: none;
|
||||||
|
// background: rgba(0,0,0,.3);
|
||||||
|
// border-radius: 3px;
|
||||||
|
// border: 1px solid #000;
|
||||||
|
// box-shadow: inset 0 0 8px #000;
|
||||||
|
// transition: border-color, background, 0.3s;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//textarea, textarea *
|
||||||
|
//{
|
||||||
|
// color: #C8C8C8;
|
||||||
|
// text-shadow: 0 0 1px gray;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//textarea:hover, textarea:focus:hover
|
||||||
|
//{
|
||||||
|
// border-color: #333;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//textarea:focus
|
||||||
|
//{
|
||||||
|
// background: rgba(0,0,0,.5);
|
||||||
|
// border-color: #222;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//textarea:focus, textarea:focus > *
|
||||||
|
//{
|
||||||
|
// text-shadow: none;
|
||||||
|
// box-shadow: none;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//option, optgroup
|
||||||
|
//{
|
||||||
|
// -moz-appearance: none;
|
||||||
|
// -webkit-appearance: none;
|
||||||
|
// background: none;
|
||||||
|
// color: #666;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//optgroup
|
||||||
|
//{
|
||||||
|
// background: #222;
|
||||||
|
// color: #DDD;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//option:not([disabled]):hover, option:focus, option:checked
|
||||||
|
//{
|
||||||
|
// background: linear-gradient(#333, #292929);
|
||||||
|
// color: #DDD;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//
|
||||||
|
///*----- IMAGE CHANGES -----*/
|
||||||
|
//body, *:not(:empty):not(html):not(span):not(a):not(b):not(option):not(select):not(img):not([style="display: block;"]):not([onclick*="open"]):not([onclick*="s_objectID"]):not([class*="stars"]):not([id*="stars"]):not([id="rating"]):not([class="rating"]):not([class*="SPRITE"]):not([id*="SPRITE"]):not([class*="item"]):not([id*="item"]):not([class*="thumb"]):not([class*="icon"]):not([class*="photo"]):not(.view):not(.text):not([id*="lbImage"]):not([class*="cc-in"]):not([class*="gr-body"]):not([id*="watch"]):not(#globalsearch),
|
||||||
|
//.r3_hm, .gmbutton2 b, .gtab-i, .ph, .bstab-iLft, .csb, #pagination div, [style*="sprite2.png"], #mw-head-base, #mw-page-base
|
||||||
|
//{
|
||||||
|
// background-image: none;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//img
|
||||||
|
//{
|
||||||
|
// opacity: .7;
|
||||||
|
// transition: opacity .2s;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//img:hover, a:hover img, #mpiv-popup
|
||||||
|
//{
|
||||||
|
// opacity: 1;
|
||||||
|
//}
|
||||||
|
|
87
NOSTOW/firefoxExtentions/browseroverrides/less/wiki.less
Normal file
87
NOSTOW/firefoxExtentions/browseroverrides/less/wiki.less
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
@import "gruvbox-colours.less";
|
||||||
|
@import "codemirror.less";
|
||||||
|
|
||||||
|
body{
|
||||||
|
font-family: opendyslexic;
|
||||||
|
background-color: @gb-dm-bg0;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
.entity-list-item:not(.no-hover):hover{
|
||||||
|
background-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.primary-background{
|
||||||
|
background: @gb-dm-dark-blue !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited, button.text-button{
|
||||||
|
color: @gb-dm-light-aqua;
|
||||||
|
fill: @gb-dm-light-aqua;
|
||||||
|
&.active, &:hover{
|
||||||
|
color: @gb-dm-dark-aqua;
|
||||||
|
fill: @gb-dm-dark-aqua;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.button.primary, .button.primary:hover, .button.primary:active, .button.primary:focus{
|
||||||
|
background-color: @gb-dm-light-aqua;
|
||||||
|
border-color: @gb-dm-dark-aqua;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
fill: @gb-dm-fg0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="checkbox"]{
|
||||||
|
//display: inline-block;
|
||||||
|
width: 1em;
|
||||||
|
height: 1em;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
-o-appearance: none;
|
||||||
|
appearance:none;
|
||||||
|
background-color: @gb-dm-bg0-hard;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1em;
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
&::before{
|
||||||
|
content:"";
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
&:checked{
|
||||||
|
background-color: @gb-dm-dark-aqua;
|
||||||
|
&::before{
|
||||||
|
content:"✔";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu{
|
||||||
|
background-color: @gb-dm-bg0;
|
||||||
|
border-color: @gb-dm-bg0-hard;
|
||||||
|
a, button{
|
||||||
|
color: @gb-dm-fg0;
|
||||||
|
&:hover{
|
||||||
|
background-color: @gb-dm-bg0-soft;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-sort-container .list-sort{
|
||||||
|
border-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
.list-sort-container .list-sort-dir{
|
||||||
|
border-color: @gb-dm-bg0-hard;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Codemirror, pre, #markdown-editor-input, .editor-toolbar, .code-base, code, span.code{
|
||||||
|
font-family: Iosevka;
|
||||||
|
}
|
|
@ -10,54 +10,88 @@
|
||||||
},
|
},
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
{
|
{
|
||||||
"matches": ["*://wiki.archlinux.org/*"],
|
"matches": ["*://*.archlinux.org/*"],
|
||||||
"css": [ "css/archwiki.css" ]
|
"css": [ "css/archwiki.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://*.amazon.com/*","*://*.amazon.co.uk/*"],
|
"matches": ["*://*.amazon.com/*","*://*.amazon.co.uk/*"],
|
||||||
"css": [ "css/amazon.css" ]
|
"css": [ "css/amazon.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matches": ["*://*.bbc.com/*","*://*.bbc.co.uk/*"],
|
||||||
|
"css": [ "css/bbc.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://*.duckduckgo.com/*","*://*.duckduckgo.co.uk/*"],
|
"matches": ["*://*.duckduckgo.com/*","*://*.duckduckgo.co.uk/*"],
|
||||||
"css": [ "css/duckduckgo.css" ]
|
"css": [ "css/duckduckgo.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://*.reddit.com/*"],
|
"matches": ["*://*.reddit.com/*"],
|
||||||
"css": [ "css/reddit.css" ]
|
"css": [ "css/reddit.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://*.wikipedia.org/*"],
|
"matches": ["*://*.wikipedia.org/*"],
|
||||||
"css": [ "css/wikipedia.css" ]
|
"css": [ "css/wikipedia.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://stackoverflow.com/*","*://*.stackoverflow.com/*"],
|
"matches": ["*://stackoverflow.com/*","*://*.stackoverflow.com/*"],
|
||||||
"css": [ "css/stackoverflow.css" ]
|
"css": [ "css/stackoverflow.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://youtube.com/*","*://*.youtube.com/*"],
|
"matches": ["*://youtube.com/*","*://*.youtube.com/*"],
|
||||||
"css": [ "css/youtube.css" ]
|
"css": [ "css/youtube.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matches": ["*://wiki.local.irmplc.com/*"],
|
||||||
|
"css": [ "css/wiki.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://protonmail.com/*","*://*.protonmail.com/*"],
|
"matches": ["*://protonmail.com/*","*://*.protonmail.com/*"],
|
||||||
"css": [ "css/protonmail.css" ]
|
"css": [ "css/protonmail.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matches": ["*://github.com/*","*://*.github.com/*"],
|
"matches": ["*://github.com/*","*://*.github.com/*"],
|
||||||
"css": [ "css/github.css" ]
|
"css": [ "css/github.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matches": ["*://gitlab.irmtechies.net/*"],
|
||||||
|
"css": [ "css/gitlab.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"matches": ["*://*/*"],
|
"matches": ["*://*/*"],
|
||||||
"exclude_matches": ["*://wiki.archlinux.org/*",
|
"exclude_matches": ["*://*.archlinux.org/*",
|
||||||
"*://*.amazon.com/*","*://*.amazon.co.uk/*",
|
"*://*.amazon.com/*","*://*.amazon.co.uk/*",
|
||||||
|
"*://*.bbc.com/*","*://*.bbc.co.uk/*",
|
||||||
"*://*.duckduckgo.com/*","*://*.duckduckgo.co.uk/*",
|
"*://*.duckduckgo.com/*","*://*.duckduckgo.co.uk/*",
|
||||||
"*://*.reddit.com/*",
|
"*://*.reddit.com/*",
|
||||||
"*://*.wikipedia.org/*",
|
"*://*.wikipedia.org/*",
|
||||||
"*://stackoverflow.com/*","*://*.stackoverflow.com/*",
|
"*://stackoverflow.com/*","*://*.stackoverflow.com/*",
|
||||||
"*://youtube.com/*","*://*.youtube.com/*",
|
"*://youtube.com/*","*://*.youtube.com/*",
|
||||||
|
"*://wiki.local.irmplc.com/*",
|
||||||
"*://protonmail.com/*","*://*.protonmail.com/*",
|
"*://protonmail.com/*","*://*.protonmail.com/*",
|
||||||
"*://github.com/*","*://*.github.com/*"],
|
"*://github.com/*","*://*.github.com/*",
|
||||||
"css": [ "css/global.css" ]
|
"*://gitlab.irmtechies.net/*"
|
||||||
|
],
|
||||||
|
"css": [ "css/global.css" ],
|
||||||
|
"run_at": "document_start"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matches": ["*://*/*"],
|
||||||
|
"js": [ "js/codemirror.js" ],
|
||||||
|
"run_at": "document_start"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
||||||
.view-lines{
|
|
||||||
font-family: Iosevka !important;
|
|
||||||
}
|
|
|
@ -1,592 +0,0 @@
|
||||||
/*bitbucket.org dark css theme*/
|
|
||||||
|
|
||||||
body, aside {
|
|
||||||
background: #222 !important;
|
|
||||||
background-color: #222 !important;
|
|
||||||
color: #bbb !important;
|
|
||||||
}
|
|
||||||
h1, h2, h3, h4, h5, span {
|
|
||||||
background-color: transparent !important;
|
|
||||||
color: #FFC963 !important;
|
|
||||||
}
|
|
||||||
ul, ol, li, tr, th, td, tbody, table {
|
|
||||||
background-color: transparent !important;
|
|
||||||
color: #bbb !important;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
background-color: transparent !important;
|
|
||||||
color: #bbb !important;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
background-color: transparent !important;
|
|
||||||
color: #50AFFC !important;
|
|
||||||
}
|
|
||||||
code {
|
|
||||||
background-color: #1E1E1E !important;
|
|
||||||
}
|
|
||||||
pre, .pre {
|
|
||||||
background-color: #1E1E1E !important;
|
|
||||||
color: #888 !important;
|
|
||||||
}
|
|
||||||
div {
|
|
||||||
background-color: #2B2B2B !important;
|
|
||||||
background: transparent !important;
|
|
||||||
color: #bbb !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-button {
|
|
||||||
background: -webkit-linear-gradient(top,rgb(111, 111, 111) 0,rgb(44, 44, 44) 100%) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background: url("http://i.imgur.com/7Prf6.jpg") #222
|
|
||||||
top left repeat-y fixed !important;
|
|
||||||
color: #8a8 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
background: rgba( 0,0,0, 0.5 ) !important;
|
|
||||||
border-top: 1px solid #444 !important;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero,
|
|
||||||
.features,
|
|
||||||
.pricing .users,
|
|
||||||
header.subhead.row {
|
|
||||||
background: rgba( 0,0,0, 0.1 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav#dashboard-tabs,
|
|
||||||
nav#repo-tabs,
|
|
||||||
.aui-navbar {
|
|
||||||
background-color: rgba( 80,80,80, 0.1 ) !important;
|
|
||||||
border-top: 1px solid #000 !important;
|
|
||||||
border-bottom: 1px solid #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-lozenge,
|
|
||||||
.bb-list .branch,
|
|
||||||
.aui-badge {
|
|
||||||
color: #ccc !important;
|
|
||||||
background-color: #444 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-lozenge.selected {
|
|
||||||
background: #aca !important;
|
|
||||||
color: #222 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog-title,
|
|
||||||
.bb-list .branch a,
|
|
||||||
.aui-navbar a {
|
|
||||||
color: #888 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-header {
|
|
||||||
background: rgba( 80,80,80, 0.2 ) !important;
|
|
||||||
border-bottom: 1px solid #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-nav-vertical a,
|
|
||||||
.aui-dropdown2.aui-style-default a,
|
|
||||||
.aui-header a {
|
|
||||||
color: #8a8 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav#dashboard-tabs a:hover,
|
|
||||||
nav#repo-tabs a:hover,
|
|
||||||
.aui-nav a:focus,
|
|
||||||
.aui-nav-vertical a:hover,
|
|
||||||
.aui-nav-vertical .active,
|
|
||||||
.aui-dropdown2.aui-style-default a:hover,
|
|
||||||
.aui-header a:hover,
|
|
||||||
.aui-dropdown2.aui-style-default .active,
|
|
||||||
.aui-header .active {
|
|
||||||
background: #242 !important;
|
|
||||||
background: -moz-linear-gradient( top, #242, #353 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-dropdown2.aui-style-default {
|
|
||||||
background: rgba( 30,30,30, 0.96 ) !important;
|
|
||||||
border: 1px solid #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-style-default .aui-dropdown2-section + .aui-dropdown2-section {
|
|
||||||
border-top: 1px solid #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clone-url input,
|
|
||||||
.aui-header .aui-quicksearch input {
|
|
||||||
background: #444 !important;
|
|
||||||
color: #aaa !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.user-or-email,
|
|
||||||
.clone-url input {
|
|
||||||
border-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clone-url input::-moz-selection,
|
|
||||||
.aui-header .aui-quicksearch input::-moz-selection {
|
|
||||||
background-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-control a,
|
|
||||||
.aui-button, a.aui-button,
|
|
||||||
.aui-button:focus, a.aui-button:hover {
|
|
||||||
background: -moz-linear-gradient(
|
|
||||||
center top ,
|
|
||||||
rgb(30, 30, 30) 0%,
|
|
||||||
rgb(40, 40, 40) 100%
|
|
||||||
) repeat scroll 0% 0% transparent !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
color: #888 !important;
|
|
||||||
text-shadow: 0px 1px 0px #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-control a:hover,
|
|
||||||
.filter-control li[aria-pressed="true"] a {
|
|
||||||
color: #444 !important;
|
|
||||||
background: #888 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chzn-drop,
|
|
||||||
.chzn-container,
|
|
||||||
.chzn-single,
|
|
||||||
.aui-inline-dialog .contents {
|
|
||||||
background: rgba( 30,30,30, 0.9 ) !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type="url"], input[type="email"], input[type="password"],
|
|
||||||
input[type="text"], input[type="search"], textarea {
|
|
||||||
background: rgba( 0,0,0, 0.4 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
form.aui .text, form.aui .password, form.aui .textarea,
|
|
||||||
form.aui .select, form.aui .multi-select {
|
|
||||||
box-shadow: 0px 1px 3px rgb( 80,80,80 ) inset !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
color: #8a8 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset label {
|
|
||||||
color: #888 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.repo .slug {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #597 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #486 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stash,
|
|
||||||
.pricing,
|
|
||||||
.tourSection,
|
|
||||||
.login-box,
|
|
||||||
.workflow-box,
|
|
||||||
.toolbar,
|
|
||||||
.linenos,
|
|
||||||
.readme.file code,
|
|
||||||
.readme.file pre,
|
|
||||||
#wiki-content pre,
|
|
||||||
#wiki-content code,
|
|
||||||
.docutils.literal,
|
|
||||||
.literal-block,
|
|
||||||
.plaintext,
|
|
||||||
.markItUpHeader,
|
|
||||||
#user-actions,
|
|
||||||
.user-list ol,
|
|
||||||
.bb-list .form,
|
|
||||||
.bb-list > tbody > tr,
|
|
||||||
.repo-links-list tr,
|
|
||||||
#active-sessions tr,
|
|
||||||
#inactive-sessions tr,
|
|
||||||
#ssh-keys tr,
|
|
||||||
#group-access tr,
|
|
||||||
#user-access tr,
|
|
||||||
.clone-url,
|
|
||||||
#invite-repo-box,
|
|
||||||
.newsfeed-banner,
|
|
||||||
#share-dialog,
|
|
||||||
.dialog-page-body,
|
|
||||||
.invite-users-box {
|
|
||||||
background: rgba( 80,80,80, 0.4) !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
color: #8a8 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#share-dialog {
|
|
||||||
background: rgba( 40,40,40, 0.9) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#repo-content {
|
|
||||||
background: rgba( 80,80,80, 0.2) !important;
|
|
||||||
border-left: 1px solid #000 !important;
|
|
||||||
border-right: 1px solid #000 !important;
|
|
||||||
margin-left: -1px !important;
|
|
||||||
margin-right: -1px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabbed-filter-widget .tabbed-filter {
|
|
||||||
background: rgba( 80,80,80, 0.2 ) !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iterable-item,
|
|
||||||
.tabbed-filter-widget.filter-list {
|
|
||||||
background: rgba( 80,80,80, 0.2 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui th {
|
|
||||||
border-bottom: 1px solid #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bb-list > tbody > tr:first-child {
|
|
||||||
border-top: 1px solid #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#providers a,
|
|
||||||
.pricing .users,
|
|
||||||
#pricing-row,
|
|
||||||
.features,
|
|
||||||
.features ul li,
|
|
||||||
.features ul,
|
|
||||||
.questions,
|
|
||||||
.hero,
|
|
||||||
.cta,
|
|
||||||
.featuredItem,
|
|
||||||
.login-box .form-container,
|
|
||||||
.workflow-box .form-container,
|
|
||||||
.openSource,
|
|
||||||
.file-source,
|
|
||||||
#wiki-content,
|
|
||||||
.literal-block,
|
|
||||||
.issue-attrs,
|
|
||||||
#issue-main-content,
|
|
||||||
#id_new_comment,
|
|
||||||
#issues h1,
|
|
||||||
.main,
|
|
||||||
.markItUpEditor,
|
|
||||||
.markItUpButton.separator,
|
|
||||||
.textarea-preview,
|
|
||||||
#account-admin-header,
|
|
||||||
#notification-body,
|
|
||||||
#notification-header,
|
|
||||||
.profile-header,
|
|
||||||
.aui h2,
|
|
||||||
.bb-list.form,
|
|
||||||
.aui-item,
|
|
||||||
.aui-nav,
|
|
||||||
.chzn-single div,
|
|
||||||
.avatar-view,
|
|
||||||
#pjax-main,
|
|
||||||
#add-download,
|
|
||||||
#tag-downloads .empty,
|
|
||||||
.aui-lozenge,
|
|
||||||
.bb-list .branch,
|
|
||||||
.bb-list .branch-header,
|
|
||||||
#commits .filter-box input,
|
|
||||||
#commit-filter input,
|
|
||||||
#source-path h1,
|
|
||||||
.iterable-item,
|
|
||||||
.aui-badge,
|
|
||||||
#repo-activity, #invite-repo-box,
|
|
||||||
.clone-url,
|
|
||||||
.stats,
|
|
||||||
.dialog-title,
|
|
||||||
.dialog-button-panel,
|
|
||||||
.metadata,
|
|
||||||
.newsfeed,
|
|
||||||
.newsfeed .commit,
|
|
||||||
.newsfeed .commit .changeset,
|
|
||||||
.newsfeed .news-item,
|
|
||||||
.newsfeed .news-item p.additional-info,
|
|
||||||
.repo-filter-widget,
|
|
||||||
a.help-link,
|
|
||||||
.commit-metadata,
|
|
||||||
#general-comments h1,
|
|
||||||
#commit-summary h1,
|
|
||||||
.refract-container,
|
|
||||||
.aui-tabs.horizontal-tabs > .tabs-menu,
|
|
||||||
.fancybox-skin .diffract-sbsdiff,
|
|
||||||
.fancybox-skin .diffract .scrollable-file-pane-lines,
|
|
||||||
.tabbed-filter-widget .handle,
|
|
||||||
.tabbed-filter-widget input.filter-box {
|
|
||||||
border-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.refract-container .line-numbers,
|
|
||||||
.refract-container .line-numbers-skipped,
|
|
||||||
.bb-udiff .heading {
|
|
||||||
background: rgba( 0,0,0, 0.5 ) !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.refract-container .line-numbers {
|
|
||||||
color: #080 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre,
|
|
||||||
.refract-container pre.source {
|
|
||||||
/* font-family: Ubuntu Mono, Monospace, Courier New !important; */
|
|
||||||
color: #666 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit-files-summary .lines-removed,
|
|
||||||
.commit-files-summary .lines-added,
|
|
||||||
.refract-container .deletion pre.source del,
|
|
||||||
.refract-container .addition pre.source ins {
|
|
||||||
border-radius: 4px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre.addition,
|
|
||||||
.refract-container .addition pre.source {
|
|
||||||
color: #8a8 !important;
|
|
||||||
background: rgba( 44,66,44, 0.5 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre.change ins,
|
|
||||||
.commit-files-summary .lines-added,
|
|
||||||
.refract-container .addition pre.source ins {
|
|
||||||
color: #bfb !important;
|
|
||||||
background-color: #484 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre.deletion,
|
|
||||||
.refract-container .deletion pre.source {
|
|
||||||
color: #a88 !important;
|
|
||||||
background: rgba( 66,44,44, 0.5 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre.change del,
|
|
||||||
.commit-files-summary .lines-removed,
|
|
||||||
.refract-container .deletion pre.source del {
|
|
||||||
color: #fbb !important;
|
|
||||||
background-color: #a66 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.skipped-container .ellipsis {
|
|
||||||
border: 1px solid #000 !important;
|
|
||||||
box-shadow: 0px 0px 0px 2px rgb(0,0,0) !important;
|
|
||||||
color: #aaa !important;
|
|
||||||
background: rgba( 0,0,0, 1.0 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre.change {
|
|
||||||
color: #888 !important;
|
|
||||||
background: rgba( 66,66,66, 0.5 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin {
|
|
||||||
background: rgba( 40,40,40, 0.9 ) !important;
|
|
||||||
color: #888 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract .page {
|
|
||||||
border-color: #000 !important;
|
|
||||||
background: #222 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancybox-skin .diffract pre,
|
|
||||||
.fancybox-skin .diffract pre.change,
|
|
||||||
.fancybox-skin .diffract pre.change del,
|
|
||||||
.fancybox-skin .diffract pre.change ins,
|
|
||||||
.fancybox-skin .diffract pre.adddition {
|
|
||||||
border-top: 0px solid #000 !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
ol.clearfix {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.changeset-hash {
|
|
||||||
border: 1px solid #000 !important;
|
|
||||||
padding: 1px 5px 1px 5px !important;
|
|
||||||
border-radius: 4px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-tabs.tabs-menu.menu-item,
|
|
||||||
.aui-tabs.tabs-menu,
|
|
||||||
.aui-tabs a {
|
|
||||||
border-color: #000 !important;
|
|
||||||
background: #222 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-tabs .menu-item:first-child a,
|
|
||||||
.aui-tabs .menu-item:last-child a {
|
|
||||||
border-radius: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chzn-single b {
|
|
||||||
background-color: rgba( 0,0,0, 0.9 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.aui-tabs .active-tab a,
|
|
||||||
.aui-tabs a:active,
|
|
||||||
.aui-tabs a:focus {
|
|
||||||
background: rgba( 0,0,0, 0.9 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer-logo,
|
|
||||||
#wiki-content,
|
|
||||||
.profile-header,
|
|
||||||
.bb-list thead,
|
|
||||||
.bb-list thead .branch-header,
|
|
||||||
.iterable-item:hover,
|
|
||||||
.aui-navbar a:hover,
|
|
||||||
a.help-link:hover {
|
|
||||||
background-color: rgba( 0,0,0, 0.3 ) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iterable-item {
|
|
||||||
color: #8a8 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bb-list .fade-left,
|
|
||||||
.bb-list .fade-left:before {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bb-list thead a {
|
|
||||||
color: #444 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.newsfeed .news-item .icon
|
|
||||||
{
|
|
||||||
background-color: #222 !important;
|
|
||||||
border-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.newsfeed .news-item .icon:after
|
|
||||||
{
|
|
||||||
background-color: rgba(0,0,0, 0) !important;
|
|
||||||
border-color: rgba(0,0,0, 0) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.news-item .icon:after {
|
|
||||||
background-image: url('data:image/png;base64,\
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAABIAAAB+CAYAAAAp+EF2AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A\
|
|
||||||
/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAABs9JREFUaN7tmGtsU2UYx/+9rD0bvWx069Y1\
|
|
||||||
hW2FDWZVJC4oHRBQFwGlbDKpfEAhkAA62AcYiiCgjWRADBcBlUsAEy6BsM0ElmBEo5tBIYQlU3dh\
|
|
||||||
bHPZKmUDutbRrmvrh3HentNzTtshJEr6Js269/T5n+e9PL/zfw/wiJpIoD840jgRn4BYJQVl1kCW\
|
|
||||||
p4RURyHoC8DfO4jBZhc89X0I9A9x4kXhIvKCFCgsOogSxPyp+gJw19jhvXKXpcH6tbwgBcoFeiJi\
|
|
||||||
UGei2noEFeZVoSEkiKFcoIe8IIV1Ayl9I7FKCoVFx7o4Rq2HeUwBb2YKiw6+ZhcC/UNBACKSEWXW\
|
|
||||||
CA6Hd7YTxKDMGk5GkOUpyXDGqPUAALOhgDez+j+vkJiB2lvsOdTY8oOplaZgXeevwWjNcnJJMLXS\
|
|
||||||
FNTY8oNkpcNTdnpdEYfk9Lrg9HB/Q4bm7x2EVEfh7ao15OKc8bNwrHg3Gh1NmHm0lBPs7x0k30lG\
|
|
||||||
g80uCGXHl0F4DBHy1Pch6AvEvGpBXwCe+j7yv+TB361Bb2BLwDUEeb6KXOz3uOD1D6L2xiW03mln\
|
|
||||||
CbmrejDUPkB29iMrkcdStP8KI/+99gQTkiVEEzKW5jrbTYuxUMtLyEhNYdFBrJKCgxEhQh4r3s2L\
|
|
||||||
23BCisMJGd7UciWqrUdgNVk415gxhEeSVBnprLYeId9N6RMAAHvn2DBGrcf2+v3gi5HyZSH05Jg9\
|
|
||||||
fiZLKCIhAWDm0VKoqeG0bbMqYNJOQKOjCfNPLhUkpJRJO1qo0dEUoqTHhVONNSi7sDEiIUXM5U+p\
|
|
||||||
yOWsHJ0N38a8u72F3uXkASkK9A/BXWPnBPCJAIC7xk5EOJNNb/sRlgjihIx7yEgekm4GdWZUDxkT\
|
|
||||||
IffOtnF4FE5IqRAhrSYLbC+th1quJGhh8ogmJG39WB6S5pDVZIHVZIHTO1z5ZkMBnN5+XGi9xCEk\
|
|
||||||
R0iSKmORscvZg8VVa9DoaEKFeRW+vPo1xxYyCSnoh1VUiMcquQIGtT6mjRVMLh+HGVOmEQbZZlUQ\
|
|
||||||
K0xze/7JpSysDNk9uLfrBgCIWISs110hwV3Obqwzr2Tx26TNYwmNiJD0s+10Yw1rssMJ+cge2XFC\
|
|
||||||
xgn5//SQmqQUctZ9KA8JAJRUjhNv7MPZN796eA8pEYlxcN4OTNY9jWv2RkEPKQ6nnUquwOnSA5iY\
|
|
||||||
Nh4AsO3lDXh13Ez81PkLVtduFCQkx0M+nzkJs7ILMTEtF+dbvsOS5xbij9uteKe6HIN+n+AcisP9\
|
|
||||||
4KX2Ouy+fBg6hRbLJr8Fu9uBhWdWoN/rjnjK5vWQth93ISVRjVeM07HwzArY3Y6op+yYCCm0MUfk\
|
|
||||||
IYVa3EM+sYTUaymULTJidmE6nslTw+P1o6XDjdq6W9h7og3dDk90Qi4rGYs9HzyLRErCm8p9jx+r\
|
|
||||||
tzXg0LlOYUIuKxmLg1snxzQnyzdfo8VYQkG9lkLr+SL+TKjsB2+r2lmZjZ97kR5m6D1k2SKjsEj2\
|
|
||||||
x8MfWhBAIiVB2SIjFyOzC9OFRSSjhj+J2ewzLiOGCOVmKYRFAKD7c+Au24wyY/grU6aNKiJIyJYO\
|
|
||||||
BgE1rwH3vo8qwowhQrV1jHeuo54CxElA+0cRM2HGxLb8AhuTb/lF3Q4PVm9riLlIV29rICKcyT50\
|
|
||||||
rhPLN1/DfY8/YiaMXf14izZOyBEQUitPgNWQgUJNMnKVSfD6A+gc8KCu7x5Odf0Fh9cXnZDFmWlY\
|
|
||||||
n5cFSsJfhh5/AJXNHajquS1MyOLMNGzOz4lpTrb+fpMWY3tIrTwB6/OyAACji+Yia0slJIqQIwvv\
|
|
||||||
W5+XBa08geshrYYMMpyUorlQm2fAuHMfJAolRhfNhWHdJqjNM5BoHHZylEQMqyGDW/2FmmTS2XNg\
|
|
||||||
F/xuFxKNuTBVfQvDuk0AgDsXz8PdcA18MURobBIVqqe2FnTttLFrrK0FXTs+YfUxYwRdlSyd7bkl\
|
|
||||||
CiVrzgQJ2TlAChFpJVZkriwnmfjdLsjSdcj94jjrBswYIlTXdy90zp86ncxJy4rFaFv7LhGTZYSE\
|
|
||||||
mDEi5vJ/M3USKImYBDAnNrzP4w9g3s/X6V0uemQbkuUh6W0/whJ5fEUbJ2SckEJNqk6GLCP0YjMm\
|
|
||||||
QnIQIZcj2/YZcir3hAxdLIRkrYZYjLEf2pA0IR8DTb+xrkUkpGSUAjmf7gKVPexY9e+therFaXBf\
|
|
||||||
v4quHTZBQnJO2Un5JigLXkBOthHO+h+geb0EnvY2dGx5H8EhX+yEdF25DMep40hITUOqpRS+3tu4\
|
|
||||||
uaEc/r+5p2wmIaVM2uUqkwAA9sP7IVGqoJpixs0N5fD13ubNIiohY2nhhCQe0uH1obK5I+YirWzu\
|
|
||||||
ICJxQsbW/gFKZSJzOvvOIAAAAABJRU5ErkJggg==') !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#repo-overview #repo-stats .stats > li.branches > a {
|
|
||||||
background-image: url('data:image/png;base64,\
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A\
|
|
||||||
/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAuVJREFUWMPtl0FIlEEUx/9v9tvdyNA8pOIK\
|
|
||||||
GxKUIS0YaYTkYSkvVijWRekSBpUdgujaNZAwKLp0kVBEFDU8e5DWtd2lS5TkRWpbD0kUQZHutzOv\
|
|
||||||
w7eupt+6862fdnGuM/PmN2/mvf97wP7YH/930B6dw8WeTTs8pJCt3J7DwRCE4Yc0V/Az+U6bgZzC\
|
|
||||||
Nd0dgvB4AQAqk0bsWXc+ewwAgcYOBJu7IAxvdpoh0yuYe3LNNUAGgMZbA/AdKgcJz/oEM1hmMPu4\
|
|
||||||
3RYw0NiBo+evQ3iMLUZl+g+i/VcLcgjd990MBwBEBPIYaOodtL1UsLnLFg4AhNePmrOdBc/VAmy6\
|
|
||||||
8xIg+6VEBGH47I3ngbP2CdScaXcHECRA5H7Ab36RogGXEpNgVvYflBlKmrZzSma2tfv1/bQ7gKnY\
|
|
||||||
GJSZtgdUErGnXbbBl4qP57+YklicfuEKIAFAtL9zi6dYSXyZG8m7MRkZQvrXD1u4VHzCVSXJ5cFQ\
|
|
||||||
dx9KA3VgJRHpu6KVqJsfTOX+8PfFt/gw+lCbQTfN0Jqh5fkZMKuN/4u2O6ThxnMADGaF5fkZR3AA\
|
|
||||||
YDiNPGWuAsxgJbW8bvgPAsxQMoOFqT7HEiscp4ZsbiMSBeGOXbwNX0k5mBmp+HhRBYoTQAYAX8lh\
|
|
||||||
Ky+uJ2G2W1cb7kFVqBUgAksTychQUblSOA2SivqwpR4eA8cv3d88n4W7ieqGNoAEWCkkoyNFl3eG\
|
|
||||||
LlxtuAfVpy//oyhH6loA0Nrfsp61tRdVpy5Y0sgKS4lJpGJjRauNdpBUN7RtkTsiQsXJFhwoq4Rc\
|
|
||||||
/Y2yYMhaQwRWEkuJSXyaGdhRcawFWBvu2VY3SwMnsrKnrIg1V5GMjmz0HO2qByvrw4X/QbY2TMXH\
|
|
||||||
8fn1oGtthRagRs7Dt4VZfHz1yPV+R69YSEzkFX2rajE3wpGbzZge4JsxS0HyeDcZGd61LtFRsXDu\
|
|
||||||
3iiE159rflTGRHJ22JVgcK2a2ese26lR3iuw/eHW+Au3YRIaeXby5gAAAABJRU5ErkJggg==\
|
|
||||||
') !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#repo-overview #repo-stats .stats > li.forks > a {
|
|
||||||
background-image: url('data:image/png;base64,\
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A\
|
|
||||||
/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAxxJREFUWMPtlz1P21AUht97fe18FNsJcaQ6\
|
|
||||||
X7QsJUOHDggoS8sfaAdSqazlP/Uf0AGG7h2roqBuXUIrdYCQBKlBJHHVEH/dDiFQJ3FiIIk6cEbr\
|
|
||||||
Sve557znnNfAfdzHffxfQSnjobkEp5TxQOdnDSgqGjJrb6DmniIcezgWlM0aUBBEKKknmH/0DO1G\
|
|
||||||
DeWDXRjVQ+7aNpkpIKWMi6oGgYqe7+GYDiEURSiWgqQmQZiI4y87vpBkWmBRVUd6+TUkWfNmkImQ\
|
|
||||||
5CQo64K7joVWpdSDRD8kmRZYJKZ3M9SXQQAgfbe6joXm0Tf8/PQe7cYpBcAnWmJKGZfTS8isFRBV\
|
|
||||||
r8FI0OfzKTZJD25hfQtyOg8ieMFc20KnVYfrWpfnRYQU7brEdrfE5YM9dH7XB3DZneEyS8itb0FO\
|
|
||||||
5a8uBQDHMWE2z3DRrOLk60eYxhkAIKTqWNzYRnRev4I73v8Ao1rCsCZhN+lAT1UIQUjWkF3dhJLO\
|
|
||||||
gwqiJ2tG5RDlg120z2uwjDpcx6aXmne4a8G1LLSqo+H8AIkka1h8sY1wXMcoIV2Vqw+uLyse0XMA\
|
|
||||||
3DbRqo2H880gESWE4zqi2kJwoQ+HI4NnTBiV7/j14/PQsRIEkBPOb6XJjlG/3Ay+WeFWq45ycRdW\
|
|
||||||
uwHXscc+fwq7mNx5tEwNsNc0cmoJlA03AV2zUICc9j8ztklc20L7vAYQMjIfRBAhKQkIgtR9LROh\
|
|
||||||
pPPIrW/57VfSMwsPElkc7e+MNAq+9aCUcUnRQJg0spCSnEB2pQAllQcVRc/qalVKKBf30DHq6Gma\
|
|
||||||
E4JITMfjl9sIK1p3zPjs4CCCGS9ggblyOo/c87eDkH0bZGA0MXGsUZiIWaAC43I6j+zqJsJqCpJ6\
|
|
||||||
XfJAo2kWboYKjEuyhnA81d0sujebQSCn6mZcxyYXjVNiGnX32DGRXSkgEtc9vu+2I2fyhvWfbGaW\
|
|
||||||
X0GSk74aDLJ9CKYThArMleTBSRCJ6VjceIfQXBIdo46LZhXl4t7N3MwEgvfKPlQR5h+0aiWUix63\
|
|
||||||
M9ufJj91ubYJ48RjFmjwxTezH3eNU4H9P1B3ac6/LwO7m/G8z24AAAAASUVORK5CYII=\
|
|
||||||
') !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#repo-overview #repo-stats .stats > li.followers > a {
|
|
||||||
background-image: url('data:image/png;base64,\
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A\
|
|
||||||
/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAtVJREFUWMPtWL1y00AY3DvdSTZYdgxyEf+k\
|
|
||||||
TcIMHQwJoeIFoEgKeDEa+hTJGzAwVJmkpcApAoU9kTNYGNsyGFnSicKxYyey45MEpMhX2vOd9r7d\
|
|
||||||
21sJuOFFklyMUhbwnAGFcvjChduxIIQX6xksSXB6aQ3lzR1oGQNOp4Gv79+i3z4jAIL/DpBnDZQ3\
|
|
||||||
d5ArPwRl6vnqavyNJwVQUTi0jAHKVBACUKZC0w1QxsSNAHi5NN1A+dELaBkjltZpUvobTotf/MY4\
|
|
||||||
VN2ITTNNSn+lxy+h6QWQyVkRcjM0qCjDaRGFTy+u8Ng6ZItSOPK3sEotLU/RO6nDysY26gAG3Wao\
|
|
||||||
1Vznl0TW30InyDhUvRAKUvguBt0mfM8N7R3YFupHe7DNYwjvKkgWyd/Cdjpjq1Th0JaKM/vS94b/\
|
|
||||||
fXn3JtTUF6KYBAAhJLLm5/UFQUwNut0hBYRxZJfXQTlPxCeF58LpWvjdMVE/2oPTsxB2JS40E6oM\
|
|
||||||
dVh5soN0fnmm3mTAdU+rqB/tof+jAde2IPyIh2QSpKobSOWLqGxsR5rm1NQO92GbVQjPo/PChKyq\
|
|
||||||
CFWY0EtrWNl6LQVSZmpxjDoQvkfs02PUD/fh9JrXinys5V8dfKt+hG0ew2mf0UXARb5JhO8Rx7Yg\
|
|
||||||
ZnhbqF3dyaGwugU1nfv7Vx2lLEhl7ksdFMo41Ix8eIgEcGY4uBakfEaMBHBWOBCei36rgZ9WDf1W\
|
|
||||||
44oEomREFoXey9nv8il17O/joDB50qNkRFmARAuhdwSudrA79janbYqa72Ll6StkS+vjDY1odtqm\
|
|
||||||
CAsH8SlmKtTzCfr+AP1WA536p0lwBEAgPI/Y56C7p1UI141Es/xbnTfAoGdByxbQOzuZa7zC94ht\
|
|
||||||
VoPawS4qG9tI5Yrgd+VsRjqfjO7lwoPnaH7+MMpxc68rqrCA6wbS+SKM1WeTfYl+OJh6oJYxAqow\
|
|
||||||
mRdyErHvn382Ibit27qoP2ZXVrn0aeDSAAAAAElFTkSuQmCC\
|
|
||||||
') !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#repo-overview #repo-stats .stats > li.tags > a {
|
|
||||||
background-image: url('data:image/png;base64,\
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A\
|
|
||||||
/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAA9dJREFUWMPtl79v20YUx788HkkpECVbZdrI\
|
|
||||||
vwKkGeKhc21katGt6FRnyZylf0Xk/BNdMtdAkwIt0K1I0aVGnAIdArRWkzZAJFlUa0qRSMkij+Rd\
|
|
||||||
B0mWZEkUaffH4i/AhXx37/PevXu8Ay51qUtFSjr7ghAqlJwBmShTxiH34bctcB5I/wsgIVToq7ew\
|
|
||||||
tn0HWsaYMmaOhcrBIzi1EnjQh4wK6J8IjJ6Fu377LvTVTUjytMN0fgUA8Md3n6PXqkuEUB4V0FBe\
|
|
||||||
28SrJw/Ra9UlAOJcgErWwNr2HeirmyB0djYkWYGqGwBVJ8bk1t4DGbybJVlRoC2vwOtYfJj5pIAS\
|
|
||||||
oSq0jHEKF4YMzGlABAEkSqHqb0GWVUAazC8EyNXr0DIGZEWdGANgZA9AzVzF+tYOyiGDUyuJJJB0\
|
|
||||||
MkWjccxu4NX3D+G260jlruHGh/eQWirMSGt/DA98OEclVA6+AgCsv/8psoPVIFRBdnUTG7fvovzj\
|
|
||||||
F4kgybwPPPThtkycWGW4LRM89OdOIgTgDTaQXX4Ou/wclYNH8Bxr5EgeQeort0AoFRcCJLKC1HIB\
|
|
||||||
aWMDqeUCiKzEawqS6D/THexckHTeB003cOODe+BhACJTaLoxXgFTq6zpBta3dlAZvFvf2oGmG5GQ\
|
|
||||||
cZb7FFD4DMw5RjpXAFH6dZNeLkQkSwKMjZFjqiC7sombH33WDzBrzO0GSSCHSyxYx0L1p2/gjtVN\
|
|
||||||
UhGqIJ0vIJ0vzIVLutxktCkC4jZrOLFeo9c0EYZs7sSaboBQyoXP0GvWIu0vCilP7FzfLTpmCbZZ\
|
|
||||||
Qir7DtRMHhKRzzTdFFK5t+G2TLjtOuzqL5H2C7cVkaFm8kgtFeC2TPjdZlFwvjsTUAi+G7idB6xj\
|
|
||||||
3XdbdaSWrk05HZ+w16yi1yjDax/3++UM+4tCzpxJcL7rd5vFOJBuywTrWGCOhXn2SSC1jAG7+isC\
|
|
||||||
t/MgulEHgeTUDlHe34N9dAge+JH1AwBR9rE0Y5tEhpk4k875M8kDH/bRISpPv8RJowzBeXEh4H8F\
|
|
||||||
OYQr7+/BqR1ivCfGCi8u5LB+/BOb+N3m/TiQUXCRNZi0JiUBSJJ8+g9eZB8HLhFgpFMRwn1Tgfnz\
|
|
||||||
12Ddxmm5D+0r+3twzN/Ax5p5HLjEgBNOx45Toeug9fs+nPpLhL5HpuzNF6g9ewyvWQVEGBsu8jSz\
|
|
||||||
AJK4TZN3j1+DBwys/Rf+fPEMAfM/GZy1Ji9Nvkec+kv+pvQDwne34XsnqDx9vBBu5rUz9n+UUKFm\
|
|
||||||
DUhUhQgYmB19a5NV9WNFvfKtcmUJoe/BtY/Bw3//+iqNPbFULBbJRRJzqaT6G8x+nSey7hTtAAAA\
|
|
||||||
AElFTkSuQmCC\
|
|
||||||
') !important;
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
body, p, li, h1, h2, h3, h4, h5, h6, .article-content, .article-content p{
|
|
||||||
font-family: "open-dyslexic";
|
|
||||||
}
|
|
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
||||||
code, pre, tt, .blob-code-inner{
|
|
||||||
font-family: Iosevka;
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,682 +0,0 @@
|
||||||
/* Userstyle for Gitlab.com. Created by: 2E0PGS */
|
|
||||||
/* Repository: https://bitbucket.org/2E0PGS/userstyles/overview */
|
|
||||||
/* Licence: GNU v3 */
|
|
||||||
/* Userstyle URL: todo /*
|
|
||||||
/* Version 1.0.7 01/02/2017 18:33*/
|
|
||||||
|
|
||||||
/* I suggest you set your Syntax Highlighting Theme to "Dark" under your /profile/preferences Page.*/
|
|
||||||
|
|
||||||
body, h1, h2, h3, h4, h5, h6, .wiki h1, .wiki h2, .wiki h3, .wiki h4, .wiki p, .wiki, .md-page, .blog-entry h1, .blog-entry h2, .blog-entry h3, .blog-entry h4, .blog-entry h5, .md-page h1, .md-page h2, .md-page h3, .md-page h4, .md-page h5, .blog-entry p, .md-page p, .detail-page-description .title, p, .cover-block .cover-title, .cover-block .cover-desc {
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
body, .full-post {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
body.navless {
|
|
||||||
background-color: #1c1e22 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
border-top: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Nav Bar--- */
|
|
||||||
header.navbar-gitlab, .row-content-block.content-component-block, .commit-header, .navbar-default {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Icon for notifications--- */
|
|
||||||
header.navbar-gitlab .container-fluid .nav>li>a {
|
|
||||||
color: rgba(224, 224, 224, 0.84);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Seems the Nav links got broken in recent update. May need to remove legacy version of this--- */
|
|
||||||
.nav-links li a, header .header-content .title a, .project-stats .nav>li>a {
|
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
.project-stats .nav>li>a:hover, .project-stats .nav>li>a:focus, .nav-links li a:hover {
|
|
||||||
color: rgba(185, 185, 185, 0.88);
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover-block {
|
|
||||||
background-color: #1e2125;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links {
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row-content-block.white {
|
|
||||||
background-color: #1e2125;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-wrapper .container-fluid {
|
|
||||||
background-color: #1e2125;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row-content-block {
|
|
||||||
border-top: 1px solid #1e2125;
|
|
||||||
border-bottom: 1px solid #1e2125;
|
|
||||||
color: #959494;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Left Side Nav Bar--- */
|
|
||||||
body.ui_charcoal .page-with-sidebar .sidebar-wrapper {
|
|
||||||
background: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Left Side Nav Bar Button--- */
|
|
||||||
header.navbar-gitlab .side-nav-toggle {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
header.navbar-gitlab .side-nav-toggle:hover {
|
|
||||||
background-color: rgba(255,255,255,0.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Event Items--- */
|
|
||||||
.event-item a {
|
|
||||||
color: #EEEEEE;
|
|
||||||
}
|
|
||||||
|
|
||||||
.event-item .event-title {
|
|
||||||
color: #CDCDCD;
|
|
||||||
}
|
|
||||||
|
|
||||||
.event-item {
|
|
||||||
color: #b1b1b1;
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Search--- */
|
|
||||||
.dropdown-menu-toggle {
|
|
||||||
background-color: #272b2f;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-toggle-text.is-default {
|
|
||||||
color: rgba(255, 255, 255, 0.99);
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-control, .search form {
|
|
||||||
background-color: #272b2f !important;
|
|
||||||
border: 0px solid #e5e5e5;
|
|
||||||
border-radius: 0px;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-menu, .dropdown-menu-nav {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border: 0px solid rgba(0,0,0,0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-menu a, .dropdown-menu-nav a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-menu a:hover,.dropdown-menu-nav a:hover {
|
|
||||||
background-color: rgba(255,255,255,0.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Hovering Form controls--- */
|
|
||||||
.form-actions, .row-content-block {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border-top: 1px solid #696969;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Code Entry Box--- */
|
|
||||||
.ace-tm, .code.white, .code.white pre.code, .code.white .line_holder .line_content {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ace-tm .ace_gutter, .file-editor .ace_gutter-cell {
|
|
||||||
background: #272b2f;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-holder {
|
|
||||||
border: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-holder .file-title {
|
|
||||||
background-color: #1e2125;
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #343940;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------More Code Viewing and Syntax Tweaks------ */
|
|
||||||
.code.white .line-numbers, .code.white .diff-line-num {
|
|
||||||
background-color: #1e2125;
|
|
||||||
color: #f0f0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white pre.code, .code.white .diff-line-num {
|
|
||||||
border-color: #333333;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Permalink Highlighted line--- */
|
|
||||||
.code.white .line.hll {
|
|
||||||
background-color: #333333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Syntax Highlighting Tweaks--- */
|
|
||||||
.code.white .line span.k, .code.white .line span.kd {
|
|
||||||
color: #80e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line span.n, .code.white .line span.nn, .code.white .line span.o {
|
|
||||||
color: #f0f0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line span.kt, .code.white .line span.nc {
|
|
||||||
color: #a0a0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line span.na, .code.white .line span.mi {
|
|
||||||
color: #00e080;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line span.nf {
|
|
||||||
color: #ff6060;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line span.s {
|
|
||||||
color: #e050e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Commit Code View Diff Addition Green Background--- */
|
|
||||||
.code.white .line_holder .line_content.new, .code.white .line_holder .diff-line-num.new {
|
|
||||||
background-color: #003811;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line_holder .line_content.new span.idiff {
|
|
||||||
background-color: #155627;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .diff-line-num, .code.white .diff-line-num a {
|
|
||||||
color: #f0f0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Commit Code View Diff Deleted Red Background--- */
|
|
||||||
.code.white .line_holder .line_content.old, .code.white .line_holder .diff-line-num.old {
|
|
||||||
background-color: #b33f4c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code.white .line_holder .line_content.old span.idiff {
|
|
||||||
background-color: #80081a;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Privacy Options of Repo--- */
|
|
||||||
.project-visibility-level-holder .radio .option-title {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.project-visibility-level-holder .radio .option-descr {
|
|
||||||
color: #b1b1b1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Links--- */
|
|
||||||
.nav-links li.active a {
|
|
||||||
border-bottom: 2px solid #236dde;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links li .badge {
|
|
||||||
background-color: #424242;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.content-list>li a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.content-list>li {
|
|
||||||
color: #b1b1b1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Page Controls--- */
|
|
||||||
.pagination>.active>a, .pagination>.active>a:hover, .pagination>.active>a:focus, .pagination>.active>span, .pagination>.active>span:hover, .pagination>.active>span:focus {
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #272b2f;
|
|
||||||
border-color: rgba(229, 229, 229, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pagination>li>a, .pagination>li>span {
|
|
||||||
color: #9c9b9b;
|
|
||||||
background-color: #272b2f;
|
|
||||||
border: 0px solid rgba(229, 229, 229, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
|
|
||||||
color: #848484;
|
|
||||||
background-color: #393e44;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Avatar Menu Background Fix--- */
|
|
||||||
.nav .open>a, .nav .open>a:hover, .nav .open>a:focus, header.navbar-gitlab .container-fluid .nav>li>a:hover, header.navbar-gitlab .container-fluid .nav>li>a:focus, header.navbar-gitlab .container-fluid .nav>li>a:active, table.table tr th, .file-holder table tr th, .wiki table tr th, .md table tr th, ul.notes .note .note-body .note-text table tr th {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-nav {
|
|
||||||
background: #1c1e22;
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Profile Settings--- */
|
|
||||||
.layout-nav .nav-links li.active a, .layout-nav .nav-links li.active i {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-nav .nav-links li a:hover, .layout-nav .nav-links li i:hover {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.provider-btn {
|
|
||||||
background-color: #272b2f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.provider-btn-group {
|
|
||||||
border: 1px solid #3c3c3c;
|
|
||||||
border-radius: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.provider-btn-image {
|
|
||||||
border-right: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn, .snippet-file-content .btn-clipboard {
|
|
||||||
border-radius: 0px;
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border-color: #696969;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-group .input-group-addon {
|
|
||||||
background-color: #2e3338;
|
|
||||||
color: white;
|
|
||||||
border: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn:hover, .snippet-file-content .btn-clipboard:hover, .btn:focus, .snippet-file-content .btn-clipboard:focus {
|
|
||||||
background-color: #272b2f;
|
|
||||||
border-color: #696969;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.account-well {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.well-list>li:hover {
|
|
||||||
background: #272b2f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-block {
|
|
||||||
color: rgba(210, 210, 210, 0.85);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Search Results--- */
|
|
||||||
.well, .search_box {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Settings Warning Message--- */
|
|
||||||
.settings-message {
|
|
||||||
color: #fc6d26;
|
|
||||||
background-color: #000000;
|
|
||||||
border: 1px solid #fc6d26;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Repo Pages--- */
|
|
||||||
.project-home-panel .project-title {
|
|
||||||
/* Disabled orange title background due to many complains, I thought it looked good personally */
|
|
||||||
/*background-color: #e24329;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
pre.light-well, pre.description-block {
|
|
||||||
border-color: #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.light-well, .description-block, pre {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
color: white !important;
|
|
||||||
border-color: #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn, .snippet-file-content .btn-clipboard {
|
|
||||||
background-color: #1c1e22 !important;
|
|
||||||
border-color: rgba(229, 229, 229, 0) !important;
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.project-repo-buttons .count-with-arrow .count, .project-repo-buttons .count-with-arrow .count:hover {
|
|
||||||
border-color: rgba(220, 220, 220, 0);
|
|
||||||
color: #ffffff;
|
|
||||||
background: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links.sub-nav .container-fluid, .nav-links.sub-nav {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.content-list>li {
|
|
||||||
border-color: #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Commit Network Graph Initial Background Colour--- */
|
|
||||||
.project-network .network-graph {
|
|
||||||
background: #444444;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Last commit--- */
|
|
||||||
.project-last-commit .commit-row-message {
|
|
||||||
color: rgba(255, 255, 255, 0.71);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Repo Settings--- */
|
|
||||||
.bs-callout-info {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Gitlab Issues--- */
|
|
||||||
.board-blank-state, .board-list {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.notes .system-note {
|
|
||||||
background: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board-header {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.detail-page-header {
|
|
||||||
color: rgba(204, 204, 204, 0.85)
|
|
||||||
}
|
|
||||||
|
|
||||||
.milestone.milestone-closed {
|
|
||||||
background: #1e2125;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Fixes suggested by Daniel Quinn "/issues/2/"--- */
|
|
||||||
board-inner, .dropdown-toggle, .dropdown-menu-toggle {
|
|
||||||
border: 1px solid #666666;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board-title {
|
|
||||||
border-bottom: 1px solid #666666;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board-issue-count.has-btn {
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.issueable-meta, .detail-page-header .identifier, .detail-page-header .author, .discussion-header .author_link, .note-header .author_link, .comment-toolbar, .right-sidebar .title, .toolbar-btn {
|
|
||||||
color: #999999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.note-headline-light, .discussion-headline-light, .right-sidebar.right-sidebar-expanded .no-value {
|
|
||||||
color: #f7f7f7;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Mark Down / Wiki--- */
|
|
||||||
.note-textarea {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.markdown-area {
|
|
||||||
background: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sub-header-block {
|
|
||||||
background-color: #1e2125;
|
|
||||||
border-bottom: 1px solid #1e2125;
|
|
||||||
}
|
|
||||||
|
|
||||||
legend {
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-editor .editor-ref {
|
|
||||||
background: #1c1e22;
|
|
||||||
border-right: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Commit List--- */
|
|
||||||
.breadcrumb.repo-breadcrumb a {
|
|
||||||
color: #f1f1f1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit-row-title .commit-row-message {
|
|
||||||
color: #eaeaea;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit .commit-row-info {
|
|
||||||
color: #bdbdbd;
|
|
||||||
line-height: 1.35;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit .commit-row-info a {
|
|
||||||
color: #717171;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tint-box, #contributors .person .spark, .card {
|
|
||||||
background: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---More Fixes for broken link themeing thanks to recent update--- */
|
|
||||||
.tree-holder .tree-commit .tree-commit-link {
|
|
||||||
color: rgba(255, 255, 255, 0.55);
|
|
||||||
}
|
|
||||||
|
|
||||||
.light, .description-block, .tree-holder .tree-time-ago {
|
|
||||||
color: rgba(210, 210, 210, 0.85);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Merges--- */
|
|
||||||
.merge-request.today, .issue.today, .merge-request.closed, .issue.closed, .merge-request.merged, .issue.merged {
|
|
||||||
background: #1c1e22;
|
|
||||||
border-color: #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mr-state-widget .ci_widget {
|
|
||||||
color: rgba(177, 177, 177, 0.85);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*--- File Names--- */
|
|
||||||
.tree-holder .tree-item .tree-item-file-name i, .tree-holder .tree-item .tree-item-file-name a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tree-holder .tree-table tr:hover td {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border-top: 1px solid #e24329;
|
|
||||||
border-bottom: 1px solid #e24329;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-holder .file-content {
|
|
||||||
background: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.blob-commit-info {
|
|
||||||
background: #1c1e22;
|
|
||||||
border: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Edit Button--- */
|
|
||||||
.btn-file-option {
|
|
||||||
background: linear-gradient(180deg, #020202 25%, #000000 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Group Repos--- */
|
|
||||||
.cover-block.groups-cover-block {
|
|
||||||
background: #1c1e22;
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover-block .group-info h1 {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #1e2125;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-default>.panel-heading {
|
|
||||||
color: #5c5c5c;
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border-color: #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-default {
|
|
||||||
border-color: #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mr-state-widget {
|
|
||||||
background: #1c1e22;
|
|
||||||
color: #5c5c5c;
|
|
||||||
border: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mr-state-widget .ci_widget {
|
|
||||||
border-bottom: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Search Filter--- */
|
|
||||||
.search .location-badge {
|
|
||||||
color: #e7e9ed;
|
|
||||||
background-color: #363c42;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right-sidebar {
|
|
||||||
background: #1e2125;
|
|
||||||
border-left: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Commit List--- */
|
|
||||||
.branch-commit .commit-id, .branch-commit .commit-row-message {
|
|
||||||
color: #9c9c9c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit a, .commit button {
|
|
||||||
color: #a0a0a0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-holder .builds th {
|
|
||||||
background-color: #1c1e22
|
|
||||||
}
|
|
||||||
|
|
||||||
.row-content-block.build-content {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Footer--- */
|
|
||||||
.panel-footer {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
border-top: 1px solid #696969;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Search Box on main website--- */
|
|
||||||
.search-box.is-open .search-input {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---delete file confirmation box--- */
|
|
||||||
.modal-content {
|
|
||||||
background: #1e2125;
|
|
||||||
border: 1px solid #696969;
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------Octotree Extension Support Code------ */
|
|
||||||
|
|
||||||
/* ---header--- */
|
|
||||||
.octotree_gitlab_sidebar .octotree_views .octotree_view .octotree_view_header {
|
|
||||||
background: #1e2125;
|
|
||||||
color: #ffffff !important;
|
|
||||||
text-shadow: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.octotree_gitlab_sidebar .octotree_views .octotree_treeview .octotree_header_repo,
|
|
||||||
.octotree_gitlab_sidebar .octotree_views .octotree_treeview .octotree_header_repo a
|
|
||||||
{
|
|
||||||
color: #ffffff;
|
|
||||||
text-shadow: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.octotree_gitlab_sidebar .octotree_views .octotree_treeview .octotree_header_repo::before {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.octotree_gitlab_sidebar a.octotree_opts, .octotree_gitlab_sidebar a.octotree_toggle
|
|
||||||
{
|
|
||||||
color: #c0c0c0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---main body--- */
|
|
||||||
.octotree_gitlab_sidebar {
|
|
||||||
background: #1e2125;
|
|
||||||
border-left: 1px solid #696969;
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---elements in tree view---*/
|
|
||||||
.octotree_gitlab_sidebar .octotree_views .octotree_treeview .jstree-anchor
|
|
||||||
{
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---hover over row---*/
|
|
||||||
.jstree-wholerow-hovered {
|
|
||||||
background: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---row clicked---*/
|
|
||||||
.jstree-wholerow-clicked {
|
|
||||||
background: #182030 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---folder icons---*/
|
|
||||||
.octotree_views .octotree_treeview .jstree-anchor .jstree-icon.tree:before {
|
|
||||||
color: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---file icons---*/
|
|
||||||
.octotree_gitlab_sidebar .octotree_views .octotree_treeview .jstree-icon.blob:before {
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---folder triangle icons---*/
|
|
||||||
.jstree-icon.jstree-ocl {
|
|
||||||
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
|
|
||||||
filter: invert(100%) hue-rotate(180deg) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Fix for active items on Boards--- */
|
|
||||||
a.label-item.is-focused, li.card.user-can-drag.is-active > h4 > a{
|
|
||||||
color: #1c1e22;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------Pipes------ */
|
|
||||||
.table-holder .ci-table th {
|
|
||||||
background-color: #1c1e22;
|
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---Pipeline Commit ID--- */
|
|
||||||
.pipelines .table.ci-table .pipeline-id, .pipelines .file-holder table.ci-table .pipeline-id, .file-holder .pipelines table.ci-table .pipeline-id, .pipelines .wiki table.ci-table .pipeline-id, .wiki .pipelines table.ci-table .pipeline-id, .pipelines .md table.ci-table .pipeline-id, .md .pipelines table.ci-table .pipeline-id, .pipelines ul.notes .note .note-body .note-text table.ci-table .pipeline-id, ul.notes .note .note-body .note-text .pipelines table.ci-table .pipeline-id {
|
|
||||||
color: #b6b6b7;
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
body{
|
|
||||||
font-family: "open-dyslexic";
|
|
||||||
}
|
|
||||||
.postArticle-content .graf--p{
|
|
||||||
font-family: "open-dyslexic";
|
|
||||||
}
|
|
|
@ -1,117 +0,0 @@
|
||||||
body, #page, .left, #leftcolumn a, #topnav, #topnavTut, .lamp td,
|
|
||||||
.boxDemo, .example, #menu a
|
|
||||||
{
|
|
||||||
background:#222 !important;
|
|
||||||
}
|
|
||||||
div
|
|
||||||
{
|
|
||||||
background-color:#222 !important;
|
|
||||||
}
|
|
||||||
#page, .image
|
|
||||||
{
|
|
||||||
box-shadow:none !important;
|
|
||||||
}
|
|
||||||
div
|
|
||||||
{
|
|
||||||
border:none !important;
|
|
||||||
}
|
|
||||||
.btn
|
|
||||||
{
|
|
||||||
color:#FFF !important;
|
|
||||||
border:1px #FFF solid!important;
|
|
||||||
background:#333 !important;
|
|
||||||
}
|
|
||||||
.example_code
|
|
||||||
{
|
|
||||||
color:#FFF !important;
|
|
||||||
background:#222 !important;
|
|
||||||
border-left: 3px solid #8AC007 !important;
|
|
||||||
}
|
|
||||||
div.code, div.code div
|
|
||||||
{
|
|
||||||
color:#FFF !important;
|
|
||||||
background:#333 !important;
|
|
||||||
}
|
|
||||||
div#div1, div#div2
|
|
||||||
{
|
|
||||||
border: 1px solid gray !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.example
|
|
||||||
{
|
|
||||||
color:#FFF !important;
|
|
||||||
background:#333 !important;
|
|
||||||
}
|
|
||||||
tr
|
|
||||||
{
|
|
||||||
background:#222 !important;
|
|
||||||
}
|
|
||||||
tr:nth-child(even)
|
|
||||||
{
|
|
||||||
background:#333 !important;
|
|
||||||
}
|
|
||||||
th
|
|
||||||
{
|
|
||||||
color:#000 !important;
|
|
||||||
background:#AAA !important;
|
|
||||||
}
|
|
||||||
td
|
|
||||||
{
|
|
||||||
color:#AAA !important;
|
|
||||||
border:1px #555 solid!important;
|
|
||||||
}
|
|
||||||
table.lamp tr td
|
|
||||||
{
|
|
||||||
border-style: none !important;
|
|
||||||
padding-left: 1ex !important;
|
|
||||||
}
|
|
||||||
table.lamp tr th
|
|
||||||
{
|
|
||||||
background:#FFF !important;
|
|
||||||
}
|
|
||||||
table
|
|
||||||
{
|
|
||||||
color:#FFF !important;
|
|
||||||
border:1px #555 solid!important;
|
|
||||||
background:#222 !important;
|
|
||||||
}
|
|
||||||
body, p, ol, ul, .headerText
|
|
||||||
{
|
|
||||||
color:#AAA !important;
|
|
||||||
}
|
|
||||||
a, b, h1, h2, h3, h4, h5, h6, .bottom, strong
|
|
||||||
li
|
|
||||||
{
|
|
||||||
color:#FFF !important;
|
|
||||||
}
|
|
||||||
span.color_h1, a.chapter, h2.left, .left_h2
|
|
||||||
{
|
|
||||||
color:#8AC007 !important;
|
|
||||||
}
|
|
||||||
a:hover
|
|
||||||
{
|
|
||||||
text-decoration:underline !important;
|
|
||||||
}
|
|
||||||
#topnav, #topnavTut, div.menu
|
|
||||||
{
|
|
||||||
background-color:#333 !important;
|
|
||||||
}
|
|
||||||
.tryitbtn
|
|
||||||
{
|
|
||||||
background-color: #8AC007 !important;
|
|
||||||
}
|
|
||||||
hr
|
|
||||||
{
|
|
||||||
background-color: #555 !important;
|
|
||||||
}
|
|
||||||
.highVAL
|
|
||||||
{
|
|
||||||
color: lightblue !important;
|
|
||||||
}
|
|
||||||
.highELE
|
|
||||||
{
|
|
||||||
color: lightcoral !important;
|
|
||||||
}
|
|
||||||
.w3-light-grey{
|
|
||||||
background-color: #222 !important;
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
((() => {
|
|
||||||
const domLoaded = function domLoaded(){
|
|
||||||
document.removeEventListener("readystatechange",domLoaded);
|
|
||||||
document.querySelectorAll("li").forEach(li => {
|
|
||||||
if( li.innerHTML.indexOf( '[' ) !== -1 ){
|
|
||||||
li.innerHTML = li.innerHTML.replace(/\[ \]/g, '☐');
|
|
||||||
li.innerHTML = li.innerHTML.replace(/\[x\]/g, '☒');
|
|
||||||
}
|
|
||||||
} );
|
|
||||||
}
|
|
||||||
|
|
||||||
if(document.readyState == "loading"){
|
|
||||||
|
|
||||||
//If the dom hasn't loaded, wait until it is
|
|
||||||
document.addEventListener("readystatechange",domLoaded);
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
//If it has, run the domLoaded function
|
|
||||||
domLoaded();
|
|
||||||
}
|
|
||||||
}))();
|
|
|
@ -1,7 +0,0 @@
|
||||||
window.addEventListener( "beforeunload", (event)=>{
|
|
||||||
// Cancel the event as stated by the standard.
|
|
||||||
event.preventDefault();
|
|
||||||
// Chrome requires returnValue to be set.
|
|
||||||
event.returnValue = 'This is invision, not the site. Are you sure?';
|
|
||||||
return 'This is invision, not the site. Are you sure?';
|
|
||||||
} );
|
|
Loading…
Add table
Add a link
Reference in a new issue