~ubuntu-branches/ubuntu/utopic/lazygal/utopic

« back to all changes in this revision

Viewing changes to themes/image-index/SHARED_style.tcss

  • Committer: Package Import Robot
  • Author(s): Michal Čihař, Michal Čihař, Jakub Wilk
  • Date: 2013-06-06 12:05:08 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20130606120508-e3g94vl8w9pw7za7
Tags: 0.8-1
[ Michal Čihař ]
* New upstream release.
  - Uses new Genshi templates (Closes: #696682).
  - Correctly handles wronly encoded artist in EXIF (Closes: #696648).
  - Uses GExiv2 (LP: #1074028).
* Depend on GExiv2 instead of pyexiv2.
* Bump standards to 3.9.4.
* Use debhelper 9.

[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#if bgcolor
 
1
{% if bgcolor %}
2
2
body{
3
3
    background-color:${bgcolor}
4
4
}
5
 
#end
 
5
{% end %}
6
6
 
7
 
#if txtcolor
 
7
{% if txtcolor %}
8
8
body{
9
9
    color:${txtcolor}
10
10
}
11
 
#end
 
11
{% end %}
12
12
 
13
13
p{
14
14
    text-align:center;
15
15
}
16
16
 
17
17
a{
18
 
#if lnkcolor
 
18
{% if lnkcolor %}
19
19
    color:${lnkcolor};
20
 
#end
21
 
#if not lnkcolor
 
20
{% end %}
 
21
{% if not lnkcolor %}
22
22
    color:blue;
23
 
#end
24
 
#if lnkdecoration
 
23
{% end %}
 
24
{% if lnkdecoration %}
25
25
    text-decoration:${lnkdecoration};
26
 
#end
27
 
#if not lnkdecoration
 
26
{% end %}
 
27
{% if not lnkdecoration %}
28
28
    text-decoration:none;
29
 
#end
 
29
{% end %}
30
30
}
31
31
 
32
 
\#image_links{
 
32
#image_links{
33
33
    clear: both;
34
34
    padding-left:7em;
35
35
    padding-right:7em;
36
36
}
37
37
 
38
 
\#prev_link{
 
38
#prev_link{
39
39
    position:absolute;
40
40
    top:50%;
41
41
    left:0.1em;
42
42
}
43
43
 
44
 
\#next_link{
 
44
#next_link{
45
45
    position:absolute;
46
46
    top:50%;
47
47
    right:0.1em;
71
71
    margin: 0;
72
72
}
73
73
 
74
 
\#subgal_links li {
 
74
#subgal_links li {
75
75
    margin: 0.5em;
76
76
}
77
77
 
78
 
\#image_links p{
 
78
#image_links p{
79
79
    text-align:justify;
80
80
}
81
81
 
82
 
\#footer {
 
82
#footer {
83
83
    clear: both;
84
84
}
85
85
 
86
 
\#footer p {
 
86
#footer p {
87
87
    text-align:justify;
88
88
}
89
89