remove firefox border and add link to docs

This commit is contained in:
Andrei Cristian Petcu 2020-04-25 23:23:04 +03:00
parent fd5647e216
commit 48adeb192e
2 changed files with 11 additions and 7 deletions

@ -10,6 +10,8 @@ To package the code in preparation for submission, the \`web-ext\` tool can be u
Then the package can be submitted to Mozilla for review in the [Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution). Then the package can be submitted to Mozilla for review in the [Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution).
Learn more about Firefox themes from [extensionworkshop.com](https://extensionworkshop.com/documentation/themes/)
To theme Firefox without the need to create a developer account and go through the extension review process, see themer's integration with [Firefox Color](https://color.firefox.com). To theme Firefox without the need to create a developer account and go through the extension review process, see themer's integration with [Firefox Color](https://color.firefox.com).
" "
`; `;
@ -151,9 +153,9 @@ Object {
102, 102,
], ],
"toolbar_field_separator": Array [ "toolbar_field_separator": Array [
40, 71,
38, 66,
41, 71,
], ],
"toolbar_field_text": Array [ "toolbar_field_text": Array [
255, 255,
@ -307,9 +309,9 @@ Object {
194, 194,
], ],
"toolbar_field_separator": Array [ "toolbar_field_separator": Array [
224, 255,
220, 252,
224, 255,
], ],
"toolbar_field_text": Array [ "toolbar_field_text": Array [
40, 40,

@ -46,7 +46,7 @@ const renderManifest = (colorSet) => {
tab_text: colorSet.rgbColors.shade7, tab_text: colorSet.rgbColors.shade7,
toolbar_bottom_separator: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0, toolbar_bottom_separator: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
toolbar_field_border: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0, toolbar_field_border: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
toolbar_field_separator: colorSet.isDark ? colorSet.rgbColors.shade0 : colorSet.rgbColors.shade1, toolbar_field_separator: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
toolbar_field_text_focus: colorSet.rgbColors.shade7, toolbar_field_text_focus: colorSet.rgbColors.shade7,
toolbar_field_text: colorSet.rgbColors.shade7, toolbar_field_text: colorSet.rgbColors.shade7,
toolbar_field: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0, toolbar_field: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
@ -84,6 +84,8 @@ To package the code in preparation for submission, the \`web-ext\` tool can be u
Then the package can be submitted to Mozilla for review in the [Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution). Then the package can be submitted to Mozilla for review in the [Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution).
Learn more about Firefox themes from [extensionworkshop.com](https://extensionworkshop.com/documentation/themes/)
To theme Firefox without the need to create a developer account and go through the extension review process, see themer's integration with [Firefox Color](https://color.firefox.com). To theme Firefox without the need to create a developer account and go through the extension review process, see themer's integration with [Firefox Color](https://color.firefox.com).
`; `;
} }