16
by Umang Varma
Licensed under GPLv3 |
1 |
/*
|
157
by Umang Varma
Updated copyright year and translations, bumped version |
2 |
* Copyright © 2012-2018 Umang Varma <umang.me@gmail.com>
|
16
by Umang Varma
Licensed under GPLv3 |
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 |
||
156
by Umang Varma
Colors are back |
21 |
#main-window, #txt-note |
1
by Umang Varma
Initial commit. Somewhat working sticky notes. |
22 |
{
|
121
by Umang Varma
Removed shadow feature |
23 |
background-color: $bgcolor_hex; |
51
by Umang Varma
Added text color editing support |
24 |
color: $text_color; |
126
by Umang Varma
Selected text color issue fixed |
25 |
}
|
157.1.3
by Zheng-Ling Lai
Fix unchangable text color |
26 |
|
27 |
#txt-note text |
|
28 |
{
|
|
29 |
color: $text_color; |
|
30 |
background-color: transparent; |
|
31 |
}
|
|
32 |
||
156
by Umang Varma
Colors are back |
33 |
#txt-note text selection |
126
by Umang Varma
Selected text color issue fixed |
34 |
{
|
35 |
color: $bgcolor_hex; |
|
36 |
background-color: $text_color; |
|
51
by Umang Varma
Added text color editing support |
37 |
}
|