changes on server
This commit is contained in:
22
dist/app.js
vendored
22
dist/app.js
vendored
@@ -5162,6 +5162,13 @@ var app = (function (exports) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// https://stackoverflow.com/questions/11381673/detecting-a-mobile-browser
|
||||||
|
function mobilecheck () {
|
||||||
|
var check = false;
|
||||||
|
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))) check = true;})(navigator.userAgent||navigator.vendor||window.opera);
|
||||||
|
return check;
|
||||||
|
}
|
||||||
|
|
||||||
// import { ForceNet } from './forcenet.js';
|
// import { ForceNet } from './forcenet.js';
|
||||||
|
|
||||||
class Map$2 {
|
class Map$2 {
|
||||||
@@ -5288,13 +5295,24 @@ var app = (function (exports) {
|
|||||||
.on("zoom", () => {
|
.on("zoom", () => {
|
||||||
this.content.attr("transform", event.transform);
|
this.content.attr("transform", event.transform);
|
||||||
// console.log("transform", event.transform, this.content.attr("transform"));
|
// console.log("transform", event.transform, this.content.attr("transform"));
|
||||||
|
})
|
||||||
|
.filter(function () {
|
||||||
|
// console.log("filter", event);
|
||||||
|
if (event.touches && event.touches.length == 1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.rect = this.svg.append("rect")
|
this.rect = this.svg.append("rect")
|
||||||
.attr("width", 1000)
|
.attr("width", 1000)
|
||||||
.attr("height", 1000)
|
.attr("height", 1000)
|
||||||
.style("fill", "none");
|
.style("fill", "none");
|
||||||
// .style("pointer-events", "all")
|
if (!mobilecheck()) {
|
||||||
// .call(this.zoom);
|
this.rect.style("pointer-events", "all")
|
||||||
|
.call(this.zoom);
|
||||||
|
}
|
||||||
|
|
||||||
this.content = this.svg.append("g")
|
this.content = this.svg.append("g")
|
||||||
.attr("id", "content"),
|
.attr("id", "content"),
|
||||||
this.linksg = this.content.append("g")
|
this.linksg = this.content.append("g")
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div id="vbody">
|
<div id="vbody">
|
||||||
<div id="page">
|
<div id="page">
|
||||||
|
<div id="handle"></div>
|
||||||
<svg id="svg"></svg>
|
<svg id="svg"></svg>
|
||||||
<div id="cats">
|
<div id="cats">
|
||||||
<div class="body"></div>
|
<div class="body"></div>
|
||||||
|
|||||||
@@ -6,17 +6,19 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="/m/style.css">
|
<link rel="stylesheet" type="text/css" href="/m/style.css">
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
margin: 5%;
|
margin: 1.5em;
|
||||||
margin-left: 50px;
|
margin-left: 40px;
|
||||||
margin-top: 10px;
|
margin-top: 2.5em;
|
||||||
background: #111111;
|
background: #333;
|
||||||
color: white;
|
color: white;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
font-family: Vega;
|
||||||
|
font-size: 17px;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: Combined;
|
font-family: Combined;
|
||||||
font-size: 100%;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
#content {
|
#content {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
@@ -40,7 +42,7 @@
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
div.edit {
|
div.edit {
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -4,6 +4,12 @@
|
|||||||
<title>recent files</title>
|
<title>recent files</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<style>
|
<style>
|
||||||
|
:root {
|
||||||
|
--font-title: Combined;
|
||||||
|
--font-body: Vega;
|
||||||
|
--color-a: #a700ff;
|
||||||
|
--color-b: #00ab6b;
|
||||||
|
}
|
||||||
body {
|
body {
|
||||||
background: #eee;
|
background: #eee;
|
||||||
background-image: linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 0, transparent 75%, rgba(0,0,0,.25) 0), linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 0, transparent 75%, rgba(0,0,0,.25) 0);
|
background-image: linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 0, transparent 75%, rgba(0,0,0,.25) 0), linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 0, transparent 75%, rgba(0,0,0,.25) 0);
|
||||||
@@ -17,6 +23,19 @@
|
|||||||
}
|
}
|
||||||
div.file img {
|
div.file img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
div.file a {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 2px;
|
||||||
|
border-color: transparent;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
div.file a:hover {
|
||||||
|
border-image: linear-gradient(to right, var(--color-a), var(--color-b));
|
||||||
|
border-image-slice: 1;
|
||||||
|
border-width: 2px;
|
||||||
|
border-color: initial;
|
||||||
}
|
}
|
||||||
div#footer {
|
div#footer {
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import { forceSimulation, forceLink, forceManyBody, forceCenter, forceX, forceY,
|
|||||||
import { Wiki, Page } from './wiki.js';
|
import { Wiki, Page } from './wiki.js';
|
||||||
import EventEmitter from 'eventemitter3';
|
import EventEmitter from 'eventemitter3';
|
||||||
import { json } from 'd3-fetch';
|
import { json } from 'd3-fetch';
|
||||||
|
import { mobilecheck } from './mobilecheck.js';
|
||||||
|
|
||||||
// import { ForceNet } from './forcenet.js';
|
// import { ForceNet } from './forcenet.js';
|
||||||
|
|
||||||
@@ -133,13 +134,24 @@ export class Map {
|
|||||||
.on("zoom", () => {
|
.on("zoom", () => {
|
||||||
this.content.attr("transform", event.transform);
|
this.content.attr("transform", event.transform);
|
||||||
// console.log("transform", event.transform, this.content.attr("transform"));
|
// console.log("transform", event.transform, this.content.attr("transform"));
|
||||||
|
})
|
||||||
|
.filter(function () {
|
||||||
|
// console.log("filter", event);
|
||||||
|
if (event.touches && event.touches.length == 1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.rect = this.svg.append("rect")
|
this.rect = this.svg.append("rect")
|
||||||
.attr("width", 1000)
|
.attr("width", 1000)
|
||||||
.attr("height", 1000)
|
.attr("height", 1000)
|
||||||
.style("fill", "none");
|
.style("fill", "none");
|
||||||
// .style("pointer-events", "all")
|
if (!mobilecheck()) {
|
||||||
// .call(this.zoom);
|
this.rect.style("pointer-events", "all")
|
||||||
|
.call(this.zoom);
|
||||||
|
}
|
||||||
|
|
||||||
this.content = this.svg.append("g")
|
this.content = this.svg.append("g")
|
||||||
.attr("id", "content"),
|
.attr("id", "content"),
|
||||||
this.linksg = this.content.append("g")
|
this.linksg = this.content.append("g")
|
||||||
|
|||||||
24
style.css
24
style.css
@@ -13,7 +13,11 @@
|
|||||||
}
|
}
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Vega";
|
font-family: "Vega";
|
||||||
src: url('/mw/skins/foreground/assets/fonts/Vega-regular.otf');
|
src: url('/mw/skins/foreground/assets/fonts/Vega-Regular.otf');
|
||||||
|
src: url('/mw/skins/foreground/assets/fonts/Vega-Regular.ttf') format("truetype");
|
||||||
|
src: url("/mw/skins/foreground/assets/fonts/Vega-Regular-Webfont.svg") format("svg");
|
||||||
|
src: url("/mw/skins/foreground/assets/fonts/Vega-Regular.woff") format("woff");
|
||||||
|
src: url("/mw/skins/foreground/assets/fonts/Vega-Regular.woff2") format("woff2");
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
@@ -35,6 +39,15 @@ body {
|
|||||||
font-family: Vega;
|
font-family: Vega;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#handle {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -3em;
|
||||||
|
width: 70%;
|
||||||
|
height: 5em;
|
||||||
|
background-color: transparent;
|
||||||
|
left: 5em;
|
||||||
|
}
|
||||||
|
|
||||||
.links line {
|
.links line {
|
||||||
stroke: #aaa;
|
stroke: #aaa;
|
||||||
/*stroke: none;*/
|
/*stroke: none;*/
|
||||||
@@ -86,8 +99,8 @@ svg g.page {
|
|||||||
|
|
||||||
svg g.page text {
|
svg g.page text {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
fill: #222;
|
fill: black;
|
||||||
font: 12px Vega;
|
font: 16px Vega;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg g.active text {
|
svg g.active text {
|
||||||
@@ -377,6 +390,7 @@ a.talk {
|
|||||||
left: 0; top: 0;
|
left: 0; top: 0;
|
||||||
height: 50vh;
|
height: 50vh;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
z-index: 10000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#wikiframediv {
|
#wikiframediv {
|
||||||
@@ -391,7 +405,7 @@ a.talk {
|
|||||||
#specialselectdiv {
|
#specialselectdiv {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 10px;
|
bottom: 10px;
|
||||||
right: 10px;
|
right: 20px;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
}
|
}
|
||||||
#specialselectdiv select {
|
#specialselectdiv select {
|
||||||
@@ -401,6 +415,8 @@ a.talk {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
padding: 6px 2px;
|
padding: 6px 2px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
max-width: 100px;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
110
symbols.svg
110
symbols.svg
@@ -15,7 +15,7 @@
|
|||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg5507"
|
id="svg5507"
|
||||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||||
sodipodi:docname="symbols.new.svg"
|
sodipodi:docname="symbols.svg"
|
||||||
enable-background="new">
|
enable-background="new">
|
||||||
<defs
|
<defs
|
||||||
id="defs5501" />
|
id="defs5501" />
|
||||||
@@ -26,11 +26,11 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="7.919596"
|
inkscape:zoom="5.6"
|
||||||
inkscape:cx="-11.795379"
|
inkscape:cx="-0.80935467"
|
||||||
inkscape:cy="127.59394"
|
inkscape:cy="109.01983"
|
||||||
inkscape:document-units="mm"
|
inkscape:document-units="mm"
|
||||||
inkscape:current-layer="layer8"
|
inkscape:current-layer="layer4"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
fit-margin-top="0"
|
fit-margin-top="0"
|
||||||
fit-margin-left="0"
|
fit-margin-left="0"
|
||||||
@@ -53,7 +53,8 @@
|
|||||||
inkscape:snap-center="true"
|
inkscape:snap-center="true"
|
||||||
inkscape:snap-object-midpoints="true"
|
inkscape:snap-object-midpoints="true"
|
||||||
showguides="false"
|
showguides="false"
|
||||||
inkscape:guide-bbox="true">
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-page="true">
|
||||||
<sodipodi:guide
|
<sodipodi:guide
|
||||||
position="1.2695302,37.647915"
|
position="1.2695302,37.647915"
|
||||||
orientation="0,1"
|
orientation="0,1"
|
||||||
@@ -139,63 +140,6 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<g
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer4"
|
|
||||||
inkscape:label="Cours_de_soutien_a_l_orientation"
|
|
||||||
style="display:none">
|
|
||||||
<g
|
|
||||||
id="Cours_de_soutien_a_l_orientation"
|
|
||||||
style="display:inline;fill-opacity:1;stroke-opacity:0.99615389"
|
|
||||||
transform="matrix(0.40423297,0,0,0.40423297,35.552134,-0.25339243)"
|
|
||||||
inkscape:label="#Cours_de_soutien_a_l'orientation">
|
|
||||||
<path
|
|
||||||
id="Orientations-0-7"
|
|
||||||
d="m -87.940348,-13.895148 c -8.05454,0 -14.593742,6.5079588 -14.593742,14.56249871 0,8.05454009 6.539202,14.59375129 14.593742,14.59375129 8.05454,0 14.59375,-6.5392112 14.59375,-14.59375129 0,-8.05453991 -6.53921,-14.56249871 -14.59375,-14.56249871 z"
|
|
||||||
style="fill-opacity:1;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path6386-5"
|
|
||||||
d="m -87.815348,-5.0851598 c -0.778051,0 -1.519886,0.1712117 -2.194064,0.4563657 -0.674181,0.285154 -1.280481,0.7012471 -1.790358,1.2111239 -0.509877,0.509877 -0.92597,1.1161775 -1.211125,1.7903572 -0.285153,0.67417963 -0.438813,1.41601363 -0.438813,2.19406488 0,0.77805152 0.15366,1.50233312 0.438813,2.17651272 0.285155,0.6741797 0.701248,1.2980328 1.211125,1.8079096 0.509877,0.5098769 1.116177,0.9084175 1.790358,1.1935714 0.674178,0.2851541 1.416013,0.4563658 2.194064,0.4563658 0.778051,0 1.519886,-0.1712117 2.194064,-0.4563658 0.674181,-0.2851539 1.280481,-0.6836945 1.790358,-1.1935714 0.509877,-0.5098768 0.92597,-1.1337299 1.211125,-1.8079096 0.285153,-0.6741796 0.438813,-1.3984612 0.438813,-2.17651272 0,-0.77805125 -0.15366,-1.51988525 -0.438813,-2.19406488 -0.285155,-0.6741797 -0.701248,-1.2804802 -1.211125,-1.7903572 -0.509877,-0.5098768 -1.116177,-0.9259699 -1.790358,-1.2111239 -0.674178,-0.285154 -1.416013,-0.4563657 -2.194064,-0.4563657 z"
|
|
||||||
style="fill-opacity:1;stroke-width:1.79737806;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer5"
|
|
||||||
inkscape:label="Cours_de_soutien_specifique"
|
|
||||||
style="display:none">
|
|
||||||
<g
|
|
||||||
id="Cours_de_soutien_specifique"
|
|
||||||
style="fill-opacity:0.99615389;stroke-opacity:0.99615389"
|
|
||||||
transform="matrix(0.40361541,0,0,0.40361541,36.375644,34.076526)">
|
|
||||||
<path
|
|
||||||
transform="translate(-446.2952,-500.01912)"
|
|
||||||
id="path6358"
|
|
||||||
d="m 356.1875,401.09375 c -8.05454,0 -14.59375,6.53921 -14.59375,14.59375 0,8.05454 6.53921,14.5625 14.59375,14.5625 8.05454,0 14.5625,-6.50796 14.5625,-14.5625 0,-8.05454 -6.50796,-14.59375 -14.5625,-14.59375 z"
|
|
||||||
style="fill-opacity:0.99615389;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
transform="translate(-446.2952,-500.01912)"
|
|
||||||
id="path6329"
|
|
||||||
d="m 356.3125,413.9375 c -0.44744,0 -0.86303,0.17553 -1.15625,0.46875 -0.29322,0.29322 -0.46875,0.70881 -0.46875,1.15625 0,0.44744 0.17553,0.83178 0.46875,1.125 0.29322,0.29322 0.70881,0.46875 1.15625,0.46875 0.44744,0 0.83178,-0.17553 1.125,-0.46875 0.29322,-0.29322 0.46875,-0.67756 0.46875,-1.125 0,-0.44744 -0.17553,-0.86303 -0.46875,-1.15625 -0.29322,-0.29322 -0.67756,-0.46875 -1.125,-0.46875 z"
|
|
||||||
style="fill-opacity:0.99615389;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
transform="translate(-446.2952,-500.01912)"
|
|
||||||
id="path6327"
|
|
||||||
d="m 356.3125,413.9375 c 0.44744,0 0.83178,0.17553 1.125,0.46875 0.29322,0.29322 0.46875,0.70881 0.46875,1.15625 0,0.44744 -0.17553,0.83178 -0.46875,1.125 -0.29322,0.29322 -0.67756,0.46875 -1.125,0.46875 -0.44744,0 -0.86303,-0.17553 -1.15625,-0.46875 -0.29322,-0.29322 -0.46875,-0.67756 -0.46875,-1.125 0,-0.44744 0.17553,-0.86303 0.46875,-1.15625 0.29322,-0.29322 0.70881,-0.46875 1.15625,-0.46875 z"
|
|
||||||
style="fill-opacity:0.99615389;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
transform="translate(-446.2952,-500.01912)"
|
|
||||||
id="path6324"
|
|
||||||
d="m 356.3125,413.9375 c -0.44744,0 -0.86303,0.17553 -1.15625,0.46875 -0.29322,0.29322 -0.46875,0.70881 -0.46875,1.15625 0,0.44744 0.17553,0.83178 0.46875,1.125 0.29322,0.29322 0.70881,0.46875 1.15625,0.46875 0.44744,0 0.83178,-0.17553 1.125,-0.46875 0.29322,-0.29322 0.46875,-0.67756 0.46875,-1.125 0,-0.44744 -0.17553,-0.86303 -0.46875,-1.15625 -0.29322,-0.29322 -0.67756,-0.46875 -1.125,-0.46875 z"
|
|
||||||
style="fill-opacity:0.99615389;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer6"
|
id="layer6"
|
||||||
@@ -262,12 +206,12 @@
|
|||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer8"
|
id="layer8"
|
||||||
inkscape:label="Enseignants"
|
inkscape:label="Enseignant·e·s"
|
||||||
style="display:inline">
|
style="display:none">
|
||||||
<path
|
<path
|
||||||
sodipodi:type="star"
|
sodipodi:type="star"
|
||||||
style="fill-opacity:1;stroke-width:0.97391373;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill-opacity:1;stroke-width:0.97391373;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
id="Enseignants"
|
id="Enseignant__e__s"
|
||||||
sodipodi:sides="3"
|
sodipodi:sides="3"
|
||||||
sodipodi:cx="0.0018145076"
|
sodipodi:cx="0.0018145076"
|
||||||
sodipodi:cy="0.13116495"
|
sodipodi:cy="0.13116495"
|
||||||
@@ -283,4 +227,38 @@
|
|||||||
inkscape:transform-center-y="0.24243705"
|
inkscape:transform-center-y="0.24243705"
|
||||||
inkscape:label="#path3225-6-7-7" />
|
inkscape:label="#path3225-6-7-7" />
|
||||||
</g>
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer4"
|
||||||
|
inkscape:label="Cours de soutien spécifique">
|
||||||
|
<g
|
||||||
|
id="Cours_de_soutien_specifique"
|
||||||
|
style="display:inline;fill:none;fill-opacity:0.99615389;stroke:none;stroke-opacity:0.99615389"
|
||||||
|
transform="matrix(0.41178012,0,0,0.41178012,37.059521,34.783991)">
|
||||||
|
<path
|
||||||
|
transform="translate(-446.2952,-500.01912)"
|
||||||
|
id="path6358"
|
||||||
|
d="m 356.1875,401.09375 c -8.05454,0 -14.59375,6.53921 -14.59375,14.59375 0,8.05454 6.53921,14.5625 14.59375,14.5625 8.05454,0 14.5625,-6.50796 14.5625,-14.5625 0,-8.05454 -6.50796,-14.59375 -14.5625,-14.59375 z"
|
||||||
|
style="fill:none;fill-opacity:0.99615389;stroke:none;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
transform="translate(-446.2952,-500.01912)"
|
||||||
|
id="path6329"
|
||||||
|
d="m 356.3125,413.9375 c -0.44744,0 -0.86303,0.17553 -1.15625,0.46875 -0.29322,0.29322 -0.46875,0.70881 -0.46875,1.15625 0,0.44744 0.17553,0.83178 0.46875,1.125 0.29322,0.29322 0.70881,0.46875 1.15625,0.46875 0.44744,0 0.83178,-0.17553 1.125,-0.46875 0.29322,-0.29322 0.46875,-0.67756 0.46875,-1.125 0,-0.44744 -0.17553,-0.86303 -0.46875,-1.15625 -0.29322,-0.29322 -0.67756,-0.46875 -1.125,-0.46875 z"
|
||||||
|
style="fill:none;fill-opacity:0.99615389;stroke:none;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
transform="translate(-446.2952,-500.01912)"
|
||||||
|
id="path6327"
|
||||||
|
d="m 356.3125,413.9375 c 0.44744,0 0.83178,0.17553 1.125,0.46875 0.29322,0.29322 0.46875,0.70881 0.46875,1.15625 0,0.44744 -0.17553,0.83178 -0.46875,1.125 -0.29322,0.29322 -0.67756,0.46875 -1.125,0.46875 -0.44744,0 -0.86303,-0.17553 -1.15625,-0.46875 -0.29322,-0.29322 -0.46875,-0.67756 -0.46875,-1.125 0,-0.44744 0.17553,-0.86303 0.46875,-1.15625 0.29322,-0.29322 0.70881,-0.46875 1.15625,-0.46875 z"
|
||||||
|
style="fill:none;fill-opacity:0.99615389;stroke:none;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
transform="translate(-446.2952,-500.01912)"
|
||||||
|
id="path6324"
|
||||||
|
d="m 356.3125,413.9375 c -0.44744,0 -0.86303,0.17553 -1.15625,0.46875 -0.29322,0.29322 -0.46875,0.70881 -0.46875,1.15625 0,0.44744 0.17553,0.83178 0.46875,1.125 0.29322,0.29322 0.70881,0.46875 1.15625,0.46875 0.44744,0 0.83178,-0.17553 1.125,-0.46875 0.29322,-0.29322 0.46875,-0.67756 0.46875,-1.125 0,-0.44744 -0.17553,-0.86303 -0.46875,-1.15625 -0.29322,-0.29322 -0.67756,-0.46875 -1.125,-0.46875 z"
|
||||||
|
style="fill:none;fill-opacity:0.99615389;stroke:none;stroke-width:3.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99615389;marker-start:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 15 KiB |
Reference in New Issue
Block a user