1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* This file is part of GPump, a Pump.io client.
*
* GPump (THE SOFTWARE) is made available under the terms and conditions of the
* GNU Lesser General Public Licence 3.0. A copy of the licence can be read
* in the file lgpl-3.0.txt in the root of this project.
*/
/** @file
* This file is not in use right now. included for future use.
*/
const Gdk = imports.gi.Gdk;
const Gtk = imports.gi.Gtk;
const css_style = "\n";
function load_css () {
let provider = new Gtk.CssProvider ();
provider.load_from_data (css_style);
Gtk.StyleContext.add_provider_for_screen(Gdk.Screen.get_default(),
provider,
Gtk.STYLE_PROVIDER_PRIORITY_USER);
}
|