Change the way negative-numbers class was defined in CSS

After testing with Gtk3.10, needed to change the way the negative
numbers class was defined.
This commit is contained in:
Robert Fewell
2017-09-28 14:31:12 +01:00
parent 0d63bf5572
commit 0c002682dd
2 changed files with 12 additions and 7 deletions
+2 -7
View File
@@ -33,13 +33,8 @@
}
/* Negative value label colors */
.default-color {
color: currentColor;
}
.negative-numbers {
color: rgb(75%, 0%, 0%);
}
@define-color default-color currentColor;
@define-color negative-numbers rgb(75%, 0%, 0%);
/* Change font color by mixing with grey */
.lighter-grey-mix {
+10
View File
@@ -2,6 +2,16 @@
unless they have been named or have style classes added. Only
the widget type can be configured unless they are named in code */
/* Negative value label colors */
.default-color {
color: @default-color;
}
.negative-numbers {
color: @negative-numbers;
}
/* Register Cursor padding settings, make sure entry matches sheet.h */
cursor entry {
padding: 2px 5px 2px 5px;