-
-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for firefox on android #1516
Merged
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
5328e70
making options page accessible within android
lemnis b330291
faking popup when clicked on browser action
lemnis f222299
extra checks if specific function is available
lemnis fdaa6fb
fix for android to get tab id
lemnis d39af45
Merge remote-tracking branch 'EFForg/master'
lemnis bc231ec
Fixing small css issues, mostly visible on a phone
lemnis c61c0a8
cleanup
lemnis 0b865e8
Removes whitespace at bottom of a popup in chrome
lemnis ab5d902
removed chrome.windows api
lemnis 5a8d934
small fixes caused by container size
lemnis 323580e
Moved feature checks to top of function
lemnis 3bda018
Moved to URL api
lemnis ea950fd
changed fake popup behavior + cleanup
lemnis 7884298
update feature check
lemnis 700e92c
removed whitespace
lemnis ac18053
fixed accidental tab close
lemnis b4dd778
cleanup code
lemnis 2c986a2
Moved all FF Android functions to sep. file
lemnis e73d12d
Merge branch 'EFForg/master'
lemnis 98fbb56
small bug fixes
lemnis 2443260
improved comments
lemnis 1f230cf
fix for selenium test
lemnis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,16 +19,20 @@ | |
|
||
body { | ||
margin: 0; | ||
min-width: 200px; | ||
min-width: 400px; | ||
max-width: 100%; | ||
font-size: 12px; | ||
background: #fefefe; | ||
color: #333; | ||
font-family: helvetica, arial, sans-serif; | ||
padding: 8px 15px; | ||
width: 400px; | ||
box-sizing: border-box; | ||
} | ||
@media screen and (min--moz-device-pixel-ratio:0) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. firefox specific css, otherwise the popup would render too wide |
||
body{ | ||
width: 400px; | ||
} | ||
} | ||
|
||
a { text-decoration: none } | ||
a:hover { color: #ec9329 } | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
creates a whitespace within chrome, use min-width instead