diff options
author | David Härdeman <david@hardeman.nu> | 2017-04-16 14:38:47 +0200 |
---|---|---|
committer | David Härdeman <david@hardeman.nu> | 2017-04-16 14:38:47 +0200 |
commit | baf81f3c2715d218678ff65db5c711f021a69eda (patch) | |
tree | 00b504d22f5b3d12768acc2fa693fd6ac6e18aa0 | |
parent | 01bd9b2dbf980acdcb97d59e35ac01e01c837e99 (diff) |
Use CSS syntax for fonts
-rw-r--r-- | rcm.css | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -5,7 +5,8 @@ } .tooltip { - font: monospace 12; + font-family: monospace; + font-size: 12pt; } #RemoteControlClientRemoteLabel { @@ -47,7 +48,8 @@ border-image: none; background-image: none; padding: 0px; - font: sans-serif 12; + font-family: sans-serif; + font-size: 12pt; background-image: -gtk-gradient (linear, left top, left bottom, @@ -76,7 +78,8 @@ */ background-color: @entry-color; color: #8888ea; - font: sans-serif 12; + font-family: sans-serif; + font-size: 12pt; } #RemoteControlClientRemoteFrame GtkButton GtkImage { |