opera

how to remove textbox outline in Opera

随声附和 提交于 2019-12-12 02:56:33
问题 I tested the below code but gain no success: input[type="text"]:focus, input[type="password"]:focus { outline:none; -moz-transition: box-shadow 0.3s ease-out 0s; background-clip: padding-box; border: 1px solid #B6B6B6; border-radius: 3px 3px 3px 3px; color: #404040; font-size: 16px; height: auto; line-height: 16px; padding: 10px; } Is there something here I'm missing? 回答1: Opera applies a yellow outline to form inputs that have saved login information. I don't think it is possible to override

IE/Firefox/Opera not picking up stylesheet - Webkit okay

老子叫甜甜 提交于 2019-12-12 02:35:36
问题 I'm doing a website for a client and for some strange reason when loading the page in IE/Firefox/Opera, the stylesheet doesn't load properly. When loading the site in WebKit (Chrome, Safari, Mobile Chrome, Mobile Safari) the page loads fine. I've check that the doctype is fine, the links don't have any typos, they all link up correctly in the source. I cant for the life of me figure out why it doesn't work! Please help! http://almostinspired.net and http://almostinspired.net/wp-content/themes

How do I programmatically access bookmarks in Opera and Mozilla browsers for android?

左心房为你撑大大i 提交于 2019-12-12 02:33:32
问题 From what I read, I need the bookmarks URI from each browser: private final Uri CHROME_URI = Uri.parse("content://com.android.chrome.browser/bookmarks"); private final Uri MOZILLA_URI = Uri.parse("content://org.mozilla.firefox.db.browser/bookmarks"); private final Uri OPERA_URI = ?; I managed to find chrome's bookmarks uri, I have not tested mozilla's bookmarks uri yet, but that seems to be it and as far as opera I did not find anything. Any thoughts on what it might be? UPDATE: I'm using

javascript not working in OPERA

北战南征 提交于 2019-12-12 01:59:53
问题 This javascript works in Firefox, IE, Chrome but Not in Opera. How to make it cross browser compatible? I need script to detect click on iframe. <script> var isOverIFrame = false; function processMouseOut() { isOverIFrame = false; top.focus(); } function processMouseOver() { isOverIFrame = true; } function processIFrameClick() { if(isOverIFrame) { //was clicked } } function init() { var element = document.getElementsByTagName("iframe"); for (var i=0; i<element.length; i++) { element[i]

remove standard arrow from select dropdown in Opera (arrow in other browsers was fixed)

北慕城南 提交于 2019-12-12 01:12:46
问题 I'm trying to hide the standard arrow from the select dropdown list. I've resolved it for all browsers, thanks to stackoverflow.com, but still can't remove or hide it for the Opera (my current version is Opera 12.16). Pure css solution is needed. select { background: url(/path/to/the/arrow.png) no-repeat center right; -webkit-appearance: none; -moz-appearance: none; appearance: none; text-indent: 0.01px; text-overflow: ''; } /*IE*/ select::-ms-expand { display: none; } /*FF*/ @-moz-document

Cross-browser localStorage

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-11 20:16:11
问题 i imagined a todo list written in plain JS without using framework just to see the localStorage cross-browser compatibility. The script is function addText(){ var input = document.getElementById('input').value; date = new Date(); var time = date.getTime(); if (input !== "") { localStorage.setItem(time,"lalala"); document.getElementById('input').value = ''; }}; function loadText(){ if (window.localStorage) { for(var i in window.localStorage){ console.log(i+"--------theiiiiiii"); var z =

CSS3 box shadow effect not working in opera

一笑奈何 提交于 2019-12-11 19:28:09
问题 I am having a menu which uses Css3 effects on its hover and active state.The menu looks like this Here is the Css3 styling I use #Menu a:active, #Menu a.active:before,#Menu a:hover:before { Content: ' '; position:absolute; z-index:51; width:0px; height:0px; left:50%; top:50%; box-shadow:0 0 35px 30px #ADD7E7; -moz-box-shadow:0 0 35px 30px #ADD7E7; -webkit-box-shadow:0 0 35px 30px #ADD7E7; border-radius:50%; } This works in Firefox and Chrome , but doesnot work in opera , I have no idea , can

Why Rangy library doesn't work with contenteditable in Opera?

只谈情不闲聊 提交于 2019-12-11 18:49:12
问题 I am using popular Rangy library inside contenteditable DIV. My code is pretty simple: var saved_selection = false; $('#contenteditable').bind('keypress mouseup', function(e){ $(this).find('.rangySelectionBoundary').remove(); saved_selection = rangy.saveSelection(); });​ Now this works pretty good in Chrome and FF. However, in Opera it behaves very strangely, because it doesn't allow to insert any characters in contenteditable and it rather looses focus, or at least it seems so. I have

Running web socket server on opera 12

a 夏天 提交于 2019-12-11 18:46:20
问题 I followed the instructions from here to install web socket node.js server on my WXP I have a client and server written as follows: http://cjihrig.com/blog/creating-your-own-websocket-echo-client/ (ws_server.js) Please let me know how can I make the web socket connection work...? When I run the client, Alert displaye are as follows: 1. "Web sockets are supported" 2. "On Close : event / data :Undefined". So how do i make nodejs work on opera?? It is working fine on google chrome?? I have

Pause script execution on opera dragonfly

人盡茶涼 提交于 2019-12-11 18:43:49
问题 In Chrome dev tools we can use the 'Pause' icon on the bottom row of the interface to break on all exceptions. So when our web page is running, we can break it suddenly without adding breakpoint and know where the script stop. Can we do that in opera dragonfly? Thanks. 回答1: There's a "Show parse errors and break on exceptions" toggle (immediately left of the drop-down selecting what script to show currently). 来源: https://stackoverflow.com/questions/11467833/pause-script-execution-on-opera