summaryrefslogtreecommitdiff
path: root/data/html/event-log.html
blob: fc3f625218135a0fcd9196cee4347541d6a9d089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!doctype html>
<html>
    <head>
        <title>SparkleShare Event Log</title>
        <style>
            body {
                background-color: #dedede;
                color:            <!-- $body-color -->;
                font-size:        <!-- $body-font-size -->;
                font-family:      <!-- $body-font-family -->;
                margin:           0;
                padding:          0;
                margin-top:       20px;
                -webkit-user-select: none;
            }

            small {
                font-size: <!-- $small-font-size -->;
                color:     <!-- $secondary-font-color -->;
            }

            .moved-arrow {
                color: <!-- $secondary-font-color -->;
            }

            .day-entry-header {
                font-size:     <!-- $day-entry-header-font-size -->;         
                color:         #444;
                margin-bottom: 9px;
                margin-left:   30px;
            }
            
            .day-entry-content {
                padding: 9px;
            }
                        
            a {
                color:           <!-- $a-color -->;
                text-decoration: none;
            }

            a:hover {
                color: <!-- $a-hover-color -->;
            }

            .event-time {
                opacity: 0.8;
                font-size:     80%;
                color:         #fff;
                float: right;
                padding: 3px 15px;
                font-weight: bold;
                -webkit-border-radius: 100px;
            }

            .event-entry-content {
                display:               block;
                width:                 440px;
                background-color:      #f0f0f0;
                margin-left:           auto;
                margin-right:          auto;
                margin-bottom:         12px;
                padding:               0px;
                padding-bottom: 6px;
                border:                #ccc 1px solid;
            }

            .wrapper {
                float: left;
            }

            dl {
                padding : 0;
                margin:  0;
            }
            
            dd {
                width:          90%;
                overflow:       hidden;
                text-overflow:  ellipsis;
                padding:        0;
                padding-top:    2px;
                padding-bottom: 4px;
                padding-left:   22px;
                margin:         0;
                margin-bottom:  2px;
                margin-left:    12px;
                border-bottom:  1px solid #ddd;
                background-repeat: no-repeat;
                background-position: center left;
            }

            dd:last-child {
                border: none;
            }

            .document-added {
                background-image: url('<!-- $document-added-background-image -->');
            }

            .document-deleted {
                background-image: url('<!-- $document-deleted-background-image -->');
            }

            .document-edited {
                background-image: url('<!-- $document-edited-background-image -->');
            }

            .document-moved {
                background-image: url('<!-- $document-moved-background-image -->');
            }

            .no-buddy-icon {
                float:               left;
                margin-right:        12px;
                width:               36px;
                background-image:    url('<!-- $no-buddy-icon-background-image -->');
                background-repeat:   no-repeat;
                background-position: top center; 
            }

            .buddy-icon {
                width:            36px;
                height:           36px;
                background-color: #fff;
            }

            .event-info {
                float: left;
                padding: 15px;
                margin-bottom: 6px;
                width: 410px;
                background-color: #fff;
                border-bottom: 1px #ccc solid;
            }
        </style>
    </head>
    <body>
        <!-- $event-log-content -->
    </body>
</html>