Overview

Request 2922 (accepted)

Submit the tarball thing so that I can test the enterprise side of it


roundcubemail.spec Changed
x
 
1
@@ -181,18 +181,26 @@
2
 Provides: %{name}-plugin-libkolab = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
3
 Provides: %{name}-plugin-acl = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
4
 Provides: %{name}-plugin-archive = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
5
+Provides: %{name}-plugin-attachment_reminder = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
6
+Provides: %{name}-plugin-emoticons = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
7
+Provides: %{name}-plugin-enigma = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
8
+Provides: %{name}-plugin-hide_blockquote = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
9
 Provides: %{name}-plugin-jqueryui = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
10
 Provides: %{name}-plugin-kolab_chat = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
11
+Provides: %{name}-plugin-logon_page = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
12
 Provides: %{name}-plugin-managesieve = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
13
 Provides: %{name}-plugin-markasjunk = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
14
 Provides: %{name}-plugin-newmail_notifier = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
15
 Provides: %{name}-plugin-password = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
16
+Provides: %{name}-plugin-redundant_attachments = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
17
 Provides: %{name}-plugin-zipdownload = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
18
 Provides: %{name}-plugin-contextmenu = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
19
 
20
-%if 0%{?plesk}
21
+%if 0%{?plesk} > 0
22
 Provides: %{name}-skin-plesk = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
23
 Provides: %{name}-skin-plesk-larry = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
24
+%else
25
+Provides: %{name}-skin-kolab = %{?epoch:%{epoch}:}%{plugin_version}-%{release}
26
 %endif
27
 
28
 %description
29
@@ -212,7 +220,7 @@
30
     rm -rvf ${dir}
31
 done
32
 
33
-%if 0%{?plesk}
34
+%if 0%{?plesk} > 0
35
 cp -vf %{SOURCE100} config/config.inc.php.sample
36
 cp -vf %{SOURCE101} plugins/managesieve/config.inc.php.dist
37
 cp -vf %{SOURCE102} plugins/password/config.inc.php.dist
38
@@ -221,6 +229,9 @@
39
 cp -vf %{SOURCE105} plugins/kolab_chat/config.inc.php.dist
40
 cp -vf %{SOURCE106} plugins/kolab_folders/config.inc.php.dist
41
 cp -vf %{SOURCE107} plugins/libkolab/config.inc.php.dist
42
+rm -rvf skins/kolab/ plugins/libkolab/skins/kolab/ public_html/assets/skins/kolab/
43
+%else
44
+rm -rvf skins/plesk/ plugins/libkolab/skins/plesk/ public_html/assets/skins/plesk/
45
 %endif
46
 
47
 #FIXME doesn't apply?
48
@@ -277,7 +288,8 @@
49
     %{buildroot}%{confdir} \
50
     %{buildroot}%{datadir}/public_html \
51
     %{buildroot}%{logdir} \
52
-    %{buildroot}%{tmpdir}/plugins
53
+    %{buildroot}%{tmpdir}/plugins \
54
+    %{buildroot}%{tmpdir}/plugins/enigma
55
 
56
 pushd %{name}-%{version}%{?dash_rel_suffix}
57
 
58
@@ -546,6 +558,7 @@
59
 %attr(0770,root,%{httpd_group}) %dir %{logdir}
60
 %attr(0770,root,%{httpd_group}) %dir %{tmpdir}
61
 %attr(0770,root,%{httpd_group}) %dir %{tmpdir}/plugins
62
+%attr(0770,root,%{httpd_group}) %dir %{tmpdir}/plugins/enigma
63
 %dir %{_localstatedir}/lib/rpm-state/
64
 %dir %{_localstatedir}/lib/rpm-state/roundcubemail/
65
 
66
buildroundcubemailtarball.sh Changed
116
 
1
@@ -5,7 +5,6 @@
2
 VERSION=1.4.13
3
 GIT_REF=1.4.13
4
 NAME=roundcubemail-$VERSION
5
-PLESK_SKIN="roundcubemail-skin-plesk-0.4.0"
6
 
7
 if [ -x "/usr/local/bin/lessc" ]; then
8
     LESSC=/usr/local/bin/lessc
9
@@ -214,58 +213,65 @@
10
 
11
 popd
12
 
13
+# Install skins
14
+for tar in $(ls -1 $ROOT_DIR/*skin*.tar.gz 2>/dev/null); do
15
+    if [ -d "$(basename $tar .tar.gz)" ]; then
16
+        rm -rf $(basename $tar .tar.gz)
17
+    fi
18
 
19
-# Install the plesk skin
20
-[ -d $PLESK_SKIN ] && rm -rf $PLESK_SKIN
21
-tar xzf "$ROOT_DIR/$PLESK_SKIN.tar.gz"
22
+    tar zxf $tar
23
 
24
-cp -r $PLESK_SKIN/plesk $NAME/skins/
25
+    cp -r $(basename $tar .tar.gz)/* $NAME/skins/.
26
+done
27
 
28
 pushd $NAME
29
 
30
-# Copy elastic skin over plesk skin (but don't overwrite what already existis)
31
-find \
32
-    ./skins/elastic/ \
33
-    ./plugins/libkolab/skins/elastic/ \
34
-    -type f | sort | while read file; do
35
-    target_dir=$(dirname ${file} | sed -e 's|%{datadir}|.|g' -e 's|./public_html/assets/|./|g' -e 's|./public_html/assets/plugins/libkolab/|./|g' -e 's/elastic/plesk/g')
36
-    file_name=$(basename ${file})
37
-    echo "Target: $target_dir, file $file_name"
38
-    if [ ! -d ${target_dir} ]; then
39
-        mkdir -p ${target_dir}
40
-    fi
41
-    if [ ! -f "${target_dir}/${file_name}" ]; then
42
-        cp -av "${file}" "${target_dir}"
43
-    fi
44
-done
45
+for skin in $(ls -1d skins/* | grep -vE '(classic|elastic|larry)'); do
46
+    skin=$(basename $skin)
47
 
48
-# Replace elastic references, but don't change the depends value in meta.json
49
-sed -i -e 's/"elastic"/"plesk"/g' \
50
-    $(find skins/plesk/ plugins/libkolab/skins/plesk/ -type f -not -name "meta.json")
51
+    # Copy elastic skin over $skin (but don't overwrite what already existis)
52
+    find \
53
+        ./skins/elastic/ \
54
+        ./plugins/libkolab/skins/elastic/ \
55
+        -type f | sort | while read file; do
56
+        target_dir=$(dirname ${file} | sed -e 's|%{datadir}|.|g' -e 's|./public_html/assets/|./|g' -e 's|./public_html/assets/plugins/libkolab/|./|g' -e "s/elastic/$skin/g")
57
+        file_name=$(basename ${file})
58
+        echo "Target: $target_dir, file $file_name"
59
+        if [ ! -d ${target_dir} ]; then
60
+            mkdir -p ${target_dir}
61
+        fi
62
+        if [ ! -f "${target_dir}/${file_name}" ]; then
63
+            cp -av "${file}" "${target_dir}"
64
+        fi
65
+    done
66
 
67
-pushd skins/plesk
68
-$LESSC -x styles/styles.less > styles/styles.css
69
-$LESSC -x styles/print.less > styles/print.css
70
-$LESSC -x styles/embed.less > styles/embed.css
71
-popd
72
-$LESSC --clean-css="--s1 --advanced" --rewrite-urls=all plugins/libkolab/skins/plesk/libkolab.less > plugins/libkolab/skins/plesk/libkolab.min.css
73
+    # Replace elastic references, but don't change the depends value in meta.json
74
+    sed -i -e "s/\"elastic\"/\"$skin\"/g" \
75
+        $(find skins/$skin/ plugins/libkolab/skins/$skin/ -type f -not -name "meta.json")
76
 
77
-#find . | sort
78
+    pushd skins/$skin
79
+    $LESSC -x styles/styles.less > styles/styles.css
80
+    $LESSC -x styles/print.less > styles/print.css
81
+    $LESSC -x styles/embed.less > styles/embed.css
82
+    popd
83
+    $LESSC --clean-css="--s1 --advanced" --rewrite-urls=all plugins/libkolab/skins/$skin/libkolab.less > plugins/libkolab/skins/$skin/libkolab.min.css
84
 
85
+    #find . | sort
86
 
87
-# Compile and compress the CSS
88
-#for file in `find . -type f -name "styles.less" -o -name "print.less" -o -name "embed.less" -o -name "libkolab.less"`; do
89
-#    %{_bindir}/lessc --relative-urls ${file} > $(dirname ${file})/$(basename ${file} .less).css
90
-#
91
-#    sed -i \
92
-#        -e "s|../../../skins/plesk/images/contactpic.png|../../../../skins/plesk/images/contactpic.png|" \
93
-#        -e "s|../../../skins/plesk/images/watermark.jpg|../../../../skins/plesk/images/watermark.jpg|" \
94
-#        $(dirname ${file})/$(basename ${file} .less).css
95
-#
96
-#    cat $(dirname ${file})/$(basename ${file} .less).css
97
-#done
98
+    # Compile and compress the CSS
99
+    #for file in `find . -type f -name "styles.less" -o -name "print.less" -o -name "embed.less" -o -name "libkolab.less"`; do
100
+    #    %{_bindir}/lessc --relative-urls ${file} > $(dirname ${file})/$(basename ${file} .less).css
101
+    #
102
+    #    sed -i \
103
+    #        -e "s|../../../skins/plesk/images/contactpic.png|../../../../skins/plesk/images/contactpic.png|" \
104
+    #        -e "s|../../../skins/plesk/images/watermark.jpg|../../../../skins/plesk/images/watermark.jpg|" \
105
+    #        $(dirname ${file})/$(basename ${file} .less).css
106
+    #
107
+    #    cat $(dirname ${file})/$(basename ${file} .less).css
108
+    #done
109
 
110
-bin/updatecss.sh --dir skins/plesk
111
+    bin/updatecss.sh --dir skins/$skin
112
+done
113
 
114
 popd
115
 
116
roundcubemail-1.4.13.tar.gz Changed
roundcubemail-skin-kolab-0.5.0.tar.gz Added
roundcubemail-skin-plesk-0.4.0.tar.gz/autogen.sh Deleted
20
 
1
@@ -1,18 +0,0 @@
2
-#!/bin/bash
3
-
4
-version=$1
5
-
6
-git archive --prefix=roundcubemail-skin-base4kids-${version}/ HEAD | \
7
-    gzip -c > roundcubemail-skin-base4kids-${version}.tar.gz
8
-
9
-git archive --prefix=roundcubemail-skin-contargo-${version}/ HEAD | \
10
-    gzip -c > roundcubemail-skin-contargo-${version}.tar.gz
11
-
12
-git archive --prefix=roundcubemail-skin-kolab-${version}/ HEAD | \
13
-    gzip -c > roundcubemail-skin-kolab-${version}.tar.gz
14
-
15
-git archive --prefix=roundcubemail-skin-now-${version}/ HEAD | \
16
-    gzip -c > roundcubemail-skin-now-${version}.tar.gz
17
-
18
-git archive --prefix=roundcubemail-skin-plesk-${version}/ HEAD | \
19
-    gzip -c > roundcubemail-skin-plesk-${version}.tar.gz
20
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/README.md Deleted
60
 
1
@@ -1,58 +0,0 @@
2
-Roundcube Webmail Skin "Base4Kids 2 Elastic"
3
-============================================
4
-
5
-This skin package contains modifications of the Roundcube's Elastic skin.
6
-It can be used, modified and redistributed according to
7
-the terms described in the LICENSE section.
8
-
9
-For information about building or modifying Roundcube skins please visit
10
-https://github.com/roundcube/roundcubemail/wiki/Skins
11
-
12
-
13
-LICENSE
14
--------
15
-
16
-The contents of this folder can be redistributed and/or modified
17
-under the terms of the GNU Affero General Public License as published
18
-by the Free Software Foundation, either version 3 of the License,
19
-or (at your option) any later version.
20
-
21
-
22
-INSTALLATION
23
-------------
24
-
25
-All styles are written using LESS syntax. Thus it needs to be compiled
26
-using the `lessc` command line tool. This comes with the `nodejs-less`
27
-RPM package which depends on nodejs.
28
-
29
-First create a skin folder in the Roundcube skins directory as a copy
30
-of the Elastic skin:
31
-
32
-```
33
-    $ cp -r roundcubemail/skins/elastic roundcubemail/skins/base4kids
34
-    $ cp -r roundcubemail-skin-elastic/kolab/* roundcubemail/skins/base4kids
35
-```
36
-
37
-Then you can compile css of the skin in a usual way:
38
-
39
-```
40
-    $ cd roundcubemail/skins/base4kids
41
-    $ lessc -x styles/styles.less > styles/styles.css
42
-    $ lessc -x styles/print.less > styles/print.css
43
-    $ lessc -x styles/embed.less > styles/embed.css
44
-```
45
-
46
-Css for external plugins need to be rebuild too, e.g. Kolab plugins.
47
-
48
-```
49
-    $ cd roundcubemail-plugins-kolab/plugins/libkolab
50
-    $ cp -r skins/elastic skins/base4kids
51
-    $ sed -i 's/"elastic"/"base4kids"/g' skins/base4kids/libkolab.less
52
-    $ lessc --relative-urls -x skins/base4kids/libkolab.less > skins/base4kids/styles.css
53
-```
54
-
55
-References to image files from the included CSS files can be appended
56
-with cache-buster marks to avoid browser caching issues after updating.
57
-
58
-Run `bin/updatecss.sh --dir skins/base4kids` before packaging the skin
59
-or after installing it on the destination system.
60
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Italic Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Italic/OpenSans-Italic.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Italic/OpenSans-Italic.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Light Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Light/OpenSans-Light.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Light/OpenSans-Light.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/LightItalic Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/LightItalic/OpenSans-LightItalic.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/LightItalic/OpenSans-LightItalic.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Regular Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Regular/OpenSans-Regular.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Regular/OpenSans-Regular.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Semibold Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Semibold/OpenSans-Semibold.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/Semibold/OpenSans-Semibold.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/SemiboldItalic Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/images Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/images/favicon.ico Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/images/logo.svg Deleted
4
 
1
@@ -1,1 +0,0 @@
2
-<svg xmlns="http://www.w3.org/2000/svg" width="316.203" height="213.534" viewBox="0 0 316.203 213.534"><g transform="translate(3360 -2497)"><path d="M12.6,50.189l2.232-2.232c4.2-4.2,6.695-6.957,12.473-6.957H41.221c3.282,0,6.17,1.838,9.32,4.463l4.332,3.676C59.861,53.47,61.7,57.014,61.7,63.712V89.049c0,6.695-1.838,10.239-6.826,14.573L50.541,107.3c-3.019,2.494-6.695,4.463-9.845,4.463h-13c-5.119,0-8.664-3.148-12.208-6.432L12.6,102.57v.788c0,4.069-1.313,8.4-6.3,8.4-5.385,0-6.3-4.463-6.3-8.795V23.67c0-4.332.919-8.664,6.3-8.664s6.3,4.332,6.3,8.664Zm0,31.245c0,4.069.525,5.645,3.807,8.4l7.22,6.172c1.575,1.31,3.544,3.148,4.857,3.148h9.583a5.65,5.65,0,0,0,3.938-1.181l5.513-4.6c1.444-1.181,1.575-4.2,1.575-6.695V64.363c0-2.494-.656-4.463-1.706-5.251l-5.776-4.463a4.43,4.43,0,0,0-3.019-1.05H29.8a8.513,8.513,0,0,0-5.251,2.232l-8.139,7.094c-2.1,1.706-3.807,3.676-3.807,7.482Z" transform="translate(-3360 2523.029)"/><path d="M247.134,47c2.232-1.969,5.385-5.119,8.4-5.119a6.334,6.334,0,0,1,6.3,6.432c0,3.019-1.972,4.463-4.2,6.3L233.22,74.832,262.889,99.51c2.363,1.969,4.463,3.413,4.463,6.695a6.334,6.334,0,0,1-6.3,6.435c-2.494,0-4.069-1.575-5.907-3.019L223.506,83.236l-5.251,4.726v16.015c0,4.335-.919,8.666-6.3,8.666s-6.3-4.332-6.3-8.666V24.551c0-4.332.919-8.664,6.3-8.664s6.3,4.332,6.3,8.664V71.288Z" transform="translate(-3395.674 2597.565)" fill="#d50025"/><path d="M217.225,213.35a9.572,9.572,0,0,1-9.531-8.809c-1.4-17.491.429-55.956,2.83-90.312-2.232.585-4.14,1.261-5.614,1.7-53.771,15.985-60.553,4.365-62.779.547-3.954-6.779-.107-14.992,8.379-27.782,7.187-10.83,17.081-23.549,24.115-32.311,16.458-20.5,38.765-46.059,47.7-53.049,8.043-6.293,13.586-2.007,15.093-.544,5.6,5.428,4.5,14.267-.345,40.193-.938,5.018-1.824,9.76-2.182,12.58-.842,6.648-2.032,19.017-3.254,33.985,17.579-4.11,35.254-8.035,36.517-8.314A9.572,9.572,0,1,1,272.3,99.921c-.345.077-22.712,5.04-42.2,9.654-2.554,35.371-4.668,76.584-3.32,93.441A9.576,9.576,0,0,1,218,213.323C217.739,213.339,217.479,213.35,217.225,213.35Zm2.21-180.277c-18.566,20.546-47.158,56.035-56.68,71.91,8.068-.49,21.971-3.027,36.7-7.406,2.926-.87,7.351-2.029,12.572-3.328,1.444-18.181,2.9-33.43,3.872-41.1.427-3.38,1.321-8.158,2.355-13.69C218.6,37.626,219.008,35.422,219.434,33.073Z" transform="translate(-3431.156 2496.999)" fill="#d50025"/><path d="M342.355,100.957a5.507,5.507,0,0,1-5.069-7.659c4.571-10.776,23.734-24.351,39.916-34.973l2.743-1.808c5.986-3.937,21.885-14.4,22.4-24.411C402.694,25.273,401,17.19,384.7,15.338c-13.187-1.5-24.533,11.491-24.645,11.623a5.509,5.509,0,0,1-8.38-7.152c.612-.719,15.219-17.589,34.268-15.416,24.957,2.836,27.881,18.934,27.4,28.277-.8,15.586-19.4,27.824-27.344,33.049l-2.754,1.814c-13.044,8.562-21.509,14.988-26.951,19.8,14.486-2.156,36.407-4.181,53.764-.381A5.508,5.508,0,0,1,407.7,97.712c-19.946-4.362-49.712-.094-64.155,3.114A5.484,5.484,0,0,1,342.355,100.957Z" transform="translate(-3458.186 2609.577)"/></g></svg>
3
\ No newline at end of file
4
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/images/watermark.png Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/meta.json Deleted
9
 
1
@@ -1,7 +0,0 @@
2
-{
3
-   "name": "Base4Kids (Responsive)",
4
-   "author": "MULTA MEDIO Informationssysteme AG, Würzburg, Deutschland",
5
-   "license": "GNU Affero General Public License",
6
-   "license-url": "http://www.gnu.org/licenses/agpl.html",
7
-   "extends": "elastic"
8
-}
9
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/styles Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/styles/_styles.less Deleted
197
 
1
@@ -1,195 +0,0 @@
2
-/**
3
- * Styles for the Kolab web client variant of the Roundcube Elastic skin
4
- *
5
- * Copyright (C) 2018-2019, Kolab Systems AG <contact@kolabsystems.com>
6
- *
7
- * The contents of this folder can be redistributed and/or modified
8
- * under the terms of the GNU Affero General Public License as published
9
- * by the Free Software Foundation, either version 3 of the License,
10
- * or (at your option) any later version.
11
- */
12
-
13
-@font-face {
14
-  font-family: 'Open Sans';
15
-  font-weight: 300;
16
-  font-style: normal;
17
-  src: url("../fonts/open-sans/Light/OpenSans-Light.woff2") format("woff2"), url("../fonts/open-sans/Light/OpenSans-Light.woff") format("woff");
18
-}
19
-
20
-@font-face {
21
-  font-family: 'Open Sans';
22
-  font-weight: 300;
23
-  font-style: italic;
24
-  src: url("../fonts/open-sans/LightItalic/OpenSans-LightItalic.woff2") format("woff2"), url("../fonts/open-sans/LightItalic/OpenSans-LightItalic.woff") format("woff");
25
-}
26
-
27
-@font-face {
28
-  font-family: 'Open Sans';
29
-  font-weight: normal;
30
-  font-style: normal;
31
-  src: url("../fonts/open-sans/Regular/OpenSans-Regular.woff2") format("woff2"), url("../fonts/open-sans/Regular/OpenSans-Regular.woff") format("woff");
32
-}
33
-
34
-@font-face {
35
-  font-family: 'Open Sans';
36
-  font-weight: normal;
37
-  font-style: italic;
38
-  src: url("../fonts/open-sans/Italic/OpenSans-Italic.woff2") format("woff2"), url("../fonts/open-sans/Italic/OpenSans-Italic.woff") format("woff");
39
-}
40
-
41
-@font-face {
42
-  font-family: 'Open Sans';
43
-  font-weight: 600;
44
-  font-style: normal;
45
-  src: url("../fonts/open-sans/Semibold/OpenSans-Semibold.woff2") format("woff2"), url("../fonts/open-sans/Semibold/OpenSans-Semibold.woff") format("woff");
46
-}
47
-
48
-@font-face {
49
-  font-family: 'Open Sans';
50
-  font-weight: 600;
51
-  font-style: italic;
52
-  src: url("../fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff2") format("woff2"), url("../fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff") format("woff");
53
-}
54
-
55
-body, button, input, optgroup, select, textarea, .popover {
56
-    font-family: 'Open Sans', Roboto, sans-serif;
57
-}
58
-
59
-// Modify taskmenu behavior
60
-#taskmenu {
61
-    span.inner {
62
-        text-transform: uppercase;
63
-    }
64
-
65
-    @media screen and (min-width: (@screen-width-medium + 1px)) and (min-height: 640px) {
66
-        span.inner {
67
-            font-size: 65%;
68
-            font-weight: bold;
69
-        }
70
-
71
-        a:before {
72
-            line-height: 1.2;
73
-            font-size: 180%;
74
-            height: 1.9rem !important;
75
-        }
76
-    }
77
-
78
-    @media screen and (min-width: (@screen-width-small + 1px)) {
79
-        a.logout:not(:hover) {
80
-            color: @color-taskmenu-button !important;
81
-        }
82
-    }
83
-
84
-    .action-buttons {
85
-        display: none;
86
-    }
87
-}
88
-
89
-#layout-menu {
90
-    html:not(.layout-phone) & {
91
-        border-right: 1px solid @color-layout-border;
92
-        .popover-header {
93
-            border-bottom: 1px solid @color-layout-border;
94
-        }
95
-    }
96
-
97
-    @media screen and (min-width: (@screen-width-xs + 1px)) and (max-width: (@screen-width-medium)) {
98
-        #taskmenu, .special-buttons {
99
-            width: 41px;
100
-            overflow: hidden;
101
-        }
102
-    }
103
-
104
-    @media screen and (min-width: (@screen-width-medium + 1px)) {
105
-        #taskmenu, .special-buttons {
106
-            width: 5.5rem;
107
-            overflow: hidden;
108
-        }
109
-    }
110
-
111
-    @media screen and (max-height: 640px) and (min-width: (@screen-width-small + 1px)) {
112
-        #taskmenu, .special-buttons {
113
-            width: 41px !important;
114
-        }
115
-    }
116
-
117
-    .popover-header {
118
-        img {
119
-            width: 100%;
120
-            max-width: 100%;
121
-
122
-            @media screen and (min-width: (@screen-width-medium + 1px)) and (min-height: 640px) {
123
-                padding: .5rem;
124
-            }
125
-
126
-            html.layout-phone & {
127
-                padding: .5rem;
128
-                width: auto;
129
-            }
130
-        }
131
-
132
-        html.layout-phone & {
133
-            width: unset;
134
-            max-height: @layout-header-height;
135
-        }
136
-    }
137
-}
138
-
139
-.watermark {
140
-    background-image: url(../images/watermark.svg) !important;
141
-    background-size: 60% !important;
142
-    background-blend-mode: unset !important;
143
-
144
-    &:before {
145
-        background: rgba(255, 255, 255, 0.75) !important;
146
-    }
147
-}
148
-
149
-// Display the Compose button in mail toolbar
150
-body.task-mail .menu a.compose {
151
-    display: block !important;
152
-}
153
-
154
-// Move the contact photo in mail preview to the right
155
-#message-header .short-header img.contactphoto {
156
-    order: 2;
157
-    margin: 0 0 0 1rem;
158
-}
159
-
160
-// Make the content frame navigation smaller
161
-.content-frame-navigation {
162
-    height: @layout-footer-small-height !important;
163
-    line-height: @layout-footer-small-height !important;
164
-    min-height: @layout-footer-small-height !important;
165
-
166
-    a {
167
-        max-width: 8em;
168
-        padding: 0;
169
-        line-height: @layout-footer-small-height;
170
-
171
-        &:before {
172
-           display: none !important;
173
-           height: @layout-footer-small-height !important;
174
-           line-height: @layout-footer-small-height !important;
175
-        }
176
-
177
-        &.prev,
178
-        &.next {
179
-            padding: 0;
180
-
181
-            &:before {
182
-                display: block !important;
183
-                line-height: 1.8;
184
-            }
185
-
186
-            span.inner {
187
-                display: none;
188
-            }
189
-        }
190
-
191
-        span.inner {
192
-            color: @color-link;
193
-            font-weight: bold;
194
-        }
195
-    }
196
-}
197
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/styles/_variables.less Deleted
45
 
1
@@ -1,43 +0,0 @@
2
-/**
3
- * Styles for the Kolab web client variant of the Roundcube Elastic skin
4
- *
5
- * Copyright (C) 2018, Kolab Systems AG <contact@kolabsystems.com>
6
- *
7
- * The contents of this folder can be redistributed and/or modified
8
- * under the terms of the GNU Affero General Public License as published
9
- * by the Free Software Foundation, either version 3 of the License,
10
- * or (at your option) any later version.
11
- */
12
-
13
-@color-main:            #d8001c;
14
-@color-font:            #4f4f4f;
15
-@color-main-dark:       darken(@color-main, 30%);
16
-@color-link:            @color-main;
17
-
18
-@color-black-shade-bg:              #f8f7f4;
19
-@color-black-shade-text:            #7b7b77;
20
-
21
-@color-layout-header-background:    #fafafa;
22
-@color-layout-border:               #d4dbde;
23
-
24
-@color-taskmenu-background:                 #fafafa;
25
-@color-taskmenu-button:                     #71777d;
26
-@color-taskmenu-button-selected:            @color-main;
27
-@color-taskmenu-button-selected-background: @color-taskmenu-background;
28
-
29
-@color-taskmenu-button-hover:               @color-taskmenu-button;
30
-@color-taskmenu-button-selected-hover:      @color-taskmenu-button-selected;
31
-@color-taskmenu-button-action-hover:        @color-taskmenu-button-hover;
32
-@color-taskmenu-button-logout-hover:        @color-main;
33
-
34
-@color-taskmenu-button-background-hover:               darken(@color-taskmenu-background, 3%);
35
-@color-taskmenu-button-selected-background-hover:      @color-taskmenu-button-hover;
36
-@color-taskmenu-button-action-background-hover:        @color-taskmenu-button-hover;
37
-@color-taskmenu-button-special-background-hover:       @color-taskmenu-button-hover;
38
-
39
-@color-toolbar-button:                  #7b7b77;
40
-@color-toolbar-button-background-hover: darken(@color-layout-header-background, 3%);
41
-
42
-@color-popover-mobile-header:               @color-font;
43
-@color-popover-mobile-header-background:    #eee;
44
-
45
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/thumbnail.png Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/base4kids/watermark.html Deleted
19
 
1
@@ -1,17 +0,0 @@
2
-<!DOCTYPE html>
3
-<html>
4
-<head>
5
-<meta charset="UTF-8">
6
-<title></title>
7
-<style type="text/css">
8
-html, body { height: 100%; overflow: hidden; }
9
-body {
10
-  background: url(images/watermark.png) center no-repeat #fff;
11
-  background-size: 60%;
12
-  background-blend-mode: multiply;
13
-}
14
-body:before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, .85); }
15
-</style>
16
-</head>
17
-<body></body>
18
-</html>
19
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Italic Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Italic/OpenSans-Italic.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Italic/OpenSans-Italic.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Light Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Light/OpenSans-Light.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Light/OpenSans-Light.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/LightItalic Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/LightItalic/OpenSans-LightItalic.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/LightItalic/OpenSans-LightItalic.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Regular Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Regular/OpenSans-Regular.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Regular/OpenSans-Regular.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Semibold Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Semibold/OpenSans-Semibold.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/Semibold/OpenSans-Semibold.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/SemiboldItalic Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff2 Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/images Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/images/favicon.ico Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/images/logo-white-full.svg Deleted
9
 
1
@@ -1,7 +0,0 @@
2
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
-<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="787.5" height="160.71875">
4
-  <g transform="translate(-0.5357143,-460.57424)">
5
-    <path d="m 36.973114,567.32424 c -10.2031,0.0255 -20.807,0.0937 -23.2812,0.0937 -3.9167997,0 -7.4445997,2.89212 -8.0624997,6.5 -0.3089,1.34052 -0.2922,35.54869 -0.1875,38.125 0.2042,4.3305 2.982,7.5071 7.3124997,8.125 l 43.375,0 c 4.121,-0.10473 7.4446,-2.9656 8.0625,-6.46875 0.2042,-1.44525 0.1932,-35.57994 0.094,-38.15625 -0.1048,-4.12105 -2.688,-7.20914 -6.5,-8.03125 -0.8248,-0.20684 -10.6094,-0.21303 -20.8126,-0.1875 z m 84.812596,0 c -10.177,0.0255 -20.7574,0.0937 -23.281296,0.0937 -3.9168,0 -7.2091,2.6879 -8.0313,6.5 -0.4136,1.64947 -0.2187,33.695 -0.2187,38.125 0,4.12105 2.9763,7.5071 7.4063,8.125 l 43.312396,0 c 4.1211,-0.10473 7.0789,-2.65665 7.9063,-6.46875 0.4137,-1.75419 0.2187,-33.62153 0.2187,-38.15625 0,-3.91683 -2.6879,-7.20914 -6.5,-8.03125 -0.8744,-0.20684 -10.6355,-0.21303 -20.8124,-0.1875 z m 84.3124,0.125 c -10.1775,0.0131 -20.7885,0.0625 -23.3124,0.0625 -4.1211,0 -7.5181,2.982 -8.0313,7.3125 l -0.094,37.21875 c 0.2094,4.3305 2.9819,7.5071 7.3124,8.125 l 43.1876,0 c 4.121,-0.10473 7.4133,-2.86087 8.0312,-6.46875 0.3089,-1.34052 0.3235,-35.55967 0.2188,-38.03125 -0.2043,-4.02156 -2.688,-7.20914 -6.5,-8.03125 -0.8771,-0.15709 -10.635,-0.20059 -20.8126,-0.1875 z" style="fill:#fff;fill-opacity:1;fill-rule:evenodd;stroke:none"/>
6
-    <path d="m 771.87941,461.57424 c -2.5763,0 -5.0597,0.63347 -7.5313,1.96875 -2.4768,1.34052 -4.3157,3.18467 -5.6562,5.65625 -1.44,2.36685 -2.0625,4.9492 -2.0625,7.625 0,2.57631 0.6282,5.15916 1.9687,7.53125 1.3353,2.47158 3.2842,4.32097 5.6563,5.65625 2.3721,1.34052 4.9492,2.0625 7.625,2.0625 2.5815,0 5.1644,-0.72198 7.5313,-2.0625 2.4768,-1.33528 4.3157,-3.18467 5.6562,-5.65625 1.3405,-2.37209 1.9688,-4.95494 1.9688,-7.53125 0,-2.6758 -0.6283,-5.25815 -1.9688,-7.625 -1.4452,-2.47158 -3.2784,-4.31573 -5.75,-5.65625 -2.3721,-1.33528 -4.9607,-1.96875 -7.4375,-1.96875 z m -744.499996,0.71875 c -9.5879,0 -15.9727,2.17879 -20.0936997,6.71875 -4.1211,4.43 -5.75,11.20606 -5.75,20.375 l 0,18.65625 c 0,9.16894 1.6289,15.97102 5.75,20.40625 4.1209997,4.53472 10.5057997,6.71875 20.0936997,6.71875 l 58.75,0 -0.094,-10.625 -57.7188,0 c -4.6395,0 -8.3409,-0.82807 -10.8125,-2.78125 -2.3721,-1.96365 -3.625,-5.24434 -3.625,-10.1875 l 0,-25.6875 c 0,-4.94316 1.2529,-8.22909 3.625,-10.1875 2.4716,-1.95841 6.173,-2.78125 10.8125,-2.78125 l 57.5,0 0,-10.625 -58.4375,0 z m 95.531296,0 c -9.5827,0 -16.0665,2.17879 -20.1876,6.71875 -4.021496,4.43 -5.656196,11.20606 -5.656196,20.375 l 0,18.65625 c 0,9.16894 1.6347,15.97102 5.656196,20.40625 4.1211,4.53472 10.6049,6.71875 20.1876,6.71875 l 39.375,0 c 9.4778,0 15.9727,-2.18403 20.0937,-6.71875 4.1263,-4.43523 5.7813,-11.23731 5.7813,-20.40625 l 0,-18.65625 c 0,-9.16894 -1.655,-15.945 -5.7813,-20.375 -4.121,-4.53996 -10.6159,-6.71875 -20.0937,-6.71875 l -39.375,0 z m 452.0312,0 c -9.5826,0 -15.9727,2.17879 -20.0938,6.71875 -4.121,4.52949 -5.7812,11.20606 -5.7812,20.375 l 0,18.65625 c 0,9.16894 1.6602,15.97102 5.7812,20.40625 4.1211,4.53472 10.5112,6.71875 20.0938,6.71875 l 38.125,0 c 9.4779,0 15.6619,-2.05903 19.4688,-6.59375 3.8173,-4.43 5.1562,-11.05555 5.1562,-20.125 l 0,-11 -47.2812,0 0,10.59375 35.0312,0 0,5.375 c 0,4.32527 -1.3321,7.10053 -3.5,8.75 -2.3669,1.75419 -5.7852,2.375 -9.9062,2.375 l -36.1563,0 c -4.6395,0 -8.3722,-0.82807 -10.8437,-2.78125 -2.3721,-1.96365 -3.6876,-5.24434 -3.6876,-10.1875 l 0,-25.6875 c 0,-4.94316 1.3155,-8.22909 3.6876,-10.1875 2.4715,-1.95841 6.2042,-2.78125 10.8437,-2.78125 l 61.7187,0 0,-10.625 -62.6562,0 z m 100.1562,0 c -9.5826,0 -16.0664,2.17879 -20.1874,6.71875 -4.0216,4.52949 -5.7813,11.20606 -5.7813,20.375 l 0,18.65625 c 0,9.16894 1.7597,15.97102 5.7813,20.40625 4.121,4.53472 10.6048,6.71875 20.1874,6.71875 l 39.2813,0 c 9.5826,0 16.0665,-2.18403 20.1875,-6.71875 4.121,-4.43523 5.7812,-11.23731 5.7812,-20.40625 l 0,-18.65625 c 0,-9.16894 -1.7596,-15.84551 -5.7812,-20.375 -4.121,-4.53996 -10.6049,-6.71875 -20.1875,-6.71875 l -39.2813,0 z m -159.2812,0.625 c -0.2805,0.0121 -0.4375,0.0296 -0.4375,0.0937 l -49.2813,0 0,71.4375 12.2813,0 0,-25.78125 24.8437,0 23.5938,25.78125 16.375,0 -24.125,-26.4062 c 7.42,-0.5184 14.1218,-2.87121 17.625,-8.4375 0.8274,-1.23579 1.4613,-2.69428 1.875,-4.34375 0.5132,-1.85369 0.7188,-3.79159 0.7188,-5.75 l 0,-5.5625 c 0,-2.26736 0.01,-4.75291 -0.4063,-7.125 -0.4084,-2.57631 -1.1485,-5.04159 -2.5937,-7 -2.2622,-3.1942 -5.9582,-4.95914 -9.875,-5.78125 -0.724,-0.17869 -8.63,-1.20941 -10.5938,-1.125 z m -314.9688,0.0937 0,71.4375 12.25,0 0,-57.9375 60.5,57.9375 15.875,0 0,-71.4375 -12.2812,0 0,58.03125 -61,-58.03125 -15.3438,0 z m 95.625,0 0,10.625 34.5313,0 0,60.8125 12.3437,0 0,-60.8125 34.5313,0 0,-10.625 -81.4063,0 z m 108.3126,0 -42.4688,71.4375 14.0312,0 8.5626,-14.4375 52.9687,0 8.4375,14.4375 14.125,0 -42.4688,-71.4375 -13.1874,0 z m 367.0937,1.03125 c 2.0631,0 4.1244,0.62468 6.1875,1.65625 2.0579,1.13106 3.6137,2.69209 4.75,4.75 1.1311,2.06314 1.75,4.10764 1.75,6.375 0,2.16263 -0.6247,4.21811 -1.6562,6.28125 -1.1311,2.05791 -2.6869,3.61894 -4.75,4.75 -2.058,1.1363 -4.1134,1.65625 -6.2813,1.65625 -2.2674,0 -4.3119,-0.51995 -6.375,-1.65625 -1.9532,-1.13106 -3.6299,-2.69209 -4.6563,-4.75 -1.1362,-2.06314 -1.75,-4.11862 -1.75,-6.28125 0,-2.26736 0.6138,-4.31186 1.75,-6.375 1.1311,-2.05791 2.6921,-3.61894 4.75,-4.75 2.0632,-1.03157 4.1187,-1.65625 6.2813,-1.65625 z m -6.6875,4.75 0,16.375 2.5625,0 0,-6.90625 1.5625,0 c 0.9321,0 1.6378,0.2223 2.1562,0.53125 0.7227,0.5184 1.6502,1.85932 2.7813,3.8125 l 1.4375,2.5625 3.1875,0 -1.9375,-3.1875 c -0.9268,-1.44001 -1.7514,-2.5696 -2.4688,-3.1875 -0.3089,-0.40844 -0.7258,-0.62855 -1.3437,-0.9375 1.4452,-0.10473 2.5476,-0.61015 3.375,-1.4375 0.8274,-0.92684 1.25,-1.94647 1.25,-3.1875 0,-0.82211 -0.2056,-1.65761 -0.7187,-2.375 -0.5185,-0.72262 -1.2352,-1.25355 -2.0626,-1.5625 -0.8221,-0.30895 -2.2603,-0.5 -4.2187,-0.5 l -5.5625,0 z m 2.5625,2.25 3.0937,0 c 1.2358,0 2.1801,0.10828 2.5938,0.3125 0.5132,0.10473 0.9155,0.43007 1.125,0.84375 0.3037,0.40844 0.4062,0.79933 0.4062,1.3125 0,0.72262 -0.2993,1.36757 -0.8124,1.78125 -0.5185,0.51317 -1.6486,0.71875 -3.0938,0.71875 l -3.3125,0 0,-4.96875 z m -643.9063,1.875 37.4063,0 c 4.7389,0 8.4607,0.82284 10.9375,2.78125 2.3721,1.95841 3.5938,5.24434 3.5938,10.1875 l 0,25.6875 c 0,4.94316 -1.2217,8.22385 -3.5938,10.1875 -2.4768,1.95318 -6.1986,2.78125 -10.9375,2.78125 l -37.4063,0 c -4.7389,0 -8.4404,-0.82807 -10.8124,-2.78125 -2.3721,-1.96365 -3.7188,-5.24434 -3.7188,-10.1875 l 0,-25.6875 c 0,-4.94316 1.3467,-8.22909 3.7188,-10.1875 2.372,-1.95841 6.0735,-2.78125 10.8124,-2.78125 z m 552.1876,0 37.4062,0 c 4.7442,0 8.4404,0.82284 10.8125,2.78125 2.4716,1.95841 3.7187,5.24434 3.7187,10.1875 l 0,25.6875 c 0,4.94316 -1.2471,8.22385 -3.7187,10.1875 -2.3721,1.95318 -6.0683,2.78125 -10.8125,2.78125 l -37.4062,0 c -4.739,0 -8.4405,-0.82807 -10.8126,-2.78125 -2.4715,-1.96365 -3.7187,-5.24434 -3.7187,-10.1875 l 0,-25.6875 c 0,-4.94316 1.2472,-8.22909 3.7187,-10.1875 2.3721,-1.95841 6.0736,-2.78125 10.8126,-2.78125 z m -197.6563,0.71875 33.9063,0 c 3.9115,0 11.2252,-0.31565 13.9062,3.1875 0.5132,0.72262 0.8218,1.54191 1.0312,2.46875 0,0.20422 0.2188,2.875 0.2188,2.875 l 0,6.3125 c 0,3.71261 -1.5509,5.76995 -3.7188,6.90625 -2.4715,1.23579 -5.8718,1.4375 -9.375,1.4375 l -35.9687,0 0,-23.1875 z m -67,1.53125 20.1875,34.21875 -40.5,0 20.3125,-34.21875 z m -89.75,103.59375 0,4.71875 4.2187,0 0,-4.71875 -4.2187,0 z m 118.8125,0 0,15.96875 -0.094,0 c -0.5131,-1.24103 -1.2496,-2.17433 -2.2812,-2.6875 -1.749,-0.93208 -4.1038,-1.34375 -7.0938,-1.34375 -2.1626,0 -4.0177,0.22585 -5.5624,0.84375 -2.2726,0.82735 -3.8232,2.56896 -4.75,5.25 -0.6179,1.85892 -0.9376,4.63638 -0.9376,8.34375 0,2.47682 0.2021,4.75459 0.4063,6.8125 0.3142,2.26736 1.1392,4.12823 2.375,5.46875 1.6495,1.95318 4.6602,2.875 8.7813,2.875 2.681,0 4.7255,-0.42265 6.375,-1.25 1.2357,-0.6179 2.1523,-1.63397 2.875,-2.875 l 0.125,0 -0.2188,3.71875 4.125,0 0,-41.125 -4.125,0 z m 46.375,0 0,41.125 4.2188,0 0,-41.125 -4.2188,0 z m 224.4688,0 0,41.125 4.2187,0 0,-13.9375 1.75,0 12.1563,13.9375 5.6874,0 -14.5312,-15.5625 12.3438,-13.21875 -5.3438,0 -10.0938,11.5625 -1.9687,0 0,-23.90625 -4.2187,0 z m -438.5,5.34375 0,7 -4.0313,0 0,3.53125 4.0313,0 0,17.59375 0,2.375 c 0.2042,1.95841 0.9204,3.41691 2.1562,4.34375 1.2358,0.93208 3.183,1.34375 5.9688,1.34375 3.1942,0 5.4517,-0.83956 6.6874,-2.59375 1.0316,-1.33528 1.5626,-3.29869 1.5626,-5.875 0,-0.41368 0.01,-1.12468 -0.094,-2.15625 l -3.9375,0 c 0.1047,0.72262 0.125,1.24832 0.125,1.5625 0,2.36685 -0.3196,3.80863 -0.9375,4.53125 -0.5132,0.6179 -1.6573,0.90625 -3.4062,0.90625 -1.9585,0 -3.0806,-0.51066 -3.5938,-1.4375 -0.2095,-0.72262 -0.4375,-1.76421 -0.4375,-3 l 0,-17.59375 11.125,0 0,-3.53125 -11.125,0 0,-7 -4.0937,0 z m 313.375,0 0,7 -4,0 0,3.53125 4,0 0,17.59375 c 0,1.1363 0.02,1.86183 0.125,2.375 0.1047,1.95841 0.8214,3.41691 2.0624,4.34375 1.2358,0.93208 3.2878,1.34375 5.9688,1.34375 3.1942,0 5.472,-0.83956 6.8125,-2.59375 0.9268,-1.33528 1.4375,-3.29869 1.4375,-5.875 l 0,-2.15625 -3.9375,0 0,1.5625 c 0,2.36685 -0.1946,3.80863 -0.8125,4.53125 -0.6179,0.6179 -1.7458,0.90625 -3.5,0.90625 -1.9584,0 -3.0863,-0.51066 -3.5,-1.4375 -0.3089,-0.72262 -0.4062,-1.76421 -0.4062,-3 l 0,-17.59375 11,0 0,-3.53125 -11,0 0,-7 -4.25,0 z m -279.0626,6.28125 c -2.0631,0 -3.8099,0.43886 -5.25,1.15625 -1.0315,0.41368 -2.0731,1.42401 -3,2.96875 l -0.125,-0.0937 0.4376,-3.3125 -4.125,0 0,28.78125 4.125,0 0,-17.21875 c 0,-2.68104 0.294,-4.52519 0.8124,-5.65625 0.9269,-1.96365 2.9933,-3 6.1876,-3 1.9584,0 3.3086,0.51066 4.0312,1.4375 0.5184,0.6179 0.7188,1.53448 0.7188,2.875 l 0,1.5625 0,0.71875 4.125,0 0,-1.96875 c 0,-2.89049 -0.6283,-4.94073 -1.9688,-6.28125 -1.3405,-1.24103 -3.2929,-1.96875 -5.9688,-1.96875 z m 389.6563,0 c -2.0631,0 -3.8048,0.43886 -5.25,1.15625 -1.0316,0.41368 -2.0679,1.42401 -3,2.96875 l -0.094,-0.0937 0.4062,-3.3125 -4.125,0 0,28.78125 4.125,0 0,-17.21875 c 0,-2.68104 0.2941,-4.52519 0.8125,-5.65625 0.9268,-1.96365 2.9933,-3 6.1875,-3 1.9584,0 3.3139,0.51066 4.0312,1.4375 0.5185,0.6179 0.7188,1.53448 0.7188,2.875 l 0,1.5625 0,0.71875 4.125,0 0,-1.96875 c 0,-2.89049 -0.6335,-4.94073 -1.9688,-6.28125 -1.3405,-1.24103 -3.2877,-1.96875 -5.9687,-1.96875 z m -348.125,0.31255 c -2.7805,0 -5.0693,0.53093 -6.7187,1.5625 -1.0316,0.6179 -1.9539,1.73651 -2.7813,3.28125 l -0.094,-0.0937 0.094,-4.34375 -4.125,0 0,28.78125 4.125,0 0,-16.40625 c 0,-2.57631 0.4336,-4.62823 1.1563,-5.96875 1.2357,-2.16263 3.6879,-3.3125 7.5,-3.3125 3.1994,0 5.1576,0.836 5.875,2.28125 0.2094,0.30895 0.3015,0.71132 0.4062,1.125 0,0.40844 0.125,1.55256 0.125,3.40625 l 0,18.875 4.2188,0 0,-16.59375 c 0,-2.68104 0.2055,-4.55644 0.7187,-5.6875 1.0368,-2.26736 3.7007,-3.40625 8.0313,-3.40625 3.0894,0 4.9648,0.74749 5.6874,2.1875 0.4137,1.03157 0.5938,2.35409 0.5938,4.3125 l 0,19.1875 4.25,0 0,-18.875 c 0,-3.08948 -0.4169,-5.36725 -1.3438,-6.8125 -1.44,-2.36685 -4.3402,-3.5 -8.875,-3.5 -2.681,0 -5.0322,0.51066 -6.7812,1.4375 -1.2358,0.72262 -2.2664,1.86151 -3.0938,3.40625 l -0.125,0 c -1.0315,-3.29893 -4,-4.84375 -8.8437,-4.84375 z m 50.9063,0 c -1.5448,0 -3.0033,0.0203 -4.3438,0.125 -2.4716,0.30371 -4.3157,1.01421 -5.6562,2.25 -0.7174,0.71739 -1.2369,1.66472 -1.75,3 -0.6179,1.85892 -1.0313,4.93047 -1.0313,9.15625 0,4.53472 0.4134,7.74006 1.0313,9.59375 0.8221,2.26736 2.1665,3.81386 4.125,4.53125 1.6494,0.6179 4.1166,0.9375 7.625,0.9375 3.3984,0 5.9755,-0.3196 7.625,-0.9375 1.9584,-0.71739 3.3028,-2.26389 4.125,-4.53125 0.6178,-1.85369 0.9062,-4.95075 0.9062,-9.28125 0,-4.43 -0.2884,-7.52131 -0.9062,-9.375 -0.8222,-2.26736 -2.1666,-3.7039 -4.125,-4.53125 -1.6495,-0.6179 -4.2266,-0.9375 -7.625,-0.9375 z m 65.8437,0 c -2.5763,0 -4.7423,0.12281 -6.1875,0.53125 -2.0631,0.41368 -3.3914,1.24394 -4.2188,2.375 -0.6178,1.1363 -1.0312,2.98619 -1.0312,5.5625 l 4.125,0 0,-0.9375 c 0,-1.54474 0.4226,-2.56437 1.25,-3.1875 1.0316,-0.71739 3.087,-1.15625 6.2812,-1.15625 1.6495,0 3.0987,0.12855 4.125,0.4375 1.3406,0.30895 2.2426,0.91691 2.6563,1.84375 0.5132,1.23579 0.75,3.10595 0.75,5.6875 l 0,3.5 -0.125,0 c -0.4084,-0.93208 -1.1101,-1.6598 -1.9375,-1.96875 -1.749,-0.72262 -4.1495,-1.03125 -7.3438,-1.03125 -1.9584,0 -3.5969,0.0973 -4.9374,0.40625 -2.3669,0.41368 -3.9279,1.336 -4.75,2.78125 -0.9269,1.54474 -1.3126,3.59666 -1.3126,5.96875 0,1.74896 0.2004,3.20745 0.7188,4.34375 0.6179,1.85369 2.1499,3.1946 4.3125,3.8125 1.3458,0.41368 3.2987,0.625 5.875,0.625 1.7542,0 3.2955,-0.10304 4.5313,-0.3125 0.9268,-0.0995 1.9794,-0.51285 2.9062,-1.03125 0.8274,-0.51317 1.6211,-1.22941 2.3438,-2.15625 l -0.2813,3.09375 4.2187,0 0,-18.96875 c 0,-2.05791 -0.2223,-3.62823 -0.5312,-4.96875 -0.5132,-1.85892 -1.7401,-3.29191 -3.5938,-4.21875 -1.6494,-0.72262 -4.2358,-1.03125 -7.8437,-1.03125 z m 67.625,0 c -3.6079,0 -6.288,0.61725 -7.9375,2.0625 -0.6179,0.51317 -1.2426,1.24394 -1.6562,2.375 l -0.094,-0.0937 0.094,-3.9375 -4.2188,0 0,28.78125 4.3125,0 0,-17.34375 c 0,-0.92684 0.1083,-1.73515 0.3125,-2.5625 0.3089,-2.26736 1.3338,-3.82316 3.1875,-4.75 1.2358,-0.6179 3.0029,-1.03125 5.375,-1.03125 1.5447,0 2.7716,0.23328 3.5937,0.4375 1.2411,0.30895 2.0754,0.91691 2.5938,1.84375 0.4084,0.92684 0.5938,2.58568 0.5938,5.0625 l 0,18.34375 4.25,0 0,-18.78125 c 0,-3.40366 -0.3139,-5.66117 -1.0313,-6.6875 -1.4452,-2.47682 -4.6361,-3.71875 -9.375,-3.71875 z m 31.7187,0 c -3.6026,0 -6.1577,0.3289 -7.8124,1.15625 -1.9532,0.82211 -3.3087,2.36862 -4.0313,4.53125 -0.7226,1.85892 -1.0313,4.94145 -1.0313,9.0625 0,3.19944 0.2224,5.76202 0.5313,7.40625 0.5132,2.47682 1.4205,4.21843 2.6563,5.25 1.8536,1.44525 5.059,2.1875 9.5937,2.1875 4.9432,0 8.3651,-0.74225 10.2187,-2.1875 1.4453,-1.13106 2.25,-2.96947 2.25,-5.75 0,-0.20946 -0.094,-0.61183 -0.094,-1.125 l -4.2187,0 c 0,1.23579 -0.1083,2.25187 -0.3126,2.875 -0.1047,0.71739 -0.419,1.2223 -0.9374,1.53125 -1.1311,0.72262 -3.4031,1.15625 -6.9063,1.15625 -1.5447,0 -2.7716,-0.10304 -3.5937,-0.3125 -2.0632,-0.30895 -3.3197,-1.25323 -3.9376,-2.59375 -0.5184,-1.54474 -0.8124,-4.12185 -0.8124,-7.625 l 20.7187,0 c 0,-2.68104 0.011,-4.4262 -0.094,-5.5625 -0.309,-4.63945 -1.6535,-7.51421 -4.125,-8.75 -1.6495,-0.82735 -4.3499,-1.25 -8.0626,-1.25 z m 98.5313,0 c -1.5447,0 -2.972,0.0203 -4.3125,0.125 -2.4716,0.30371 -4.3417,1.01421 -5.6875,2.25 -0.7174,0.71739 -1.3253,1.66472 -1.8437,3 -0.6179,1.85892 -0.9376,4.93047 -0.9376,9.15625 0,4.53472 0.3197,7.74006 0.9376,9.59375 0.8273,2.26736 2.2603,3.81386 4.2187,4.53125 1.55,0.6179 4.1328,0.9375 7.5313,0.9375 3.5031,0 6.0802,-0.3196 7.625,-0.9375 2.0631,-0.71739 3.3966,-2.26389 4.2187,-4.53125 0.6179,-1.85369 0.9375,-4.95075 0.9375,-9.28125 0,-4.43 -0.3196,-7.52131 -0.9375,-9.375 -0.8221,-2.26736 -2.1556,-3.7039 -4.2187,-4.53125 -1.5448,-0.6179 -4.1329,-0.9375 -7.5313,-0.9375 z m -341.625,0.40625 0,28.78125 4.2187,0 0,-28.78125 -4.2187,0 z m 282.875,0 7.8437,28.78125 6.375,0 3.8126,-16 1.25,-4.84375 0.5,-2.46875 0.625,-2.46875 0.125,0 0.5,2.46875 0.625,2.46875 1.125,4.84375 3.8124,16 6.2813,0 8.0625,-28.78125 -4.4375,0 -4.125,15.875 -1.25,5.0625 -0.625,2.46875 -0.5937,2.46875 -0.125,0 -0.5,-2.46875 -0.625,-2.46875 -1.125,-4.9375 -3.9063,-16 -6.1875,0 -3.9375,16 -1.2187,4.9375 -0.625,2.46875 -0.5,2.46875 -0.2188,0 -0.5312,-2.46875 -0.5938,-2.46875 -1.3438,-5.0625 -4.0312,-15.875 -4.4375,0 z m -39.6563,2.90625 c 1.859,0 3.292,0.19679 4.2188,0.40625 1.5447,0.40844 2.5863,1.23296 3,2.46875 0.4137,1.03157 0.614,3.10377 0.7188,6.09375 l -16.4063,0 c 0,-1.34052 0.02,-2.39664 0.125,-3.21875 0.3089,-2.78053 1.2255,-4.41335 2.875,-5.03125 1.1363,-0.5184 2.9972,-0.71875 5.4687,-0.71875 z m -165.3124,0.1875 c 3.5031,0 5.7606,0.54191 6.6874,1.46875 0.4137,0.40844 0.7276,1.12468 1.0313,2.15625 0.4137,1.34052 0.625,3.90665 0.625,7.71875 0,4.84367 -0.4279,7.94073 -1.25,9.28125 -0.8274,1.24103 -3.1822,1.84375 -7.0937,1.84375 -3.5084,0 -5.7867,-0.41691 -6.7188,-1.34375 -0.4137,-0.41368 -0.8218,-1.12468 -1.0312,-2.15625 -0.4085,-1.33528 -0.5938,-4.0004 -0.5938,-7.8125 0,-4.84367 0.3966,-7.84698 1.2188,-9.1875 0.8273,-1.23579 3.2081,-1.96875 7.125,-1.96875 z m 32.5624,0 c 3.0895,0 5.1502,0.63921 6.2813,1.875 1.3405,1.34052 1.9687,4.20075 1.9687,8.53125 0,5.66579 -0.6392,9.19647 -1.875,10.4375 -1.1362,1.13106 -3.2855,1.625 -6.375,1.625 -2.681,0 -4.5454,-0.41691 -5.7812,-1.34375 -1.4452,-1.23579 -2.1562,-4.72949 -2.1562,-10.5 0,-4.73894 0.6334,-7.82147 1.9687,-9.0625 1.0316,-1.02633 2.9788,-1.5625 5.9687,-1.5625 z m 231.1563,0 c 3.5032,0 5.6559,0.54191 6.6875,1.46875 0.4137,0.40844 0.7536,1.12468 1.0625,2.15625 0.3089,1.34052 0.5,3.90665 0.5,7.71875 0,4.84367 -0.4279,7.94073 -1.25,9.28125 -0.7226,1.24103 -3.0774,1.84375 -7.0937,1.84375 -3.5032,0 -5.6617,-0.41691 -6.5938,-1.34375 -0.5132,-0.41368 -0.8473,-1.12468 -1.1562,-2.15625 -0.309,-1.33528 -0.5,-4.0004 -0.5,-7.8125 0,-4.84367 0.4226,-7.84698 1.25,-9.1875 0.7226,-1.23579 3.0721,-1.96875 7.0937,-1.96875 z m -198.0625,11.5625 c 3.4037,0 5.6502,0.40593 6.7812,1.4375 0.9269,0.72262 1.3438,2.15561 1.3438,4.21875 0,1.74896 -0.4076,3.0071 -1.125,3.625 -1.3405,1.13106 -4.0317,1.625 -7.8438,1.625 -3.1942,0 -5.2554,-0.41691 -6.1874,-1.34375 -0.7227,-0.82735 -1.0313,-2.23838 -1.0313,-4.40625 0,-1.95318 0.3086,-3.3196 1.0313,-3.9375 1.0315,-0.82735 3.3238,-1.21875 7.0312,-1.21875 z" style="fill:#fff;fill-opacity:1;fill-rule:evenodd;stroke:none"/>
7
-  </g>
8
-</svg>
9
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/images/logo-white.svg Deleted
8
 
1
@@ -1,6 +0,0 @@
2
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
-<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="300" height="150">
4
-  <g transform="translate(30,-520)">
5
-    <path d="m 36.973114,567.32424 c -10.2031,0.0255 -20.807,0.0937 -23.2812,0.0937 -3.9167997,0 -7.4445997,2.89212 -8.0624997,6.5 -0.3089,1.34052 -0.2922,35.54869 -0.1875,38.125 0.2042,4.3305 2.982,7.5071 7.3124997,8.125 l 43.375,0 c 4.121,-0.10473 7.4446,-2.9656 8.0625,-6.46875 0.2042,-1.44525 0.1932,-35.57994 0.094,-38.15625 -0.1048,-4.12105 -2.688,-7.20914 -6.5,-8.03125 -0.8248,-0.20684 -10.6094,-0.21303 -20.8126,-0.1875 z m 84.812596,0 c -10.177,0.0255 -20.7574,0.0937 -23.281296,0.0937 -3.9168,0 -7.2091,2.6879 -8.0313,6.5 -0.4136,1.64947 -0.2187,33.695 -0.2187,38.125 0,4.12105 2.9763,7.5071 7.4063,8.125 l 43.312396,0 c 4.1211,-0.10473 7.0789,-2.65665 7.9063,-6.46875 0.4137,-1.75419 0.2187,-33.62153 0.2187,-38.15625 0,-3.91683 -2.6879,-7.20914 -6.5,-8.03125 -0.8744,-0.20684 -10.6355,-0.21303 -20.8124,-0.1875 z m 84.3124,0.125 c -10.1775,0.0131 -20.7885,0.0625 -23.3124,0.0625 -4.1211,0 -7.5181,2.982 -8.0313,7.3125 l -0.094,37.21875 c 0.2094,4.3305 2.9819,7.5071 7.3124,8.125 l 43.1876,0 c 4.121,-0.10473 7.4133,-2.86087 8.0312,-6.46875 0.3089,-1.34052 0.3235,-35.55967 0.2188,-38.03125 -0.2043,-4.02156 -2.688,-7.20914 -6.5,-8.03125 -0.8771,-0.15709 -10.635,-0.20059 -20.8126,-0.1875 z" style="fill:#fff"/>
6
-  </g>
7
-</svg>
8
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/images/logo.svg Deleted
9
 
1
@@ -1,7 +0,0 @@
2
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
-<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="787.5" height="160.71875">
4
-  <g transform="translate(-0.5357143,-460.57424)">
5
-    <path d="m 36.973114,567.32424 c -10.2031,0.0255 -20.807,0.0937 -23.2812,0.0937 -3.9167997,0 -7.4445997,2.89212 -8.0624997,6.5 -0.3089,1.34052 -0.2922,35.54869 -0.1875,38.125 0.2042,4.3305 2.982,7.5071 7.3124997,8.125 l 43.375,0 c 4.121,-0.10473 7.4446,-2.9656 8.0625,-6.46875 0.2042,-1.44525 0.1932,-35.57994 0.094,-38.15625 -0.1048,-4.12105 -2.688,-7.20914 -6.5,-8.03125 -0.8248,-0.20684 -10.6094,-0.21303 -20.8126,-0.1875 z m 84.812596,0 c -10.177,0.0255 -20.7574,0.0937 -23.281296,0.0937 -3.9168,0 -7.2091,2.6879 -8.0313,6.5 -0.4136,1.64947 -0.2187,33.695 -0.2187,38.125 0,4.12105 2.9763,7.5071 7.4063,8.125 l 43.312396,0 c 4.1211,-0.10473 7.0789,-2.65665 7.9063,-6.46875 0.4137,-1.75419 0.2187,-33.62153 0.2187,-38.15625 0,-3.91683 -2.6879,-7.20914 -6.5,-8.03125 -0.8744,-0.20684 -10.6355,-0.21303 -20.8124,-0.1875 z m 84.3124,0.125 c -10.1775,0.0131 -20.7885,0.0625 -23.3124,0.0625 -4.1211,0 -7.5181,2.982 -8.0313,7.3125 l -0.094,37.21875 c 0.2094,4.3305 2.9819,7.5071 7.3124,8.125 l 43.1876,0 c 4.121,-0.10473 7.4133,-2.86087 8.0312,-6.46875 0.3089,-1.34052 0.3235,-35.55967 0.2188,-38.03125 -0.2043,-4.02156 -2.688,-7.20914 -6.5,-8.03125 -0.8771,-0.15709 -10.635,-0.20059 -20.8126,-0.1875 z" style="fill:#00397d;fill-opacity:1;fill-rule:evenodd;stroke:none"/>
6
-    <path d="m 771.87941,461.57424 c -2.5763,0 -5.0597,0.63347 -7.5313,1.96875 -2.4768,1.34052 -4.3157,3.18467 -5.6562,5.65625 -1.44,2.36685 -2.0625,4.9492 -2.0625,7.625 0,2.57631 0.6282,5.15916 1.9687,7.53125 1.3353,2.47158 3.2842,4.32097 5.6563,5.65625 2.3721,1.34052 4.9492,2.0625 7.625,2.0625 2.5815,0 5.1644,-0.72198 7.5313,-2.0625 2.4768,-1.33528 4.3157,-3.18467 5.6562,-5.65625 1.3405,-2.37209 1.9688,-4.95494 1.9688,-7.53125 0,-2.6758 -0.6283,-5.25815 -1.9688,-7.625 -1.4452,-2.47158 -3.2784,-4.31573 -5.75,-5.65625 -2.3721,-1.33528 -4.9607,-1.96875 -7.4375,-1.96875 z m -744.499996,0.71875 c -9.5879,0 -15.9727,2.17879 -20.0936997,6.71875 -4.1211,4.43 -5.75,11.20606 -5.75,20.375 l 0,18.65625 c 0,9.16894 1.6289,15.97102 5.75,20.40625 4.1209997,4.53472 10.5057997,6.71875 20.0936997,6.71875 l 58.75,0 -0.094,-10.625 -57.7188,0 c -4.6395,0 -8.3409,-0.82807 -10.8125,-2.78125 -2.3721,-1.96365 -3.625,-5.24434 -3.625,-10.1875 l 0,-25.6875 c 0,-4.94316 1.2529,-8.22909 3.625,-10.1875 2.4716,-1.95841 6.173,-2.78125 10.8125,-2.78125 l 57.5,0 0,-10.625 -58.4375,0 z m 95.531296,0 c -9.5827,0 -16.0665,2.17879 -20.1876,6.71875 -4.021496,4.43 -5.656196,11.20606 -5.656196,20.375 l 0,18.65625 c 0,9.16894 1.6347,15.97102 5.656196,20.40625 4.1211,4.53472 10.6049,6.71875 20.1876,6.71875 l 39.375,0 c 9.4778,0 15.9727,-2.18403 20.0937,-6.71875 4.1263,-4.43523 5.7813,-11.23731 5.7813,-20.40625 l 0,-18.65625 c 0,-9.16894 -1.655,-15.945 -5.7813,-20.375 -4.121,-4.53996 -10.6159,-6.71875 -20.0937,-6.71875 l -39.375,0 z m 452.0312,0 c -9.5826,0 -15.9727,2.17879 -20.0938,6.71875 -4.121,4.52949 -5.7812,11.20606 -5.7812,20.375 l 0,18.65625 c 0,9.16894 1.6602,15.97102 5.7812,20.40625 4.1211,4.53472 10.5112,6.71875 20.0938,6.71875 l 38.125,0 c 9.4779,0 15.6619,-2.05903 19.4688,-6.59375 3.8173,-4.43 5.1562,-11.05555 5.1562,-20.125 l 0,-11 -47.2812,0 0,10.59375 35.0312,0 0,5.375 c 0,4.32527 -1.3321,7.10053 -3.5,8.75 -2.3669,1.75419 -5.7852,2.375 -9.9062,2.375 l -36.1563,0 c -4.6395,0 -8.3722,-0.82807 -10.8437,-2.78125 -2.3721,-1.96365 -3.6876,-5.24434 -3.6876,-10.1875 l 0,-25.6875 c 0,-4.94316 1.3155,-8.22909 3.6876,-10.1875 2.4715,-1.95841 6.2042,-2.78125 10.8437,-2.78125 l 61.7187,0 0,-10.625 -62.6562,0 z m 100.1562,0 c -9.5826,0 -16.0664,2.17879 -20.1874,6.71875 -4.0216,4.52949 -5.7813,11.20606 -5.7813,20.375 l 0,18.65625 c 0,9.16894 1.7597,15.97102 5.7813,20.40625 4.121,4.53472 10.6048,6.71875 20.1874,6.71875 l 39.2813,0 c 9.5826,0 16.0665,-2.18403 20.1875,-6.71875 4.121,-4.43523 5.7812,-11.23731 5.7812,-20.40625 l 0,-18.65625 c 0,-9.16894 -1.7596,-15.84551 -5.7812,-20.375 -4.121,-4.53996 -10.6049,-6.71875 -20.1875,-6.71875 l -39.2813,0 z m -159.2812,0.625 c -0.2805,0.0121 -0.4375,0.0296 -0.4375,0.0937 l -49.2813,0 0,71.4375 12.2813,0 0,-25.78125 24.8437,0 23.5938,25.78125 16.375,0 -24.125,-26.4062 c 7.42,-0.5184 14.1218,-2.87121 17.625,-8.4375 0.8274,-1.23579 1.4613,-2.69428 1.875,-4.34375 0.5132,-1.85369 0.7188,-3.79159 0.7188,-5.75 l 0,-5.5625 c 0,-2.26736 0.01,-4.75291 -0.4063,-7.125 -0.4084,-2.57631 -1.1485,-5.04159 -2.5937,-7 -2.2622,-3.1942 -5.9582,-4.95914 -9.875,-5.78125 -0.724,-0.17869 -8.63,-1.20941 -10.5938,-1.125 z m -314.9688,0.0937 0,71.4375 12.25,0 0,-57.9375 60.5,57.9375 15.875,0 0,-71.4375 -12.2812,0 0,58.03125 -61,-58.03125 -15.3438,0 z m 95.625,0 0,10.625 34.5313,0 0,60.8125 12.3437,0 0,-60.8125 34.5313,0 0,-10.625 -81.4063,0 z m 108.3126,0 -42.4688,71.4375 14.0312,0 8.5626,-14.4375 52.9687,0 8.4375,14.4375 14.125,0 -42.4688,-71.4375 -13.1874,0 z m 367.0937,1.03125 c 2.0631,0 4.1244,0.62468 6.1875,1.65625 2.0579,1.13106 3.6137,2.69209 4.75,4.75 1.1311,2.06314 1.75,4.10764 1.75,6.375 0,2.16263 -0.6247,4.21811 -1.6562,6.28125 -1.1311,2.05791 -2.6869,3.61894 -4.75,4.75 -2.058,1.1363 -4.1134,1.65625 -6.2813,1.65625 -2.2674,0 -4.3119,-0.51995 -6.375,-1.65625 -1.9532,-1.13106 -3.6299,-2.69209 -4.6563,-4.75 -1.1362,-2.06314 -1.75,-4.11862 -1.75,-6.28125 0,-2.26736 0.6138,-4.31186 1.75,-6.375 1.1311,-2.05791 2.6921,-3.61894 4.75,-4.75 2.0632,-1.03157 4.1187,-1.65625 6.2813,-1.65625 z m -6.6875,4.75 0,16.375 2.5625,0 0,-6.90625 1.5625,0 c 0.9321,0 1.6378,0.2223 2.1562,0.53125 0.7227,0.5184 1.6502,1.85932 2.7813,3.8125 l 1.4375,2.5625 3.1875,0 -1.9375,-3.1875 c -0.9268,-1.44001 -1.7514,-2.5696 -2.4688,-3.1875 -0.3089,-0.40844 -0.7258,-0.62855 -1.3437,-0.9375 1.4452,-0.10473 2.5476,-0.61015 3.375,-1.4375 0.8274,-0.92684 1.25,-1.94647 1.25,-3.1875 0,-0.82211 -0.2056,-1.65761 -0.7187,-2.375 -0.5185,-0.72262 -1.2352,-1.25355 -2.0626,-1.5625 -0.8221,-0.30895 -2.2603,-0.5 -4.2187,-0.5 l -5.5625,0 z m 2.5625,2.25 3.0937,0 c 1.2358,0 2.1801,0.10828 2.5938,0.3125 0.5132,0.10473 0.9155,0.43007 1.125,0.84375 0.3037,0.40844 0.4062,0.79933 0.4062,1.3125 0,0.72262 -0.2993,1.36757 -0.8124,1.78125 -0.5185,0.51317 -1.6486,0.71875 -3.0938,0.71875 l -3.3125,0 0,-4.96875 z m -643.9063,1.875 37.4063,0 c 4.7389,0 8.4607,0.82284 10.9375,2.78125 2.3721,1.95841 3.5938,5.24434 3.5938,10.1875 l 0,25.6875 c 0,4.94316 -1.2217,8.22385 -3.5938,10.1875 -2.4768,1.95318 -6.1986,2.78125 -10.9375,2.78125 l -37.4063,0 c -4.7389,0 -8.4404,-0.82807 -10.8124,-2.78125 -2.3721,-1.96365 -3.7188,-5.24434 -3.7188,-10.1875 l 0,-25.6875 c 0,-4.94316 1.3467,-8.22909 3.7188,-10.1875 2.372,-1.95841 6.0735,-2.78125 10.8124,-2.78125 z m 552.1876,0 37.4062,0 c 4.7442,0 8.4404,0.82284 10.8125,2.78125 2.4716,1.95841 3.7187,5.24434 3.7187,10.1875 l 0,25.6875 c 0,4.94316 -1.2471,8.22385 -3.7187,10.1875 -2.3721,1.95318 -6.0683,2.78125 -10.8125,2.78125 l -37.4062,0 c -4.739,0 -8.4405,-0.82807 -10.8126,-2.78125 -2.4715,-1.96365 -3.7187,-5.24434 -3.7187,-10.1875 l 0,-25.6875 c 0,-4.94316 1.2472,-8.22909 3.7187,-10.1875 2.3721,-1.95841 6.0736,-2.78125 10.8126,-2.78125 z m -197.6563,0.71875 33.9063,0 c 3.9115,0 11.2252,-0.31565 13.9062,3.1875 0.5132,0.72262 0.8218,1.54191 1.0312,2.46875 0,0.20422 0.2188,2.875 0.2188,2.875 l 0,6.3125 c 0,3.71261 -1.5509,5.76995 -3.7188,6.90625 -2.4715,1.23579 -5.8718,1.4375 -9.375,1.4375 l -35.9687,0 0,-23.1875 z m -67,1.53125 20.1875,34.21875 -40.5,0 20.3125,-34.21875 z m -89.75,103.59375 0,4.71875 4.2187,0 0,-4.71875 -4.2187,0 z m 118.8125,0 0,15.96875 -0.094,0 c -0.5131,-1.24103 -1.2496,-2.17433 -2.2812,-2.6875 -1.749,-0.93208 -4.1038,-1.34375 -7.0938,-1.34375 -2.1626,0 -4.0177,0.22585 -5.5624,0.84375 -2.2726,0.82735 -3.8232,2.56896 -4.75,5.25 -0.6179,1.85892 -0.9376,4.63638 -0.9376,8.34375 0,2.47682 0.2021,4.75459 0.4063,6.8125 0.3142,2.26736 1.1392,4.12823 2.375,5.46875 1.6495,1.95318 4.6602,2.875 8.7813,2.875 2.681,0 4.7255,-0.42265 6.375,-1.25 1.2357,-0.6179 2.1523,-1.63397 2.875,-2.875 l 0.125,0 -0.2188,3.71875 4.125,0 0,-41.125 -4.125,0 z m 46.375,0 0,41.125 4.2188,0 0,-41.125 -4.2188,0 z m 224.4688,0 0,41.125 4.2187,0 0,-13.9375 1.75,0 12.1563,13.9375 5.6874,0 -14.5312,-15.5625 12.3438,-13.21875 -5.3438,0 -10.0938,11.5625 -1.9687,0 0,-23.90625 -4.2187,0 z m -438.5,5.34375 0,7 -4.0313,0 0,3.53125 4.0313,0 0,17.59375 0,2.375 c 0.2042,1.95841 0.9204,3.41691 2.1562,4.34375 1.2358,0.93208 3.183,1.34375 5.9688,1.34375 3.1942,0 5.4517,-0.83956 6.6874,-2.59375 1.0316,-1.33528 1.5626,-3.29869 1.5626,-5.875 0,-0.41368 0.01,-1.12468 -0.094,-2.15625 l -3.9375,0 c 0.1047,0.72262 0.125,1.24832 0.125,1.5625 0,2.36685 -0.3196,3.80863 -0.9375,4.53125 -0.5132,0.6179 -1.6573,0.90625 -3.4062,0.90625 -1.9585,0 -3.0806,-0.51066 -3.5938,-1.4375 -0.2095,-0.72262 -0.4375,-1.76421 -0.4375,-3 l 0,-17.59375 11.125,0 0,-3.53125 -11.125,0 0,-7 -4.0937,0 z m 313.375,0 0,7 -4,0 0,3.53125 4,0 0,17.59375 c 0,1.1363 0.02,1.86183 0.125,2.375 0.1047,1.95841 0.8214,3.41691 2.0624,4.34375 1.2358,0.93208 3.2878,1.34375 5.9688,1.34375 3.1942,0 5.472,-0.83956 6.8125,-2.59375 0.9268,-1.33528 1.4375,-3.29869 1.4375,-5.875 l 0,-2.15625 -3.9375,0 0,1.5625 c 0,2.36685 -0.1946,3.80863 -0.8125,4.53125 -0.6179,0.6179 -1.7458,0.90625 -3.5,0.90625 -1.9584,0 -3.0863,-0.51066 -3.5,-1.4375 -0.3089,-0.72262 -0.4062,-1.76421 -0.4062,-3 l 0,-17.59375 11,0 0,-3.53125 -11,0 0,-7 -4.25,0 z m -279.0626,6.28125 c -2.0631,0 -3.8099,0.43886 -5.25,1.15625 -1.0315,0.41368 -2.0731,1.42401 -3,2.96875 l -0.125,-0.0937 0.4376,-3.3125 -4.125,0 0,28.78125 4.125,0 0,-17.21875 c 0,-2.68104 0.294,-4.52519 0.8124,-5.65625 0.9269,-1.96365 2.9933,-3 6.1876,-3 1.9584,0 3.3086,0.51066 4.0312,1.4375 0.5184,0.6179 0.7188,1.53448 0.7188,2.875 l 0,1.5625 0,0.71875 4.125,0 0,-1.96875 c 0,-2.89049 -0.6283,-4.94073 -1.9688,-6.28125 -1.3405,-1.24103 -3.2929,-1.96875 -5.9688,-1.96875 z m 389.6563,0 c -2.0631,0 -3.8048,0.43886 -5.25,1.15625 -1.0316,0.41368 -2.0679,1.42401 -3,2.96875 l -0.094,-0.0937 0.4062,-3.3125 -4.125,0 0,28.78125 4.125,0 0,-17.21875 c 0,-2.68104 0.2941,-4.52519 0.8125,-5.65625 0.9268,-1.96365 2.9933,-3 6.1875,-3 1.9584,0 3.3139,0.51066 4.0312,1.4375 0.5185,0.6179 0.7188,1.53448 0.7188,2.875 l 0,1.5625 0,0.71875 4.125,0 0,-1.96875 c 0,-2.89049 -0.6335,-4.94073 -1.9688,-6.28125 -1.3405,-1.24103 -3.2877,-1.96875 -5.9687,-1.96875 z m -348.125,0.31255 c -2.7805,0 -5.0693,0.53093 -6.7187,1.5625 -1.0316,0.6179 -1.9539,1.73651 -2.7813,3.28125 l -0.094,-0.0937 0.094,-4.34375 -4.125,0 0,28.78125 4.125,0 0,-16.40625 c 0,-2.57631 0.4336,-4.62823 1.1563,-5.96875 1.2357,-2.16263 3.6879,-3.3125 7.5,-3.3125 3.1994,0 5.1576,0.836 5.875,2.28125 0.2094,0.30895 0.3015,0.71132 0.4062,1.125 0,0.40844 0.125,1.55256 0.125,3.40625 l 0,18.875 4.2188,0 0,-16.59375 c 0,-2.68104 0.2055,-4.55644 0.7187,-5.6875 1.0368,-2.26736 3.7007,-3.40625 8.0313,-3.40625 3.0894,0 4.9648,0.74749 5.6874,2.1875 0.4137,1.03157 0.5938,2.35409 0.5938,4.3125 l 0,19.1875 4.25,0 0,-18.875 c 0,-3.08948 -0.4169,-5.36725 -1.3438,-6.8125 -1.44,-2.36685 -4.3402,-3.5 -8.875,-3.5 -2.681,0 -5.0322,0.51066 -6.7812,1.4375 -1.2358,0.72262 -2.2664,1.86151 -3.0938,3.40625 l -0.125,0 c -1.0315,-3.29893 -4,-4.84375 -8.8437,-4.84375 z m 50.9063,0 c -1.5448,0 -3.0033,0.0203 -4.3438,0.125 -2.4716,0.30371 -4.3157,1.01421 -5.6562,2.25 -0.7174,0.71739 -1.2369,1.66472 -1.75,3 -0.6179,1.85892 -1.0313,4.93047 -1.0313,9.15625 0,4.53472 0.4134,7.74006 1.0313,9.59375 0.8221,2.26736 2.1665,3.81386 4.125,4.53125 1.6494,0.6179 4.1166,0.9375 7.625,0.9375 3.3984,0 5.9755,-0.3196 7.625,-0.9375 1.9584,-0.71739 3.3028,-2.26389 4.125,-4.53125 0.6178,-1.85369 0.9062,-4.95075 0.9062,-9.28125 0,-4.43 -0.2884,-7.52131 -0.9062,-9.375 -0.8222,-2.26736 -2.1666,-3.7039 -4.125,-4.53125 -1.6495,-0.6179 -4.2266,-0.9375 -7.625,-0.9375 z m 65.8437,0 c -2.5763,0 -4.7423,0.12281 -6.1875,0.53125 -2.0631,0.41368 -3.3914,1.24394 -4.2188,2.375 -0.6178,1.1363 -1.0312,2.98619 -1.0312,5.5625 l 4.125,0 0,-0.9375 c 0,-1.54474 0.4226,-2.56437 1.25,-3.1875 1.0316,-0.71739 3.087,-1.15625 6.2812,-1.15625 1.6495,0 3.0987,0.12855 4.125,0.4375 1.3406,0.30895 2.2426,0.91691 2.6563,1.84375 0.5132,1.23579 0.75,3.10595 0.75,5.6875 l 0,3.5 -0.125,0 c -0.4084,-0.93208 -1.1101,-1.6598 -1.9375,-1.96875 -1.749,-0.72262 -4.1495,-1.03125 -7.3438,-1.03125 -1.9584,0 -3.5969,0.0973 -4.9374,0.40625 -2.3669,0.41368 -3.9279,1.336 -4.75,2.78125 -0.9269,1.54474 -1.3126,3.59666 -1.3126,5.96875 0,1.74896 0.2004,3.20745 0.7188,4.34375 0.6179,1.85369 2.1499,3.1946 4.3125,3.8125 1.3458,0.41368 3.2987,0.625 5.875,0.625 1.7542,0 3.2955,-0.10304 4.5313,-0.3125 0.9268,-0.0995 1.9794,-0.51285 2.9062,-1.03125 0.8274,-0.51317 1.6211,-1.22941 2.3438,-2.15625 l -0.2813,3.09375 4.2187,0 0,-18.96875 c 0,-2.05791 -0.2223,-3.62823 -0.5312,-4.96875 -0.5132,-1.85892 -1.7401,-3.29191 -3.5938,-4.21875 -1.6494,-0.72262 -4.2358,-1.03125 -7.8437,-1.03125 z m 67.625,0 c -3.6079,0 -6.288,0.61725 -7.9375,2.0625 -0.6179,0.51317 -1.2426,1.24394 -1.6562,2.375 l -0.094,-0.0937 0.094,-3.9375 -4.2188,0 0,28.78125 4.3125,0 0,-17.34375 c 0,-0.92684 0.1083,-1.73515 0.3125,-2.5625 0.3089,-2.26736 1.3338,-3.82316 3.1875,-4.75 1.2358,-0.6179 3.0029,-1.03125 5.375,-1.03125 1.5447,0 2.7716,0.23328 3.5937,0.4375 1.2411,0.30895 2.0754,0.91691 2.5938,1.84375 0.4084,0.92684 0.5938,2.58568 0.5938,5.0625 l 0,18.34375 4.25,0 0,-18.78125 c 0,-3.40366 -0.3139,-5.66117 -1.0313,-6.6875 -1.4452,-2.47682 -4.6361,-3.71875 -9.375,-3.71875 z m 31.7187,0 c -3.6026,0 -6.1577,0.3289 -7.8124,1.15625 -1.9532,0.82211 -3.3087,2.36862 -4.0313,4.53125 -0.7226,1.85892 -1.0313,4.94145 -1.0313,9.0625 0,3.19944 0.2224,5.76202 0.5313,7.40625 0.5132,2.47682 1.4205,4.21843 2.6563,5.25 1.8536,1.44525 5.059,2.1875 9.5937,2.1875 4.9432,0 8.3651,-0.74225 10.2187,-2.1875 1.4453,-1.13106 2.25,-2.96947 2.25,-5.75 0,-0.20946 -0.094,-0.61183 -0.094,-1.125 l -4.2187,0 c 0,1.23579 -0.1083,2.25187 -0.3126,2.875 -0.1047,0.71739 -0.419,1.2223 -0.9374,1.53125 -1.1311,0.72262 -3.4031,1.15625 -6.9063,1.15625 -1.5447,0 -2.7716,-0.10304 -3.5937,-0.3125 -2.0632,-0.30895 -3.3197,-1.25323 -3.9376,-2.59375 -0.5184,-1.54474 -0.8124,-4.12185 -0.8124,-7.625 l 20.7187,0 c 0,-2.68104 0.011,-4.4262 -0.094,-5.5625 -0.309,-4.63945 -1.6535,-7.51421 -4.125,-8.75 -1.6495,-0.82735 -4.3499,-1.25 -8.0626,-1.25 z m 98.5313,0 c -1.5447,0 -2.972,0.0203 -4.3125,0.125 -2.4716,0.30371 -4.3417,1.01421 -5.6875,2.25 -0.7174,0.71739 -1.3253,1.66472 -1.8437,3 -0.6179,1.85892 -0.9376,4.93047 -0.9376,9.15625 0,4.53472 0.3197,7.74006 0.9376,9.59375 0.8273,2.26736 2.2603,3.81386 4.2187,4.53125 1.55,0.6179 4.1328,0.9375 7.5313,0.9375 3.5031,0 6.0802,-0.3196 7.625,-0.9375 2.0631,-0.71739 3.3966,-2.26389 4.2187,-4.53125 0.6179,-1.85369 0.9375,-4.95075 0.9375,-9.28125 0,-4.43 -0.3196,-7.52131 -0.9375,-9.375 -0.8221,-2.26736 -2.1556,-3.7039 -4.2187,-4.53125 -1.5448,-0.6179 -4.1329,-0.9375 -7.5313,-0.9375 z m -341.625,0.40625 0,28.78125 4.2187,0 0,-28.78125 -4.2187,0 z m 282.875,0 7.8437,28.78125 6.375,0 3.8126,-16 1.25,-4.84375 0.5,-2.46875 0.625,-2.46875 0.125,0 0.5,2.46875 0.625,2.46875 1.125,4.84375 3.8124,16 6.2813,0 8.0625,-28.78125 -4.4375,0 -4.125,15.875 -1.25,5.0625 -0.625,2.46875 -0.5937,2.46875 -0.125,0 -0.5,-2.46875 -0.625,-2.46875 -1.125,-4.9375 -3.9063,-16 -6.1875,0 -3.9375,16 -1.2187,4.9375 -0.625,2.46875 -0.5,2.46875 -0.2188,0 -0.5312,-2.46875 -0.5938,-2.46875 -1.3438,-5.0625 -4.0312,-15.875 -4.4375,0 z m -39.6563,2.90625 c 1.859,0 3.292,0.19679 4.2188,0.40625 1.5447,0.40844 2.5863,1.23296 3,2.46875 0.4137,1.03157 0.614,3.10377 0.7188,6.09375 l -16.4063,0 c 0,-1.34052 0.02,-2.39664 0.125,-3.21875 0.3089,-2.78053 1.2255,-4.41335 2.875,-5.03125 1.1363,-0.5184 2.9972,-0.71875 5.4687,-0.71875 z m -165.3124,0.1875 c 3.5031,0 5.7606,0.54191 6.6874,1.46875 0.4137,0.40844 0.7276,1.12468 1.0313,2.15625 0.4137,1.34052 0.625,3.90665 0.625,7.71875 0,4.84367 -0.4279,7.94073 -1.25,9.28125 -0.8274,1.24103 -3.1822,1.84375 -7.0937,1.84375 -3.5084,0 -5.7867,-0.41691 -6.7188,-1.34375 -0.4137,-0.41368 -0.8218,-1.12468 -1.0312,-2.15625 -0.4085,-1.33528 -0.5938,-4.0004 -0.5938,-7.8125 0,-4.84367 0.3966,-7.84698 1.2188,-9.1875 0.8273,-1.23579 3.2081,-1.96875 7.125,-1.96875 z m 32.5624,0 c 3.0895,0 5.1502,0.63921 6.2813,1.875 1.3405,1.34052 1.9687,4.20075 1.9687,8.53125 0,5.66579 -0.6392,9.19647 -1.875,10.4375 -1.1362,1.13106 -3.2855,1.625 -6.375,1.625 -2.681,0 -4.5454,-0.41691 -5.7812,-1.34375 -1.4452,-1.23579 -2.1562,-4.72949 -2.1562,-10.5 0,-4.73894 0.6334,-7.82147 1.9687,-9.0625 1.0316,-1.02633 2.9788,-1.5625 5.9687,-1.5625 z m 231.1563,0 c 3.5032,0 5.6559,0.54191 6.6875,1.46875 0.4137,0.40844 0.7536,1.12468 1.0625,2.15625 0.3089,1.34052 0.5,3.90665 0.5,7.71875 0,4.84367 -0.4279,7.94073 -1.25,9.28125 -0.7226,1.24103 -3.0774,1.84375 -7.0937,1.84375 -3.5032,0 -5.6617,-0.41691 -6.5938,-1.34375 -0.5132,-0.41368 -0.8473,-1.12468 -1.1562,-2.15625 -0.309,-1.33528 -0.5,-4.0004 -0.5,-7.8125 0,-4.84367 0.4226,-7.84698 1.25,-9.1875 0.7226,-1.23579 3.0721,-1.96875 7.0937,-1.96875 z m -198.0625,11.5625 c 3.4037,0 5.6502,0.40593 6.7812,1.4375 0.9269,0.72262 1.3438,2.15561 1.3438,4.21875 0,1.74896 -0.4076,3.0071 -1.125,3.625 -1.3405,1.13106 -4.0317,1.625 -7.8438,1.625 -3.1942,0 -5.2554,-0.41691 -6.1874,-1.34375 -0.7227,-0.82735 -1.0313,-2.23838 -1.0313,-4.40625 0,-1.95318 0.3086,-3.3196 1.0313,-3.9375 1.0315,-0.82735 3.3238,-1.21875 7.0312,-1.21875 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"/>
7
-  </g>
8
-</svg>
9
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/meta.json Deleted
9
 
1
@@ -1,7 +0,0 @@
2
-{
3
-   "name": "Contargo (Responsive Version)",
4
-   "author": "Kolab Systems AG, Zurich, Switzerland",
5
-   "license": "GNU Affero General Public License",
6
-   "license-url": "http://www.gnu.org/licenses/agpl.html",
7
-   "extends": "elastic"
8
-}
9
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/styles Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/styles/_styles.less Deleted
196
 
1
@@ -1,194 +0,0 @@
2
-/**
3
- * Styles for the Kolab web client variant of the Roundcube Elastic skin
4
- *
5
- * Copyright (C) 2018, Kolab Systems AG <contact@kolabsystems.com>
6
- *
7
- * The contents of this folder can be redistributed and/or modified
8
- * under the terms of the GNU Affero General Public License as published
9
- * by the Free Software Foundation, either version 3 of the License,
10
- * or (at your option) any later version.
11
- */
12
-
13
-@font-face {
14
-  font-family: 'Open Sans';
15
-  font-weight: 300;
16
-  font-style: normal;
17
-  src: url("../fonts/open-sans/Light/OpenSans-Light.woff2") format("woff2"), url("../fonts/open-sans/Light/OpenSans-Light.woff") format("woff");
18
-}
19
-
20
-@font-face {
21
-  font-family: 'Open Sans';
22
-  font-weight: 300;
23
-  font-style: italic;
24
-  src: url("../fonts/open-sans/LightItalic/OpenSans-LightItalic.woff2") format("woff2"), url("../fonts/open-sans/LightItalic/OpenSans-LightItalic.woff") format("woff");
25
-}
26
-
27
-@font-face {
28
-  font-family: 'Open Sans';
29
-  font-weight: normal;
30
-  font-style: normal;
31
-  src: url("../fonts/open-sans/Regular/OpenSans-Regular.woff2") format("woff2"), url("../fonts/open-sans/Regular/OpenSans-Regular.woff") format("woff");
32
-}
33
-
34
-@font-face {
35
-  font-family: 'Open Sans';
36
-  font-weight: normal;
37
-  font-style: italic;
38
-  src: url("../fonts/open-sans/Italic/OpenSans-Italic.woff2") format("woff2"), url("../fonts/open-sans/Italic/OpenSans-Italic.woff") format("woff");
39
-}
40
-
41
-@font-face {
42
-  font-family: 'Open Sans';
43
-  font-weight: 600;
44
-  font-style: normal;
45
-  src: url("../fonts/open-sans/Semibold/OpenSans-Semibold.woff2") format("woff2"), url("../fonts/open-sans/Semibold/OpenSans-Semibold.woff") format("woff");
46
-}
47
-
48
-@font-face {
49
-  font-family: 'Open Sans';
50
-  font-weight: 600;
51
-  font-style: italic;
52
-  src: url("../fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff2") format("woff2"), url("../fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff") format("woff");
53
-}
54
-
55
-body, button, input, optgroup, select, textarea, .popover {
56
-    font-family: 'Open Sans', Roboto, sans-serif;
57
-}
58
-
59
-// Modify taskmenu behavior
60
-#taskmenu {
61
-    span.inner {
62
-        text-transform: uppercase;
63
-    }
64
-
65
-    @media screen and (min-width: (@screen-width-medium + 1px)) and (min-height: 640px) {
66
-        span.inner {
67
-            font-size: 65%;
68
-            font-weight: bold;
69
-        }
70
-
71
-        a:before {
72
-            line-height: 1.2;
73
-            font-size: 180%;
74
-            height: 1.9rem !important;
75
-        }
76
-    }
77
-
78
-    @media screen and (min-width: (@screen-width-small + 1px)) {
79
-        a.logout:not(:hover) {
80
-            color: @color-taskmenu-button !important;
81
-        }
82
-    }
83
-
84
-    @media screen and (min-width: (@screen-width-xs + 1px)) {
85
-        margin-top: .5rem;
86
-    }
87
-
88
-    .action-buttons {
89
-        display: none;
90
-    }
91
-}
92
-
93
-// Fix mobile menu header background
94
-#layout-menu .popover-header {
95
-    background-color: @color-taskmenu-background !important;
96
-
97
-    html:not(.layout-phone) & {
98
-        border-bottom: 1px solid #888;
99
-    }
100
-
101
-    img {
102
-        width: 100%;
103
-
104
-        html.layout-phone & {
105
-            width: unset;
106
-            max-height: @layout-header-height;
107
-        }
108
-    }
109
-}
110
-
111
-body.task-login #logo {
112
-    max-width: 200px;
113
-}
114
-
115
-.watermark {
116
-    background-image: url(../images/logo.svg) !important;
117
-    background-size: 50% !important;
118
-    background-blend-mode: unset !important;
119
-
120
-    &:before {
121
-        background: rgba(255, 255, 255, 0.75) !important;
122
-    }
123
-}
124
-
125
-// Display the Compose button in mail toolbar
126
-body.task-mail .toolbar a.compose {
127
-    display: block !important;
128
-}
129
-
130
-// Move the contact photo in mail preview to the right
131
-#message-header .short-header img.contactphoto {
132
-    order: 2;
133
-    margin: 0 0 0 1rem;
134
-}
135
-
136
-// Make the content frame navigation smaller
137
-.content-frame-navigation {
138
-    height: @layout-footer-small-height !important;
139
-    line-height: @layout-footer-small-height !important;
140
-    min-height: @layout-footer-small-height !important;
141
-
142
-    a {
143
-        max-width: 8em;
144
-        padding: 0;
145
-        line-height: @layout-footer-small-height;
146
-
147
-        &:before {
148
-           display: none !important;
149
-           height: @layout-footer-small-height !important;
150
-           line-height: @layout-footer-small-height !important;
151
-        }
152
-
153
-        &.prev,
154
-        &.next {
155
-            padding: 0;
156
-
157
-            &:before {
158
-                display: block !important;
159
-                line-height: 1.8;
160
-            }
161
-
162
-            span.inner {
163
-                display: none;
164
-            }
165
-        }
166
-
167
-        span.inner {
168
-            color: @color-link;
169
-            font-weight: bold;
170
-        }
171
-    }
172
-}
173
-
174
-.menu.listing {
175
-    li {
176
-        @media screen and (min-width: (@screen-width-small + 1px)) {
177
-            border: 0;
178
-        }
179
-
180
-        &:hover a.active {
181
-            color: unset;
182
-            background-color: @color-list-selected-background;
183
-        }
184
-    }
185
-}
186
-
187
-.popupmenu .listing li.selected {
188
-    color: unset;
189
-    background-color: @color-list-selected-background;
190
-}
191
-
192
-.btn-danger:active,
193
-.btn-danger:hover {
194
-    color: @color-btn-danger;
195
-}
196
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/styles/_variables.less Deleted
58
 
1
@@ -1,56 +0,0 @@
2
-/**
3
- * Styles for the Kolab web client variant of the Roundcube Elastic skin
4
- *
5
- * Copyright (C) 2018, Kolab Systems AG <contact@kolabsystems.com>
6
- *
7
- * The contents of this folder can be redistributed and/or modified
8
- * under the terms of the GNU Affero General Public License as published
9
- * by the Free Software Foundation, either version 3 of the License,
10
- * or (at your option) any later version.
11
- */
12
-
13
-@color-main:            #009bbf;
14
-@color-font:            #545456;
15
-@color-main-dark:       darken(@color-main, 30%);
16
-@color-link:            #009bbf;
17
-@color-success:         #66b630;
18
-@color-error:           #ee6558;
19
-@color-warning:         #dc4a00;
20
-
21
-@color-black-shade-text:    tint(@color-black, 50%);
22
-
23
-@color-layout-header-background:    #f5f5f5;
24
-@color-layout-border:               #d4dbde;
25
-
26
-@color-btn-primary-background:      #67c180;
27
-@color-btn-danger:                  #4b4b4d;
28
-@color-btn-danger-background:       #fcf395;
29
-
30
-@color-taskmenu-background:                 #4b4b4d;
31
-@color-taskmenu-button:                     rgba(255, 255, 255, 0.6);
32
-@color-taskmenu-button-hover:               #00a7ce;
33
-@color-taskmenu-button-selected:            #00a7ce;
34
-@color-taskmenu-button-selected-background:     transparent;
35
-@color-taskmenu-button-action-background:       transparent;
36
-@color-taskmenu-button-background-hover:        transparent;
37
-@color-taskmenu-button-selected-background-hover: transparent;
38
-@color-taskmenu-button-action-background-hover: transparent;
39
-
40
-@color-popover-mobile-header-background:    @color-taskmenu-background;
41
-
42
-@color-list-selected-background:    #f0f0f0;
43
-@color-list-badge-background:       #b1b2b3;
44
-@color-list-unread-status:          @color-main;
45
-@color-list-droptarget-background:  #f9f5cb;
46
-
47
-@color-message-link:                inherit;
48
-@color-message-link-font-weight:    bold;
49
-@color-message-error-box:           #e93a2a;
50
-@color-message-information-box:     #ac9d00;
51
-@color-message-success-box:         #47ae64;
52
-@color-message-warning-box:         #f47434;
53
-@color-message-error-box-background:    #f9cbc7;
54
-@color-message-information-box-background: #f9f5cb;
55
-@color-message-success-box-background:  #c9e9d2;
56
-@color-message-warning-box-background:  #ffd0b8;
57
-
58
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/templates Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/templates/includes Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/templates/includes/menu.html Deleted
24
 
1
@@ -1,22 +0,0 @@
2
-<div id="layout-menu">
3
-   <h2 id="aria-label-tasknav" class="voice"><roundcube:label name="arialabeltasknav" /></h2>
4
-   <div class="popover-header">
5
-       <roundcube:object name="logo" src="/images/logo-white.svg" data-src-small="/images/logo-white-full.svg" id="logo" alt="Logo" />
6
-       <a class="button icon cancel"><span class="inner"><roundcube:label name="close" /></span></a>
7
-   </div>
8
-   <div id="taskmenu" class="toolbar menu" role="navigation" aria-labelledby="aria-label-tasknav">
9
-       <roundcube:button command="mail" label="mail" type="link" innerClass="inner"
10
-           class="mail" classSel="mail selected" />
11
-       <roundcube:button command="addressbook" label="contacts" type="link" innerClass="inner"
12
-           class="addressbook" classSel="addressbook selected" />
13
-       <roundcube:container name="taskbar" id="taskmenu" />
14
-       <roundcube:button command="settings" label="settings" type="link" innerClass="inner"
15
-           class="settings" classSel="settings selected" />
16
-       <span class="special-buttons">
17
-           <roundcube:button name="about" label="about" type="link" innerClass="inner"
18
-               class="about" onclick="UI.about_dialog(this)" />
19
-           <roundcube:button command="logout" label="logout" type="link" innerClass="inner"
20
-               class="logout" />
21
-       </span>
22
-   </div>
23
-</div>
24
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/thumbnail.png Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/contargo/watermark.html Deleted
14
 
1
@@ -1,12 +0,0 @@
2
-<!DOCTYPE html>
3
-<html>
4
-<head>
5
-<title></title>
6
-<style type="text/css">
7
-html, body { height: 100%; overflow: hidden; }
8
-body { background: url(images/logo.svg) center no-repeat #fff; background-size: 50%; }
9
-body:before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, .75); }
10
-</style>
11
-</head>
12
-<body></body>
13
-</html>
14
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/README.md Deleted
60
 
1
@@ -1,58 +0,0 @@
2
-Roundcube Webmail Skin "Kolab Elastic"
3
-======================================
4
-
5
-This skin package contains modifications of the Roundcube's Elastic skin.
6
-It can be used, modified and redistributed according to
7
-the terms described in the LICENSE section.
8
-
9
-For information about building or modifying Roundcube skins please visit
10
-https://github.com/roundcube/roundcubemail/wiki/Skins
11
-
12
-
13
-LICENSE
14
--------
15
-
16
-The contents of this folder can be redistributed and/or modified
17
-under the terms of the GNU Affero General Public License as published
18
-by the Free Software Foundation, either version 3 of the License,
19
-or (at your option) any later version.
20
-
21
-
22
-INSTALLATION
23
-------------
24
-
25
-All styles are written using LESS syntax. Thus it needs to be compiled
26
-using the `lessc` command line tool. This comes with the `nodejs-less`
27
-RPM package which depends on nodejs.
28
-
29
-First create a skin folder in the Roundcube skins directory as a copy
30
-of the Elastic skin:
31
-
32
-```
33
-    $ cp -r roundcubemail/skins/elastic roundcubemail/skins/kolab
34
-    $ cp -r roundcubemail-skin-elastic/kolab/* roundcubemail/skins/kolab
35
-```
36
-
37
-Then you can compile css of the skin in a usual way:
38
-
39
-```
40
-    $ cd roundcubemail/skins/kolab
41
-    $ lessc -x styles/styles.less > styles/styles.css
42
-    $ lessc -x styles/print.less > styles/print.css
43
-    $ lessc -x styles/embed.less > styles/embed.css
44
-```
45
-
46
-Css for external plugins need to be rebuild too, e.g. Kolab plugins.
47
-
48
-```
49
-    $ cd roundcubemail-plugins-kolab/plugins/libkolab
50
-    $ cp -r skins/elastic skins/kolab
51
-    $ sed -i 's/"elastic"/"kolab"/g' skins/kolab/libkolab.less
52
-    $ lessc --relative-urls -x skins/kolab/libkolab.less > skins/kolab/styles.css
53
-```
54
-
55
-References to image files from the included CSS files can be appended
56
-with cache-buster marks to avoid browser caching issues after updating.
57
-
58
-Run `bin/updatecss.sh --dir skins/kolab` before packaging the skin
59
-or after installing it on the destination system.
60
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/images Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/images/favicon.ico Deleted
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/images/logo.svg Deleted
13
 
1
@@ -1,11 +0,0 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
-    viewBox="0 0 566.9 566.9" xml:space="preserve">
5
-<style type="text/css">
6
-   .st0{fill:#f4c200;}
7
-</style>
8
-<path class="st0" d="M334.4,511c-9.9,0-18.8-6.7-21.3-16.7c-2.9-11.8,4.2-23.7,16-26.7C412.6,446.7,471,372,471,285.8
9
-   c0-103.3-84.1-187.4-187.4-187.4s-187.5,84-187.5,187.4c0,86.2,58.3,161,141.9,181.8c11.8,2.9,19,14.9,16,26.7
10
-   c-2.9,11.8-14.9,19-26.7,16C124.2,484.5,52.1,392.2,52.1,285.8c0-127.6,103.8-231.4,231.4-231.4S515,158.1,515,285.8
11
-   c0,106.4-72.1,198.8-175.2,224.5C338,510.7,336.2,511,334.4,511z"/>
12
-</svg>
13
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/images/watermark.svg Deleted
25
 
1
@@ -1,23 +0,0 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
-    viewBox="0 0 1700.8 566.9" xml:space="preserve">
5
-<style type="text/css">
6
-   .st0{fill:#F3A628;}
7
-</style>
8
-<path class="st0" d="M97.8,125.3c0-6.3,4.8-11.9,11.9-11.9h14.3c6.3,0,11.9,5.4,11.9,11.9v139.5l153.9-146.4c2-2.4,6.3-4.8,9.3-4.8
9
-   h24.2c8.9,0,13.8,9.9,6,17.3L173.6,276.4l163.2,167.1c3.5,3.5,2.4,15.3-8.4,15.3h-25.1c-3.5,0-7.8-2-8.9-3.5L136,290v156.8
10
-   c0,6.3-5.4,11.9-11.9,11.9h-14.3c-6.9,0-11.9-5.4-11.9-11.9V125.3z"/>
11
-<path class="st0" d="M789.4,122.7c0-4.8,3.9-9.3,9.3-9.3h19.2c4.8,0,9.3,4.5,9.3,9.3v302.7h141.9c5.4,0,9.3,4.5,9.3,9.3V449
12
-   c0,4.8-3.9,9.3-9.3,9.3H798.5c-5.4,0-9.3-4.5-9.3-9.3V122.7H789.4z"/>
13
-<path class="st0" d="M999.5,445.7L1149.4,114c1.5-3,3.9-5.4,8.4-5.4h4.8c4.5,0,6.9,2.4,8.4,5.4l148.8,331.7c3,6.3-0.9,12.9-8.4,12.9
14
-   h-19.7c-4.5,0-7.5-3-8.4-5.4l-36.5-81.4H1072l-35.9,81.4c-0.9,2.4-3.9,5.4-8.4,5.4h-19.7C1000.4,458.5,996.5,452,999.5,445.7z
15
-    M1233.6,341.2c-24.2-53.6-47.9-108-71.9-161.7h-3.9l-71.9,161.7H1233.6z"/>
16
-<path class="st0" d="M1373.5,122.7c0-4.8,3.9-9.3,9.3-9.3h108c60.2,0,101.1,38.9,101.1,90.7c0,38-25.1,65.6-48.2,78.8
17
-   c26.1,10.8,59.2,35,59.2,80.3c0,55.1-44,95.2-107.5,95.2h-112.3c-5.4,0-9.3-4.5-9.3-9.3V122.7H1373.5z M1499.3,425.4
18
-   c35.9,0,62-27.2,62-62.6c0-35-32-60.7-70.4-60.7h-81.4v123.3H1499.3z M1490.9,268.2c38,0,59.2-27.2,59.2-61.7
19
-   c0-35.6-21.2-59.2-59.2-59.2h-80.3V268h80.3V268.2z"/>
20
-<path class="st0" d="M576.9,456.1c-7.5,0-14.3-5-16.2-12.7c-2.2-8.9,3.2-18.1,12.3-20.3c63.7-15.8,108.2-73,108.2-138.6
21
-   c0-78.8-64.1-142.9-142.9-142.9s-142.9,64.1-142.9,142.9c0,65.8,44.5,122.7,108.2,138.6c8.9,2.2,14.5,11.4,12.3,20.3
22
-   c-2.2,8.9-11.4,14.5-20.3,12.3c-78.6-19.6-133.6-90.2-133.6-171.2c0-97.2,79.2-176.6,176.6-176.6s176.6,79.2,176.6,176.6
23
-   c0,81.2-54.9,151.6-133.6,171.2C579.7,455.9,578.4,456.1,576.9,456.1z"/>
24
-</svg>
25
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/meta.json Deleted
9
 
1
@@ -1,7 +0,0 @@
2
-{
3
-   "name": "Kolab (Responsive Version)",
4
-   "author": "Kolab Systems AG, Zurich, Switzerland",
5
-   "license": "GNU Affero General Public License",
6
-   "license-url": "http://www.gnu.org/licenses/agpl.html",
7
-   "extends": "elastic"
8
-}
9
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/styles Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/styles/_styles.less Deleted
115
 
1
@@ -1,113 +0,0 @@
2
-/**
3
- * Styles for the Kolab web client variant of the Roundcube Elastic skin
4
- *
5
- * Copyright (C) 2018, Kolab Systems AG <contact@kolabsystems.com>
6
- *
7
- * The contents of this folder can be redistributed and/or modified
8
- * under the terms of the GNU Affero General Public License as published
9
- * by the Free Software Foundation, either version 3 of the License,
10
- * or (at your option) any later version.
11
- */
12
-
13
-// Modify taskmenu behavior
14
-#taskmenu {
15
-    span.inner {
16
-        text-transform: uppercase;
17
-    }
18
-
19
-    @media screen and (min-width: (@screen-width-medium + 1px)) and (min-height: 640px) {
20
-        span.inner {
21
-            font-size: 65%;
22
-            font-weight: bold;
23
-        }
24
-
25
-        a:before {
26
-            line-height: 1.2;
27
-            font-size: 180%;
28
-            height: 1.9rem !important;
29
-        }
30
-    }
31
-
32
-    @media screen and (min-width: (@screen-width-small + 1px)) {
33
-        a.logout:not(:hover) {
34
-            color: @color-taskmenu-button !important;
35
-        }
36
-    }
37
-
38
-    .action-buttons {
39
-        display: none;
40
-    }
41
-}
42
-
43
-// Fix mobile menu header background
44
-#layout-menu .popover-header {
45
-    background-color: @color-taskmenu-background !important;
46
-
47
-    img {
48
-        width: 100%;
49
-
50
-        html.layout-phone & {
51
-            width: unset;
52
-            max-height: @layout-header-height;
53
-        }
54
-    }
55
-}
56
-
57
-.watermark {
58
-    background-image: url(../images/watermark.svg) !important;
59
-    background-size: 60% !important;
60
-    background-blend-mode: unset !important;
61
-
62
-    &:before {
63
-        background: rgba(255, 255, 255, 0.75) !important;
64
-    }
65
-}
66
-
67
-// Display the Compose button in mail toolbar
68
-body.task-mail .menu a.compose {
69
-    display: block !important;
70
-}
71
-
72
-// Move the contact photo in mail preview to the right
73
-#message-header .short-header img.contactphoto {
74
-    order: 2;
75
-    margin: 0 0 0 1rem;
76
-}
77
-
78
-// Make the content frame navigation smaller
79
-.content-frame-navigation {
80
-    height: @layout-footer-small-height !important;
81
-    line-height: @layout-footer-small-height !important;
82
-    min-height: @layout-footer-small-height !important;
83
-
84
-    a {
85
-        max-width: 8em;
86
-        padding: 0;
87
-        line-height: @layout-footer-small-height;
88
-
89
-        &:before {
90
-           display: none !important;
91
-           height: @layout-footer-small-height !important;
92
-           line-height: @layout-footer-small-height !important;
93
-        }
94
-
95
-        &.prev,
96
-        &.next {
97
-            padding: 0;
98
-
99
-            &:before {
100
-                display: block !important;
101
-                line-height: 1.8;
102
-            }
103
-
104
-            span.inner {
105
-                display: none;
106
-            }
107
-        }
108
-
109
-        span.inner {
110
-            color: @color-link;
111
-            font-weight: bold;
112
-        }
113
-    }
114
-}
115
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/styles/_variables.less Deleted
34
 
1
@@ -1,32 +0,0 @@
2
-/**
3
- * Styles for the Kolab web client variant of the Roundcube Elastic skin
4
- *
5
- * Copyright (C) 2018, Kolab Systems AG <contact@kolabsystems.com>
6
- *
7
- * The contents of this folder can be redistributed and/or modified
8
- * under the terms of the GNU Affero General Public License as published
9
- * by the Free Software Foundation, either version 3 of the License,
10
- * or (at your option) any later version.
11
- */
12
-
13
-@color-main:            #f4c200;
14
-@color-font:            #4f4f4f;
15
-@color-main-dark:       darken(@color-main, 30%);
16
-@color-link:            @color-main;
17
-
18
-@color-black-shade-bg:              #f8f7f4;
19
-@color-black-shade-text:            #7b7b77;
20
-
21
-@color-layout-header-background:    #f1eeea;
22
-@color-layout-border:               #d4dbde;
23
-
24
-
25
-@color-taskmenu-background:                 #3a444e;
26
-@color-taskmenu-button:                     #71777d;
27
-@color-taskmenu-button-hover:               #e1e2e3;
28
-@color-taskmenu-button-selected:            #e1e2e3;
29
-
30
-@color-popover-mobile-header-background:    @color-taskmenu-background;
31
-
32
-@color-toolbar-button:              #7b7b77;
33
-@color-toolbar-button-background-hover: tint(@color-layout-header-background, 40%);
34
roundcubemail-skin-plesk-0.4.0.tar.gz/kolab/watermark.html Deleted
14
 
1
@@ -1,12 +0,0 @@
2
-<!DOCTYPE html>
3
-<html>
4
-<head>
5
-<title></title>
6
-<style type="text/css">
7
-html, body { height: 100%; overflow: hidden; }
8
-body { background: url(images/watermark.svg) center no-repeat #fff; background-size: 60%; }
9
-body:before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, .75); }
10
-</style>
11
-</head>
12
-<body></body>
13
-</html>
14
roundcubemail-skin-plesk-0.4.0.tar.gz/now Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/now/images Deleted
2
 
1
-(directory)
2
roundcubemail-skin-plesk-0.4.0.tar.gz/now/images/logo.svg Deleted
13
 
1
@@ -1,11 +0,0 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
-    viewBox="0 0 566.9 566.9" xml:space="preserve">
5
-<style type="text/css">
6
-   .st0{fill:#F3A628;}
7
-</style>
8
-<path class="st0" d="M334.4,511c-9.9,0-18.8-6.7-21.3-16.7c-2.9-11.8,4.2-23.7,16-26.7C412.6,446.7,471,372,471,285.8
9
-   c0-103.3-84.1-187.4-187.4-187.4s-187.5,84-187.5,187.4c0,86.2,58.3,161,141.9,181.8c11.8,2.9,19,14.9,16,26.7
10
-   c-2.9,11.8-14.9,19-26.7,16C124.2,484.5,52.1,392.2,52.1,285.8c0-127.6,103.8-231.4,231.4-231.4S515,158.1,515,285.8
11
-   c0,106.4-72.1,198.8-175.2,224.5C338,510.7,336.2,511,334.4,511z"/>
12
-</svg>
13
roundcubemail-skin-plesk-0.4.0.tar.gz/now/images/watermark.svg Deleted
34
 
1
@@ -1,32 +0,0 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
-    viewBox="0 0 1700.8 566.9" xml:space="preserve">
5
-<style type="text/css">
6
-   .st0{fill:#F3A628;}
7
-   .st1{fill:#575756;}
8
-</style>
9
-<path class="st0" d="M97.8,197.2c0-3.4,2.6-6.4,6.4-6.4h7.7c3.4,0,6.4,2.9,6.4,6.4v74.9l82.6-78.6c1.1-1.3,3.4-2.6,5-2.6h13
10
-   c4.8,0,7.4,5.3,3.2,9.3l-83.6,78.1l87.6,89.7c1.9,1.9,1.3,8.2-4.5,8.2h-13.5c-1.9,0-4.2-1.1-4.8-1.9l-85-88.7v84.2
11
-   c0,3.4-2.9,6.4-6.4,6.4h-7.7c-3.7,0-6.4-2.9-6.4-6.4V197.2z"/>
12
-<path class="st0" d="M469.1,195.8c0-2.6,2.1-5,5-5h10.3c2.6,0,5,2.4,5,5v162.5h76.2c2.9,0,5,2.4,5,5v7.7c0,2.6-2.1,5-5,5H474
13
-   c-2.9,0-5-2.4-5-5V195.8H469.1z"/>
14
-<path class="st0" d="M581.9,369.2l80.5-178.1c0.8-1.6,2.1-2.9,4.5-2.9h2.6c2.4,0,3.7,1.3,4.5,2.9l79.9,178.1
15
-   c1.6,3.4-0.5,6.9-4.5,6.9h-10.6c-2.4,0-4-1.6-4.5-2.9l-19.6-43.7h-93.9l-19.3,43.7c-0.5,1.3-2.1,2.9-4.5,2.9h-10.6
16
-   C582.4,376.1,580.3,372.6,581.9,369.2z M707.6,313.1c-13-28.8-25.7-58-38.6-86.8h-2.1l-38.6,86.8H707.6z"/>
17
-<path class="st0" d="M782.7,195.8c0-2.6,2.1-5,5-5h58c32.3,0,54.3,20.9,54.3,48.7c0,20.4-13.5,35.2-25.9,42.3
18
-   c14,5.8,31.8,18.8,31.8,43.1c0,29.6-23.6,51.1-57.7,51.1h-60.3c-2.9,0-5-2.4-5-5V195.8H782.7z M850.2,358.3
19
-   c19.3,0,33.3-14.6,33.3-33.6c0-18.8-17.2-32.6-37.8-32.6H802v66.2H850.2z M845.7,273.9c20.4,0,31.8-14.6,31.8-33.1
20
-   c0-19.1-11.4-31.8-31.8-31.8h-43.1v64.8h43.1V273.9z"/>
21
-<path class="st1" d="M976.8,192.9c0-2.6,2.4-4.8,5-4.8h6.6l119.4,148.7c0.3,0,0.3,0,0.5,0v-141c0-2.6,2.1-5,5-5h9.3c2.6,0,5,2.4,5,5
22
-   v178.1c0,2.6-2.4,4.8-5,4.8h-4.8L996.4,227.1h-0.3v144c0,2.6-2.1,5-5,5h-9.3c-2.6,0-5-2.4-5-5L976.8,192.9L976.8,192.9z"/>
23
-<path class="st1" d="M1263.2,188.2c52.9,0,95.3,42.6,95.3,95.5s-42.3,95-95.3,95s-95-42.1-95-95S1210.2,188.2,1263.2,188.2z
24
-    M1263.2,360.2c42.1,0,76.7-34.4,76.7-76.5s-34.7-77-76.7-77s-76.5,34.9-76.5,77S1221.1,360.2,1263.2,360.2z"/>
25
-<path class="st1" d="M1380.7,197.2c-1.1-3.7,1.1-6.4,4.8-6.4h11.1c2.1,0,4.2,1.9,4.8,3.7l36.8,137.1h1.1l44.2-140.5
26
-   c0.5-1.6,2.1-2.9,4.5-2.9h4.8c2.1,0,4,1.3,4.5,2.9l45,140.5h1.1l36-137.1c0.5-1.9,2.6-3.7,4.8-3.7h11.1c3.7,0,5.8,2.6,4.8,6.4
27
-   l-50,177.8c-0.5,2.1-2.6,3.7-4.8,3.7h-4.2c-1.9,0-3.7-1.3-4.5-2.9l-45.8-143.2h-1.3l-45,143.2c-0.8,1.6-2.6,2.9-4.5,2.9h-4.2
28
-   c-2.1,0-4.2-1.6-4.8-3.7L1380.7,197.2z"/>
29
-<path class="st0" d="M355,374.8c-4,0-7.7-2.7-8.7-6.8c-1.2-4.8,1.7-9.7,6.6-10.9c34.2-8.5,58.1-39.2,58.1-74.4
30
-   c0-42.3-34.4-76.7-76.7-76.7s-76.7,34.4-76.7,76.7c0,35.3,23.9,65.9,58.1,74.4c4.8,1.2,7.8,6.1,6.6,10.9c-1.2,4.8-6.1,7.8-10.9,6.6
31
-   c-42.2-10.5-71.7-48.4-71.7-91.9c0-52.2,42.5-94.8,94.8-94.8s94.8,42.5,94.8,94.8c0,43.6-29.5,81.4-71.7,91.9
32
-   C356.5,374.7,355.8,374.8,355,374.8z"/>
33
-</svg>
34
Refresh
roundcubemail-selfcontained
Refresh


Request History
Jeroen van Meeuwen's avatar

vanmeeuwen created request about 3 years ago

Submit the tarball thing so that I can test the enterprise side of it


Jeroen van Meeuwen's avatar

vanmeeuwen accepted review about 3 years ago

Accept


Jeroen van Meeuwen's avatar

vanmeeuwen accepted review about 3 years ago

Accept


Jeroen van Meeuwen's avatar

vanmeeuwen approved review about 3 years ago

Accept


Jeroen van Meeuwen's avatar

vanmeeuwen accepted request about 3 years ago

Accept