Add fix for Tab Suspender (memory saver) #6

This commit is contained in:
overdodactyl 2018-01-04 19:46:41 -07:00
parent b264685557
commit 2b7b400f8c
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,30 @@
/*! Alters the webextension Tab Suspender (memory saver)
IMPORTANT: change the Internal UUID */
@-moz-document url-prefix("moz-extension://731831ee-3f54-b049-8509-193907bdaa5d/") {
label,
body {
color: var(--primary-light-color) !important;
}
input[type="number"],
textarea {
-moz-appearance: none !important;
background: var(--grey-60) !important;
color: var(--primary-light-color) !important;
border: 1px solid var(--grey-50) !important;
}
#recovery,
#save {
-moz-appearance: none !important;
height: 20px !important;
background: var(--grey-80) !important;
color: var(--primary-light-color) !important;
border: 1px solid var(--grey-60) !important;
border-radius: 4px !important;
}
}

View File

@ -1236,6 +1236,33 @@ html body div#container-panel.panel.container-panel,
color: var(--primary-light-color) !important; color: var(--primary-light-color) !important;
} }
} }
/*! Alters the webextension Tab Suspender (memory saver)
IMPORTANT: change the Internal UUID */
@-moz-document url-prefix("moz-extension://731831ee-3f54-b049-8509-193907bdaa5d/") {
label,
body {
color: var(--primary-light-color) !important;
}
input[type="number"],
textarea {
-moz-appearance: none !important;
background: var(--grey-60) !important;
color: var(--primary-light-color) !important;
border: 1px solid var(--grey-50) !important;
}
#recovery,
#save {
-moz-appearance: none !important;
height: 20px !important;
background: var(--grey-80) !important;
color: var(--primary-light-color) !important;
border: 1px solid var(--grey-60) !important;
border-radius: 4px !important;
}
}
/*! Alters the webextension Tree Style Tab /*! Alters the webextension Tree Style Tab
IMPORTANT: change the Internal UUID */ IMPORTANT: change the Internal UUID */