[ https://issues.apache.org/jira/browse/CB-6396?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14017935#comment-14017935 ]
ASF GitHub Bot commented on CB-6396: ------------------------------------ Github user rodms10 commented on a diff in the pull request: https://github.com/apache/cordova-plugin-inappbrowser/pull/47#discussion_r13400634 --- Diff: doc/index.md --- @@ -99,6 +100,39 @@ instance, or the system browser. var ref = window.open('http://apache.org', '_blank', 'location=yes'); var ref2 = window.open(encodeURI('http://ja.m.wikipedia.org/wiki/ハングル'), '_blank', 'location=yes'); +### Firefox OS Quirks + +As plugin doesn't enforce any design there is a need to add some CSS rules if +opened with `target` `'_blank'`. The rules might look like these + +``` css +.inAppBrowserWrap { + background-color: rgba(0,0,0,0.75); + color: rgba(235,235,235,1.0); +} +.inAppBrowserWrap menu { + overflow: auto; + list-style-type: none; + padding-left: 0; +} +.inAppBrowserWrap menu li { + font-size: 25px; + height: 25px; + float: left; + margin-right: 0px; --- End diff -- You're overwriting the right margin with the property below. Either remove or change the `margin` below accordingly. > inappbrowser > ------------ > > Key: CB-6396 > URL: https://issues.apache.org/jira/browse/CB-6396 > Project: Apache Cordova > Issue Type: Sub-task > Components: Plugin InAppBrowser > Affects Versions: 3.6.0 > Reporter: Piotr Zalewa > Assignee: Piotr Zalewa > > Add InAppBrowser for firefoxos -- This message was sent by Atlassian JIRA (v6.2#6252)