~ubuntu-branches/ubuntu/vivid/liferea/vivid-proposed

« back to all changes in this revision

Viewing changes to css/user.css

  • Committer: Package Import Robot
  • Author(s): bojo42
  • Date: 2012-03-29 14:17:21 UTC
  • mfrom: (1.3.9) (3.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20120329141721-tbfopcrc5797wxt7
Tags: 1.8.3-0.1ubuntu1
* New upstream release (LP: #290666, #371754, #741543, #716688)
* Merge from Debian unstable (LP: #935147), remaining changes:
* debian/patches:
  - drop gtk-status-icon.patch & notification-append as in upstream
  - drop fix_systray_behavior as mostly upstreamed and rest seems unused
  - 01_ubuntu_feedlists: update & rename, move planets to "Open Source"  
  - add_X-Ubuntu-Gettext-Domain: rebase
  - libunity.patch: rebase, apply before indicator patch (liferea_shell.c)
  - libindicate_increase_version.patch: exclude from libindicate.patch
  - deactivate libindicate.patch, seems partly upstreamed and needs rework
* debian/control: libindicate-dev, libindicate-gtk-dev & libunity-dev
* debian/liferea.indicate & liferea.install: ship indicator desktop file
* debian/rules: enable libindicate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
   This is a template file which you can use to redefine the Liferea
 
3
   CSS definitions use to render items. Below you find empty class
 
4
   definitions including comments describing what they are used for.
 
5
  
 
6
   Before you start customizing...
 
7
 
 
8
   Reloading:
 
9
   ==========
 
10
 
 
11
   For performance reasons Liferea will read this CSS file only 
 
12
   on startup. So when you modify it please restart Liferea for
 
13
   changes to take effect.
 
14
 
 
15
  
 
16
   About Font Definitions: 
 
17
   =======================
 
18
 
 
19
   You should avoid setting absolute font sizes. This allows Liferea
 
20
   to follow the GNOME font and font size. Use relative definitions
 
21
   instead (e.g. "1.2em" or "0.8em").
 
22
 
 
23
   
 
24
   Color Definitions:
 
25
   ==================
 
26
   
 
27
   Try to reuse GTK theme colors. Liferea uses the following definitions
 
28
   and will be replace them on the fly:
 
29
   
 
30
       GTK-COLOR-FG
 
31
       GTK-COLOR-BG
 
32
       GTK-COLOR-LIGHT
 
33
       GTK-COLOR-DARK
 
34
       GTK-COLOR-MID
 
35
       GTK-COLOR-BASE
 
36
       GTK-COLOR-TEXT
 
37
       GTK-COLOR-NORMAL-LINK
 
38
       GTK-COLOR-VISITED-LINK
 
39
 
 
40
 
 
41
   Inspecting the HTML:
 
42
   ====================
 
43
 
 
44
   If the definitions below do not help you, run Liferea with
 
45
   the parameter "--debug-html". Then Liferea will dump HTML
 
46
   into 
 
47
 
 
48
          ~/.liferea_1.8/output.xhtml
 
49
 
 
50
   each time it renders an item or a feed. So you can check for
 
51
   style classes and the layout you want to affect.
 
52
 
 
53
 */
 
54
 
 
55
/* Item display rendering header table (with title, categories...) */
 
56
// table.itemhead { }
 
57
 
 
58
/* Feed display rendering header table (with title, categories...) */
 
59
// table.feedhead { }
 
60
 
 
61
/* Left <td> of feed/item table display containing favicon */
 
62
// td.headleft { }
 
63
// a.favicon { }
 
64
// a.favicon img { }
 
65
 
 
66
/* Right <td> of feed/item table display containing title */
 
67
// td.headright { }
 
68
 
 
69
/* Metadata display table (inside header table) */
 
70
// table.headmeta { }
 
71
 
 
72
/* 2 pane mode: Item menu definitions */
 
73
// .itemmenu { }
 
74
// .itemmenu a { }
 
75
// .itemmenu a:hover { }
 
76
// .itemmenu * span { }
 
77
// .itemmenu * img { }
 
78
 
 
79
/* Header table fields to different item metadata */
 
80
// .author, .categories, .source { }
 
81
// .date { }
 
82
 
 
83
/* Item/feed description */
 
84
// div.content { }
 
85
 
 
86
/* Comment rendering */
 
87
// div.comment { }
 
88
// div.comment_body { }
 
89
// div.comment_title { }
 
90
 
 
91
/* Styles for the HTTP error box at the beginning
 
92
   of the feed description and for item comment feeds */
 
93
// #errors, #commentFeedError { }
 
94
// #parseError, #filterError, #updateError { }
 
95
// div.xmlparseroutput { }
 
96
// span.details, span.detaillink { }
 
97
// span.details { }
 
98
// span.showmore { }
 
99
 
 
100
/* namespace specific styles */
 
101
// div.blogchanneltitle { }
 
102
// div.photoheader { }
 
103
 
 
104
/* Gravatar embedding */
 
105
// img.gravatar { }
 
106
 
 
107
/* OpenStreeMap embedded map*/
 
108
// #map img { }
 
109
 
 
110
/* Slashdot Header */
 
111
// .slash { }
 
112
// .slashSection, .slashDepartment { }
 
113
// .slashValue { }
 
114
 
 
115