91 lines
2.7 KiB
CSS
91 lines
2.7 KiB
CSS
/*! Alters the webextension Request Control
|
|
IMPORTANT: change the Internal UUID */
|
|
|
|
@-moz-document url-prefix("moz-extension://request_control_UUID/") {
|
|
|
|
body {
|
|
background-color: var(--primary-dark-color) !important;
|
|
color: var(--primary-light-color) !important;
|
|
}
|
|
|
|
.rule:not(.editing):not(:hover) {
|
|
background-color: var(--mid-way-color) !important;
|
|
border: 1px solid var(--light-accent-color) !important;
|
|
}
|
|
|
|
.rule:hover:not(.editing) {
|
|
background-color: var(--dark-accent) !important;
|
|
border: 1px solid var(--light-accent-color) !important;
|
|
}
|
|
|
|
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
|
color: var(--primary-light-color) !important;
|
|
background-color: var(--dark-accent) !important;
|
|
border: 1px solid var(--light-accent-color) !important;
|
|
}
|
|
|
|
.nav-tabs > li > a:hover {
|
|
background-color: var(--dark-accent) !important;
|
|
border: 1px solid var(--light-accent-color) !important;
|
|
}
|
|
|
|
tabs.nav-justified > li > a {
|
|
border-bottom: 1px solid var(--light-accent-color) !important;
|
|
}
|
|
|
|
.btn-default {
|
|
color: var(--primary-light-color) !important;
|
|
background-color: var(--dark-accent) !important;
|
|
border-color: var(--light-accent-color) !important;
|
|
}
|
|
|
|
.btn-default.active {
|
|
background-color: var(--mid-way-color) !important;
|
|
}
|
|
|
|
.btn-default:hover {
|
|
color: var(--primary-light-color) !important;
|
|
background-color: var(--light-accent-color) !important;
|
|
border-color: var(--light-accent-color) !important;
|
|
}
|
|
|
|
.list-group-item:first-child {
|
|
background: var(--mid-way-color) !important;
|
|
border-color: var(--light-accent-color) !important;
|
|
|
|
}
|
|
|
|
.table {
|
|
background: var(--mid-way-color) !important;
|
|
}
|
|
|
|
.table-striped > tbody > tr:nth-of-type(2n+1) {
|
|
background-color: var(--dark-accent) !important;
|
|
}
|
|
|
|
.input-group .form-control:first-child,
|
|
.input-group-addon:first-child,
|
|
.input-group-btn:first-child > .btn,
|
|
.input-group-btn:first-child > .btn-group > .btn,
|
|
.input-group-btn:first-child > .dropdown-toggle,
|
|
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
|
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
|
|
select.input-sm,
|
|
.btn-group-params > .tags-input {
|
|
background: var(--light-accent-color) !important;
|
|
color: var(--grey-30) !important;
|
|
border-color: var(--primary-light-color) !important;
|
|
}
|
|
.list-group-item {
|
|
background-color: var(--mid-way-color) !important;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.tags-input .tag {
|
|
background: var(--dark-accent) !important;
|
|
border: 1px solid var(--mid-way-color) !important;
|
|
color: var(--primary-light-color) !important;
|
|
}
|
|
|
|
}
|