ShadowFox/userContent-files/webextension-tweaks/request_control.css

75 lines
2.3 KiB
CSS
Raw Normal View History

/*! Alters the webextension Request Control
IMPORTANT: change the Internal UUID */
2018-02-24 01:41:14 +00:00
@-moz-document url-prefix("moz-extension://request_control_UUID/") {
2017-12-27 05:07:48 +00:00
body {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-7)!important;
color: var(--tone-4)!important
2017-12-27 05:07:48 +00:00
}
.rule:not(.editing):not(:hover) {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-6)!important;
border-color: var(--tone-5)!important
2017-12-27 05:07:48 +00:00
}
.rule:hover:not(.editing) {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-8)!important;
border-color: var(--tone-5)!important
2017-12-27 05:07:48 +00:00
}
2018-02-24 01:41:14 +00:00
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
color: var(--tone-4)!important;
background-color: var(--tone-8)!important;
border-color: var(--tone-5)!important
2017-12-27 05:07:48 +00:00
}
.nav-tabs > li > a:hover {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-8)!important;
border: 1px solid!important
2017-12-27 05:07:48 +00:00
}
tabs.nav-justified > li > a {
2018-02-24 01:41:14 +00:00
border-bottom: 1px solid!important
2017-12-27 05:07:48 +00:00
}
.btn-default {
2018-02-24 01:41:14 +00:00
color: var(--tone-4)!important;
background-color: var(--tone-8)!important;
border-color: var(--tone-5)!important
2017-12-27 05:07:48 +00:00
}
.btn-default.active {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-6)!important
2017-12-27 05:07:48 +00:00
}
.btn-default:hover {
2018-02-24 01:41:14 +00:00
color: var(--tone-4)!important;
background-color: var(--tone-5)!important;
border-color: var(--tone-5)!important
2017-12-27 05:07:48 +00:00
}
.list-group-item:first-child {
2018-02-24 01:41:14 +00:00
background: var(--tone-6)!important;
border-color: var(--tone-5)!important
2017-12-27 05:07:48 +00:00
}
.table {
2018-02-24 01:41:14 +00:00
background: var(--tone-6)!important
2017-12-27 05:07:48 +00:00
}
.table-striped > tbody > tr:nth-of-type(2n+1) {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-8)!important
2017-12-27 05:07:48 +00:00
}
2018-02-24 01:41:14 +00:00
.btn-group-params > .tags-input,
2017-12-27 05:07:48 +00:00
.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-group:not(:last-child) > .btn,
2018-02-24 01:41:14 +00:00
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
select.input-sm {
background: var(--tone-5)!important;
color: var(--grey-30)!important;
border-color: var(--tone-4)!important
2017-12-27 05:07:48 +00:00
}
.list-group-item {
2018-02-24 01:41:14 +00:00
background-color: var(--tone-6)!important;
border: 1px solid #ddd
2017-12-27 05:07:48 +00:00
}
.tags-input .tag {
2018-02-24 01:41:14 +00:00
background: var(--tone-8)!important;
border-color: var(--tone-5)!important;
color: var(--tone-4)!important
2017-12-27 05:07:48 +00:00
}
2018-02-25 00:06:00 +00:00
}