dev/null |binary loleaflet/css/selectionMarkers.css | 10 +++--- loleaflet/images/cursor-handler.svg | 31 ++++++++++++++++++ loleaflet/images/handle_end.svg | 31 ++++++++++++++++++ loleaflet/images/handle_start.svg | 59 ++++++++++++++++++++++++++++++++++++ 5 files changed, 126 insertions(+), 5 deletions(-)
New commits: commit 8a3a17316ed17c37c1689cdac573305d0816ce49 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Tue Aug 6 14:39:31 2019 +0200 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Fri Aug 30 10:09:13 2019 +0200 remove unused cursor-handler.png, handle_end.png, handle_start.png Change-Id: I8a98d6b4770288af21bcf449966036c7f23a563a diff --git a/loleaflet/images/cursor-handler.png b/loleaflet/images/cursor-handler.png deleted file mode 100644 index ea3e7c038..000000000 Binary files a/loleaflet/images/cursor-handler.png and /dev/null differ diff --git a/loleaflet/images/handle_end.png b/loleaflet/images/handle_end.png deleted file mode 100644 index 044d6850b..000000000 Binary files a/loleaflet/images/handle_end.png and /dev/null differ diff --git a/loleaflet/images/handle_start.png b/loleaflet/images/handle_start.png deleted file mode 100644 index bd072aa90..000000000 Binary files a/loleaflet/images/handle_start.png and /dev/null differ commit 3ed3d9de502df3d798f1b6ff2a5d9e784077982b Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Tue Aug 6 13:58:37 2019 +0200 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Fri Aug 30 10:09:06 2019 +0200 use svg images instead of png images Change-Id: I764ede0b9df8f0c9f17a9c9127c8b95c5b951d3b diff --git a/loleaflet/css/selectionMarkers.css b/loleaflet/css/selectionMarkers.css index 21199f81c..0711a0c98 100644 --- a/loleaflet/css/selectionMarkers.css +++ b/loleaflet/css/selectionMarkers.css @@ -2,19 +2,19 @@ margin-left: -28px; width: 30px; height: 44px; - background-image: url('images/handle_start.png'); + background-image: url('images/handle_start.svg'); } .leaflet-selection-marker-end { margin-left: -2px; width: 30px; height: 44px; - background-image: url('images/handle_end.png'); + background-image: url('images/handle_end.svg'); } .leaflet-cursor-handler { margin-left: -12px; width: 30px; height: 44px; - background-image: url('images/cursor-handler.png'); + background-image: url('images/cursor-handler.svg'); } commit 5bb767a52d650e2e1b701bb97cb22bac1adf7ae1 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Tue Aug 6 13:10:23 2019 +0200 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Fri Aug 30 10:08:58 2019 +0200 adjust size of .leaflet-cursor-handler Change-Id: I8f96da54935b3ea7edc9100f18542e6d30c4f18e diff --git a/loleaflet/css/selectionMarkers.css b/loleaflet/css/selectionMarkers.css index ec076e464..21199f81c 100644 --- a/loleaflet/css/selectionMarkers.css +++ b/loleaflet/css/selectionMarkers.css @@ -14,7 +14,7 @@ .leaflet-cursor-handler { margin-left: -12px; - width: 25px; - height: 41px; + width: 30px; + height: 44px; background-image: url('images/cursor-handler.png'); } commit 47bb8288e05fd0348833bf0b450a46ec22e271b1 Author: Pedro Pinto da Silva <pedro.si...@collabora.com> AuthorDate: Tue Aug 6 10:48:37 2019 +0200 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Fri Aug 30 10:08:48 2019 +0200 redesigned platform agnostic text handles Change-Id: Ic72653f209863442eb4aa80e3a7c47f2795fa221 diff --git a/loleaflet/images/cursor-handler.png b/loleaflet/images/cursor-handler.png index f362715b0..ea3e7c038 100644 Binary files a/loleaflet/images/cursor-handler.png and b/loleaflet/images/cursor-handler.png differ diff --git a/loleaflet/images/cursor-handler.svg b/loleaflet/images/cursor-handler.svg new file mode 100644 index 000000000..7f16df4e2 --- /dev/null +++ b/loleaflet/images/cursor-handler.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + width="30" + height="44" + viewBox="0 0 30 44" + version="1.1" + id="svg8"> + <defs + id="defs2" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <path + id="handle" + d="M 14.999993,0 4.3933975,10.6066 a 14.999997,14.999997 0 0 0 0,21.213199 14.999997,14.999997 0 0 0 21.2132035,0 14.999997,14.999997 0 0 0 0,-21.213202 z" + style="opacity:1;vector-effect:none;fill:#3d3846;fill-opacity:1;stroke:none;stroke-width:3.99999952;stroke-linecap:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> +</svg> diff --git a/loleaflet/images/handle_end.png b/loleaflet/images/handle_end.png index 32b77dfa6..044d6850b 100644 Binary files a/loleaflet/images/handle_end.png and b/loleaflet/images/handle_end.png differ diff --git a/loleaflet/images/handle_end.svg b/loleaflet/images/handle_end.svg new file mode 100644 index 000000000..7ce3f1d80 --- /dev/null +++ b/loleaflet/images/handle_end.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + width="30" + height="44" + viewBox="0 0 30 44" + version="1.1" + id="svg8"> + <defs + id="defs2" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <path + id="handle-end" + d="M 0,0 V 15.000002 A 15,15 0 0 0 14.999997,30.000003 15,15 0 0 0 29.999999,15.000002 15,15 0 0 0 14.999997,0 Z" + style="opacity:1;vector-effect:none;fill:#0b6fe1;fill-opacity:1;stroke:none;stroke-width:3.99999952;stroke-linecap:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> +</svg> diff --git a/loleaflet/images/handle_start.png b/loleaflet/images/handle_start.png index cf12a0dcd..bd072aa90 100644 Binary files a/loleaflet/images/handle_start.png and b/loleaflet/images/handle_start.png differ diff --git a/loleaflet/images/handle_start.svg b/loleaflet/images/handle_start.svg new file mode 100644 index 000000000..3617fca00 --- /dev/null +++ b/loleaflet/images/handle_start.svg @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="30" + height="44" + viewBox="0 0 30 44" + version="1.1" + id="svg8" + sodipodi:docname="handle_start.svg" + inkscape:version="0.92.4 (unknown)" + inkscape:export-filename="/home/pedrosilva/Documents/Projects/Collabora/Text-handles/AMX/handle_start.png" + inkscape:export-xdpi="95.999985" + inkscape:export-ydpi="95.999985"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1017" + id="namedview6" + showgrid="false" + inkscape:zoom="5.3636364" + inkscape:cx="15" + inkscape:cy="22" + inkscape:window-x="1600" + inkscape:window-y="30" + inkscape:window-maximized="1" + inkscape:current-layer="svg8" /> + <defs + id="defs2" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <path + id="handle-start" + d="M 29.999999,0 V 15.000001 A 15,15 0 0 1 15.000002,30.000003 15,15 0 0 1 0,15.000001 15,15 0 0 1 15.000002,0 Z" + style="opacity:1;vector-effect:none;fill:#0b6fe1;fill-opacity:1;stroke:none;stroke-width:3.99999952;stroke-linecap:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" + inkscape:connector-curvature="0" /> +</svg> _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits