~umang/indicator-stickynotes/trunk

16 by Umang Varma
Licensed under GPLv3
1
/* 
2
 * Copyright © 2012 Umang Varma <umang.me@gmail.com>
3
 * 
4
 * This file is part of indicator-stickynotes.
5
 * 
6
 * indicator-stickynotes is free software: you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or (at your
9
 * option) any later version.
10
 * 
11
 * indicator-stickynotes is distributed in the hope that it will be useful, but
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14
 * more details.
15
 * 
16
 * You should have received a copy of the GNU General Public License along with
17
 * indicator-stickynotes.  If not, see <http://www.gnu.org/licenses/>.
18
 * 
19
 */
20
34 by Umang Varma
Specified SourceView not TextView in style.css
21
GtkSourceView
1 by Umang Varma
Initial commit. Somewhat working sticky notes.
22
{
23
	background-color:transparent;
24
}
34 by Umang Varma
Specified SourceView not TextView in style.css
25
GtkSourceView:selected
6 by Umang Varma
Selected text background color
26
{
27
	background-color:#FFA500;
28
	color:#000;
29
}
14 by Umang Varma
Added confirm delete functionality
30
GtkWindow#main-window
1 by Umang Varma
Initial commit. Somewhat working sticky notes.
31
{
32
	background-image: -gtk-gradient(linear,
33
		left top, left bottom,
17 by Umang Varma
Improve UI
34
      color-stop (0, #ff7),
35
      color-stop (0.66, #fe0));
1 by Umang Varma
Initial commit. Somewhat working sticky notes.
36
}
37
GtkButton
38
{
17 by Umang Varma
Improve UI
39
   background:transparent;
1 by Umang Varma
Initial commit. Somewhat working sticky notes.
40
}