Why some of the Tampermonkey userscript have BLUE switch? - tampermonkey

When I add some userscripts to Tampermonkey, I see some of the Userscripts have "BLUE" switch. See below screenshot. What's that mean?

Related

How to edit colors of the legend toggle of react google chart if they are activated and desactivated

I have 3 lines graphed, and when I hide one, the color of the bottom line changes to the color of the top one, how do I keep the color the same regardless of the hidden line?
It took me some time to find a way to achieve what you wanted and I'm giving you live demo (React Google Charts - Toggle Line Visibility) so you can inspect it and see if that's what you wanted.
It's a little bit hacky, but hey it's working fine, I guess.
What I did is:
Listen for select event and detect when legend is pressed
Apply series with some configuration and make it state variable for our custom Graph component
By setting lineWidth: 0 and tooltip: false we fake line invisibility. Line width trick is obvious... Tooltip is disabled so you can't get tooltip when you try to hover over "invisibile" line on the graph (try to comment out line of code which sets tooltip: false and go hover over the area where dot of an "invisible" line is suppose to be to see what I mean by that)
I hope this helps, because there is nothing out there for this scenario in React.

How to use customized icon for Firefox omnibox search suggestion

I want to my Firefox extension could use Firefox omnibox and return user some suggestions when input changed.
At current stage, the omnibox could give me some suggestions, but the icon of the suggestion is still default instead of icon of the website. I already set my extension icon in manifest.json and size of icon is 16px by 16px and 32px by 32px with 7kb.
Should I set suggestion icon somewhere else?
I follow the example from this: https://github.com/mdn/webextensions-examples/tree/master/firefox-code-search

ion-tabs keep showing highlighted bar on the bottom icon

this my tabs on browser :
and this my tabs on android platform :
can someone help me how to remove the highlighted bar?
Based on the documentation here, you should put this line of code;
$ionicConfigProvider.tabs.style('standard');

When I click on af:commandLink page is blinking

I am develong a web application using Oracle ADF(12c). I have a page with two links that looks like below
Everything is working fine. when I click on any link it is going to desired page but before going to the desired page it is blinking. Means it is not behaving normally. Means when I click on any link it has to go the desired page without blinking.
Help me . I achieving this.
This means there is something wrong with your custom skin - if you have one. Maybe you can try to spot that color somewhere in your skin CSS.
Alternatively, you can try playing with these selectors, changing the background colour to be the same as menu's background:
.AFLinkForeground
.AFLinkHover
.AFVisitedLinkBackground
.AFActiveLinkBorder
.AFActiveLinkForeground
.AFLinkForeground
.AFVisitedLinkForeground
.AFLinkForeground
.AFLightVisitedLinkForeground
.AFLinkForeground
.AFDisabledLinkForeground
.AFLinkForeground
.AFGlobalLink

Remove Aloha-Editor Blue Focus Outline

I'm very new to Aloha (WYSIWYG) Editor and i would like to know how to remove/disable its blue outline then the editing field is on focus.
I've managed to disable the yellow highlight outlines, but couldn't find a way to disable the blue on focus border outline.
Any friendly advice?
Thanks.
This blue outline is made by the "highlighteditables" plugin's CSS src/plugins/common/highlighteditables/css/highlighteditables.css:
.aloha-editable-active, .aloha-editable-active[contenteditable=true]:focus {
outline: #80B5F2 solid 5px !important;
}
Check that when running the inspector in the web browser, selecting the element and disabling this style helps.
Note the ugly programming style with !important :(
Unfortunately, as you can can choose plugins to load you only choose JavaScript, CSS of all the plugins enabled during the build are merged into the aloha.css and are always loaded.
One way to fix it is to build the editor yourself. Basic introduction is described in section "4.3 Customized Builds" of Develop Aloha Editor guide.
As building Aloha yourself requires some effort, you may be interested in quick workaround using the inline style:
outline: none !important;
for the element you have problem with. Note the !important keyword - it is required.

Resources