/* ==UserStyle==
@name           [Oli Bros] Customisation: Syncthing
@namespace      The Oliver Bros
@version        0.0.3
@description    General usability improvements
==/UserStyle== */

@-moz-document
regexp("http(s)?://10.0.0.*"),
regexp("http(s)?://192.168.*"),
regexp("http(s)?://syncthing.*"),
regexp("http(s)?://127.0.0.1.*"),
regexp("http(s)?://localhost.*") {
	
html[ng-app="syncthing"] {
	
	span[ng-if="folder.type == 'sendreceive'"]::before {
		color: #1d6fa5;
	}
	
	span[ng-if="folder.type == 'sendonly'"]::before {
		color: hsl(44 100% 50%);
	}
	
	span[ng-if="folder.type == 'receiveonly'"]::before {
		color: hsl(150 100% 40%);
	}	
	
}

}