~umang/indicator-stickynotes/trunk

« back to all changes in this revision

Viewing changes to style.css

  • Committer: Umang Varma
  • Date: 2022-03-12 23:34:38 UTC
  • Revision ID: git-v1:5c567b9671f55f67086ff6aba645c3fed424813a
Bump version 0.5.9 -> 0.5.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* 
2
 
 * Copyright © 2012 Umang Varma <umang.me@gmail.com>
 
2
 * Copyright © 2012-2018 Umang Varma <umang.me@gmail.com>
3
3
 * 
4
4
 * This file is part of indicator-stickynotes.
5
5
 * 
18
18
 * 
19
19
 */
20
20
 
21
 
GtkSourceView
22
 
{
23
 
        background-color:transparent;
24
 
}
25
 
GtkSourceView:selected
26
 
{
27
 
        background-color:#FFA500;
28
 
        color:#000;
29
 
}
30
 
GtkWindow#main-window
31
 
{
32
 
        background-image: -gtk-gradient(linear,
33
 
                left top, left bottom,
34
 
      color-stop (0, #ff7),
35
 
      color-stop (0.66, #fe0));
36
 
}
37
 
GtkButton
38
 
{
39
 
   background:transparent;
 
21
#main-window, #txt-note, #txt-note text
 
22
{
 
23
    background-color: $bgcolor_hex;
 
24
    color: $text_color;
 
25
}
 
26
 
 
27
#txt-note text selection
 
28
{
 
29
    color: $bgcolor_hex;
 
30
    background-color: $text_color;
40
31
}