This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 974
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves #9149 Auditors: Test Plan:
- Loading branch information
Showing
10 changed files
with
77 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
// Don't forget to update .less files as well and vice-versa | ||
const styleValues = { | ||
'bookmark-item-max-width': 100, | ||
'bookmark-item-padding': 4, | ||
'bookmark-item-margin': 3, | ||
'bookmark-item-font-size': 4, | ||
'bookmark-item-chevron-margin': 4, | ||
'bookmarks-toolbar-padding': 10, | ||
'default-font-family': '-apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", sans-serif', | ||
'download-bar-buttons': 140, | ||
'download-bar-height': 60, | ||
'download-bar-padding': 20, | ||
'download-item-margin': 10, | ||
'download-item-width': 200, | ||
'navbar-height': 36, | ||
'context-menu-single-max-width': 400 | ||
} | ||
|
||
module.exports = styleValues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
module.exports.createWebView = () => { | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
const styleValues = require('../../common/constants/styleValues') | ||
|
||
const createWebView = () => { | ||
return document.createElement('webview') | ||
} | ||
|
||
module.exports.appendChild = (element, child) => { | ||
const appendChild = (element, child) => { | ||
element.appendChild(child) | ||
} | ||
|
||
const getStyleConstants = (prop) => { | ||
return styleValues[prop] | ||
} | ||
|
||
module.exports = { | ||
createWebView, | ||
appendChild, | ||
getStyleConstants | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1429,7 +1429,6 @@ const appActions = { | |
actionType: appConstants.APP_UPDATE_LOG_OPENED | ||
}) | ||
} | ||
|
||
} | ||
|
||
module.exports = appActions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters