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
var transparencyOptionsWindow = function( ) { | |
if( ui.getWindow( 'transparency-options' ) ) { | |
ui.getWindow( 'transparency-options' ).bringToFront( ); | |
return; | |
} | |
var windowOpts = { | |
classification: 'transparency-options', | |
width: 123, | |
height: 40, |
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
var panControl = document.createElement( 'div' ); | |
panControl.className = 'panControls'; | |
var directions = ['North', 'West', 'East', 'South']; | |
var pan = []; | |
directions.forEach( function( item ) { | |
pan[item] = document.createElement( 'div' ); | |
pan[item].className = 'panControl ' + item; | |
pan[item].innerHTML = '<img src="pan_arrow.png" />'; | |
// Uncomment the row below if you prefer a base64-encoded image embedded into the script |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
/* | |
* Ubuntu Etherpad | |
* pad.ubuntu.com | |
* | |
*/ | |
@-moz-document domain("pad.ubuntu.com") { | |
/* Make sure the last line of the chat is shown */ |
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
// ==UserScript== | |
// @name Show the full Find-a-Task index | |
// @namespace knome-ubuntu | |
// @include http://community.ubuntu.com/contribute/find-a-task/* | |
// @version 1 | |
// @grant none | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js | |
// ==/UserScript== | |
jQuery.noConflict( ); |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("api.jquery.com") { | |
/* Header */ | |
#logo-events { | |
padding: 0 0 1.5em 0; | |
} | |
#logo-events .logo a { | |
height: 1.8em; | |
background-size: auto 100%; |