add icons badges and lock CT#7539

1.10.x
aragonc 9 years ago
parent 2ba0ef8de2
commit 68dde15c45
  1. 44
      app/Resources/public/css/base.css
  2. 2
      main/admin/index.php
  3. 2
      main/admin/settings.php
  4. 33
      main/attendance/attendance_sheet.php
  5. 4
      main/attendance/index.php
  6. BIN
      main/img/icons/128/skill-badges.png
  7. BIN
      main/img/icons/16/lock-closed.png
  8. BIN
      main/img/icons/22/lock-closed.png
  9. BIN
      main/img/icons/22/lock-open.png
  10. BIN
      main/img/icons/32/cas.png
  11. BIN
      main/img/icons/32/lock-closed.png
  12. BIN
      main/img/icons/32/lock-open.png
  13. BIN
      main/img/icons/32/skill-badges.png
  14. BIN
      main/img/icons/48/skill-badges.png
  15. BIN
      main/img/icons/64/skill-badges.png
  16. 16
      main/img/icons/svg/crons.svg
  17. 105
      main/img/icons/svg/lock-closed.svg
  18. 114
      main/img/icons/svg/lock-open.svg
  19. 16
      main/img/icons/svg/lock.svg
  20. 413
      main/img/icons/svg/skill-badges.svg

@ -1039,9 +1039,7 @@ button.next.disabled {
padding-top: 10px;
text-shadow: gray 3px 3px 2px;
}
/* ATTENDANCE */
div.attendance-calendar-add div.row div.formw,div.attendance-calendar-edit div.row div.formw {
float: left;
display:inline;
@ -1059,23 +1057,26 @@ div.attendance-calendar-add div.row div.formw,div.attendance-calendar-edit div.r
.attendance-calendar-row {
padding:5px;
}
.attendance-faults-bar {
width:90%;
background-color:none;
padding:2px;
font-size:120%;
font-weight: bold;
padding:5px;
.attendance-calendar-table .check{
text-align: center;
}
.attendance-users-table td {
height:66px;
.date-attendance{
color: #666;
text-align: center;
font-size: 12px;
width: 150px;
margin: auto;
}
.attendance-calendar-table td {
height:66px;
.date-attendance .blue{
color: #2E75A3;
}
.date-attendance .grey{
color: #666;
}
.tableFloatingHeaderOriginal{
font-size: 12px;
height: 60px;
}
/**********************************************
* MESSAGE TOOL *
**********************************************/
@ -2924,17 +2925,6 @@ form .formw .freeze {
color:#999;
font-size: 11px;
}
/* Stick table header */
.tableWithFloatingHeader th {
padding: 5px 5px 0px 5px;
}
.tableFloatingHeaderOriginal th, .tableWithFloatingHeader th{
height:80px;
}
/* jsPlumb */
/* ****************************************************
CSS SKILL
**************************************************** */

@ -364,7 +364,7 @@ if (api_is_platform_admin()) {
// Skills
if (api_get_setting('allow_skills_tool') == 'true') {
$blocks['skills']['icon'] = Display::return_icon(
'logo.png',
'skill-badges.png',
get_lang('Skills'),
array(),
ICON_SIZE_MEDIUM,

@ -398,7 +398,7 @@ $action_images['tools'] = 'tools.png';
$action_images['user'] = 'user.png';
$action_images['gradebook'] = 'gradebook.png';
$action_images['ldap'] = 'ldap.png';
$action_images['cas'] = 'user_access.png';
$action_images['cas'] = 'cas.png';
$action_images['security'] = 'security.png';
$action_images['languages'] = 'languages.png';
$action_images['tuning'] = 'tuning.png';

@ -194,7 +194,7 @@ if (api_is_allowed_to_edit(null, true) ||
floatingHeaderRow.css("width", $(this).css("width"));
floatingHeaderRow.css("visibility", "visible");
floatingHeaderRow.css("z-index", "1000");
originalHeaderRow.css("height", "80px");
originalHeaderRow.css("height", "64px");
} else {
floatingHeaderRow.css("visibility", "hidden");
floatingHeaderRow.css("top", "0px");
@ -239,7 +239,7 @@ if (api_is_allowed_to_edit(null, true) ||
<th width="100px"><?php echo get_lang('AttendancesFaults')?></th>
</tr>
<tr class="tableFloatingHeaderOriginal" >
<th height="65px" width="10px"><?php echo '#';?></th>
<th width="10px"><?php echo '#';?></th>
<th width="10px"><?php echo get_lang('Photo')?></th>
<th width="150px"><?php echo get_lang('LastName')?></th>
<th width="140px"><?php echo get_lang('FirstName')?></th>
@ -287,23 +287,23 @@ if (api_is_allowed_to_edit(null, true) ||
foreach ($attendant_calendar as $calendar) {
$date = $calendar['date'];
$time = $calendar['time'];
$datetime = $date.'<br />'.$time;
$datetime = '<div class="grey">'. $date . ' - ' . $time . '</div>';
$img_lock = Display::return_icon('lock.gif',get_lang('DateUnLock'),array('class'=>'img_lock','id'=>'datetime_column_'.$calendar['id']));
$img_lock = Display::return_icon('lock-closed.png',get_lang('DateUnLock'),array('class'=>'img_lock','id'=>'datetime_column_'.$calendar['id']));
if (!empty($calendar['done_attendance'])){
$datetime = '<font color="blue">'.$date.'<br />'.$time.'</font>';
$datetime = '<div class="blue">' . $date . ' - ' . $time . '</div>';
}
$disabled_check = 'disabled = "true"';
$input_hidden = '<input type="hidden" id="hidden_input_'.$calendar['id'].'" name="hidden_input[]" value="" disabled />';
if ($next_attendance_calendar_id == $calendar['id']) {
$input_hidden = '<input type="hidden" id="hidden_input_'.$calendar['id'].'" name="hidden_input[]" value="'.$calendar['id'].'" />';
$disabled_check = '';
$img_lock = Display::return_icon('unlock.gif',get_lang('DateLock'),array('class'=>'img_unlock','id'=>'datetime_column_'.$calendar['id']));
$img_lock = Display::return_icon('lock-closed.png',get_lang('DateLock'),array('class'=>'img_unlock','id'=>'datetime_column_'.$calendar['id']));
}
$result .= '<th width="800px">';
$result .= '<center><div style="font-size:10px;width:125px;">'.$datetime.'&nbsp;';
$result .= '<th>';
$result .= '<div class="date-attendance">'.$datetime.'&nbsp;';
if (api_is_allowed_to_edit(null, true)) {
$result .= '<span id="attendance_lock" style="cursor:pointer">'.(!$is_locked_attendance || api_is_platform_admin()?$img_lock:'').'</span>';
@ -311,7 +311,7 @@ if (api_is_allowed_to_edit(null, true) ||
if ($is_locked_attendance == false) {
if (api_is_allowed_to_edit(null, true)) {
$result .= '<br /><input type="checkbox" class="checkbox_head_'.$calendar['id'].'" id="checkbox_head_'.$calendar['id'].'" '.$disabled_check.' checked="checked" />'.$input_hidden.'</div></center></th>';
$result .= '<input type="checkbox" class="checkbox_head_'.$calendar['id'].'" id="checkbox_head_'.$calendar['id'].'" '.$disabled_check.' checked="checked" />'.$input_hidden.'</div></th>';
}
}
}
@ -370,8 +370,8 @@ if (api_is_allowed_to_edit(null, true) ||
}
echo '<td style="'.$style_td.'" class="checkboxes_col_'.$calendar['id'].'">';
echo '<div style="height:20px">';
echo '<center>';
echo '<div class="check">';
if (api_is_allowed_to_edit(null, true)) {
if (!$is_locked_attendance || api_is_platform_admin()) {
echo '<input type="checkbox" name="check_presence['.$calendar['id'].'][]" value="'.$user['user_id'].'" '.$disabled.' '.$checked.' />';
@ -392,7 +392,7 @@ if (api_is_allowed_to_edit(null, true) ||
break;
}
}
echo '</center>';
echo '</div>';
echo '</td>';
}
@ -402,7 +402,7 @@ if (api_is_allowed_to_edit(null, true) ||
$calendarClass = "checkboxes_col_".$calendar['id'];
}
echo '<td class="'.$calendarClass.'">';
echo '<div style="height:20px">';
echo '<div>';
echo '<center>&nbsp;</center>
</div>
</td>';
@ -413,15 +413,16 @@ if (api_is_allowed_to_edit(null, true) ||
echo '</tbody></table>';
echo '</div></div>';
?>
<div class="clear"></div>
<div style="margin-top:20px;">
<div class="row">
<div class="col-md-12">
<?php if (!$is_locked_attendance || api_is_platform_admin()) {
if (api_is_allowed_to_edit(null, true)) {
?>
<button type="submit" class="btn btn-primary"><?php echo get_lang('Save') ?></button>
<?php }
}
?>
?> </div>
</div>
</form>
<?php

@ -106,7 +106,7 @@ $(function() {
$(".row_odd td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#F9F9F9", "border-left":"none","border-right":"none"});
$(".row_even td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#FFF", "border-left":"none","border-right":"none"});
$(".checkboxes_col_"+calendar_id+" input:checkbox").attr("disabled",true);
$(this).attr("src","'.api_get_path(WEB_CODE_PATH).'img/lock.gif");
$(this).attr("src","'.api_get_path(WEB_CODE_PATH).'img/icons/22/lock-closed.png");
$(this).attr("title","'.get_lang('DateUnLock').'");
$(this).attr("alt","'.get_lang('DateUnLock').'");
$(this).attr("class","img_lock");
@ -134,7 +134,7 @@ $(function() {
});
$(".checkboxes_col_"+calendar_id+" input:checkbox").attr("disabled",false);
$(this).attr("src","'.api_get_path(WEB_CODE_PATH).'img/unlock.gif");
$(this).attr("src","'.api_get_path(WEB_CODE_PATH).'img/icons/22/lock-open.png");
$(this).attr("title","'.get_lang('DateLock').'");
$(this).attr("alt","'.get_lang('DateLock').'");
$(this).attr("class","img_unlock");

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

@ -10,9 +10,9 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
height="32"
viewBox="0 0 32 32.000001"
width="128"
height="128"
viewBox="0 0 128 128"
id="svg32939"
version="1.1"
inkscape:version="0.91 r"
@ -69,9 +69,9 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="11.758083"
inkscape:cy="9.8072889"
inkscape:zoom="2.8"
inkscape:cx="62.394598"
inkscape:cy="39.232876"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
@ -97,9 +97,9 @@
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
transform="translate(0,-924.3622)">
<g
transform="translate(-578.22283,346.39925)"
transform="matrix(4,0,0,4,-2312.813,-1772.4474)"
id="g32890">
<rect
y="674.20239"

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

@ -0,0 +1,105 @@
<?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"
height="128"
version="1.1"
width="128"
id="svg2"
inkscape:version="0.91 r"
sodipodi:docname="lock-closed.svg">
<metadata
id="metadata24">
<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>
<defs
id="defs22" />
<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="1051"
id="namedview20"
showgrid="false"
inkscape:zoom="2.4583333"
inkscape:cx="51.94532"
inkscape:cy="22.7019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
id="g3354"
transform="matrix(5.3333333,0,0,5.3333333,0,-0.38351889)"
inkscape:export-filename="/var/www/chamilo/main/img/icons/32/lock-closed.png"
inkscape:export-xdpi="22.5"
inkscape:export-ydpi="22.5">
<g
id="g4"
transform="translate(0,-1028.8281)">
<path
style="fill:#f1c40f"
inkscape:connector-curvature="0"
id="path6"
d="m 5,1037.4 c -1.1046,0 -2,0.9 -2,2 l 0,1 0,6 0,1 c 0,1.1 0.8954,2 2,2 l 2,0 10,0 2,0 c 1.105,0 2,-0.9 2,-2 l 0,-7 0,-1 c 0,-1.1 -0.895,-2 -2,-2 l -2,0 -12,0 z" />
<path
style="fill:#f39c12"
inkscape:connector-curvature="0"
id="path8"
d="m 5,1040.4 c -1.1046,0 -2,0.9 -2,2 l 0,1 0,6 0,1 c 0,1.1 0.8954,2 2,2 l 2,0 10,0 2,0 c 1.105,0 2,-0.9 2,-2 l 0,-7 0,-1 c 0,-1.1 -0.895,-2 -2,-2 l -2,0 -12,0 z" />
<path
style="fill:#bdc3c7"
inkscape:connector-curvature="0"
id="path10"
d="m 12,1029.4 c -3.866,0 -7,3.1 -7,7 l 3,0 c 0,-2.2 1.7909,-4 4,-4 2.209,0 4,1.8 4,4 l 3,0 c 0,-3.9 -3.134,-7 -7,-7 z" />
<path
style="fill:#e67e22"
inkscape:connector-curvature="0"
id="path12"
transform="translate(0,1028.4)"
d="m 5,14 0,1 14,0 0,-1 -14,0 z m 0,2 0,1 14,0 0,-1 -14,0 z m 0,2 0,1 14,0 0,-1 -14,0 z m 0,2 0,1 14,0 0,-1 -14,0 z" />
<path
style="fill:#7f8c8d"
inkscape:connector-curvature="0"
id="path14"
d="m 5,1037.4 0,1 c 0,0.5 0.6716,1 1.5,1 0.8284,0 1.5,-0.5 1.5,-1 l 0,-1 c 0,0.5 -0.6716,1 -1.5,1 -0.8284,0 -1.5,-0.5 -1.5,-1 z" />
<path
style="fill:#7f8c8d"
inkscape:connector-curvature="0"
id="path16"
d="m 16,1037.4 0,1 c 0,0.5 0.672,1 1.5,1 0.828,0 1.5,-0.5 1.5,-1 l 0,-1 c 0,0.5 -0.672,1 -1.5,1 -0.828,0 -1.5,-0.5 -1.5,-1 z" />
<path
style="fill:#95a5a6"
inkscape:connector-curvature="0"
id="path18"
transform="translate(0,1028.4)"
d="m 12,2.4375 c -0.351,0 -0.699,0.0338 -1.031,0.0937 C 10.722,2.5758 10.482,2.6441 10.25,2.7188 10.033,2.7886 9.8271,2.8749 9.625,2.9688 9.519,3.018 9.4141,3.0696 9.3125,3.125 9.1806,3.1969 9.0612,3.2932 8.9375,3.375 8.8217,3.4515 8.7019,3.5092 8.5938,3.5938 8.4531,3.7035 8.3139,3.8149 8.1875,3.9375 8.1506,3.9737 8.1294,4.0253 8.0938,4.0625 7.9254,4.2369 7.7625,4.3981 7.625,4.5938 7.4848,4.7931 7.3546,5.0003 7.25,5.2188 7.246,5.2272 7.254,5.2415 7.25,5.25 7.1389,5.4859 7.0341,5.7459 6.9688,6 6.7158,6.5844 6.0264,7 5.2188,7 5.1588,7 5.1356,7.0018 5.0938,7 5.0833,6.9996 5.077,7.0014 5.0625,7 L 5,8 5,9 5,10 8,10 8,9 8,8 C 8,7.7239 8.0405,7.4479 8.0938,7.1875 8.4667,5.3648 10.067,4 12,4 c 2.209,0 4,1.7909 4,4 l 0,1 0,1 3,0 0,-1 0,-1 -0.062,-1 c -0.015,0.0014 -0.021,-4e-4 -0.032,0 L 18.781,7 C 17.974,7 17.284,6.5844 17.031,6 16.966,5.7459 16.861,5.4859 16.75,5.25 16.746,5.2415 16.754,5.2272 16.75,5.2188 16.645,5.0003 16.515,4.7931 16.375,4.5938 16.237,4.3981 16.075,4.2369 15.906,4.0625 15.87,4.0245 15.851,3.9744 15.812,3.9375 15.686,3.8149 15.547,3.7035 15.406,3.5938 15.302,3.5121 15.174,3.449 15.062,3.375 14.94,3.2941 14.818,3.1962 14.688,3.125 14.587,3.07 14.48,3.0176 14.375,2.9688 14.173,2.8749 13.967,2.7886 13.75,2.7188 13.518,2.6441 13.278,2.5758 13.031,2.5312 12.699,2.4713 12.351,2.4375 12,2.4375 Z" />
</g>
<rect
y="0.071909942"
x="0"
height="24"
width="24"
id="rect3352"
style="opacity:0;fill:#ffccaa;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

@ -0,0 +1,114 @@
<?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"
height="128"
version="1.1"
width="128"
id="svg2"
inkscape:version="0.91 r"
sodipodi:docname="lock-open.svg">
<metadata
id="metadata24">
<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>
<defs
id="defs22" />
<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="1051"
id="namedview20"
showgrid="false"
inkscape:zoom="3.4766083"
inkscape:cx="121.05188"
inkscape:cy="52.903736"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
id="g4178"
transform="scale(5.3333333,5.3333333)"
inkscape:export-filename="/var/www/chamilo/main/img/icons/32/lock-open.png"
inkscape:export-xdpi="22.5"
inkscape:export-ydpi="22.5">
<rect
y="-3.4724426e-08"
x="3.1274987e-09"
height="24"
width="24"
id="rect3354"
style="opacity:0.54160055;fill:#ffccaa;fill-opacity:0;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g4"
transform="translate(0,-1028.9)">
<path
style="fill:#f1c40f"
inkscape:connector-curvature="0"
id="path6"
d="m 5,1037.4 c -1.1046,0 -2,0.9 -2,2 l 0,1 0,6 0,1 c 0,1.1 0.8954,2 2,2 l 2,0 10,0 2,0 c 1.105,0 2,-0.9 2,-2 l 0,-7 0,-1 c 0,-1.1 -0.895,-2 -2,-2 l -2,0 -12,0 z" />
<path
style="fill:#f39c12"
inkscape:connector-curvature="0"
id="path8"
d="m 5,1040.4 c -1.1046,0 -2,0.9 -2,2 l 0,1 0,6 0,1 c 0,1.1 0.8954,2 2,2 l 2,0 10,0 2,0 c 1.105,0 2,-0.9 2,-2 l 0,-7 0,-1 c 0,-1.1 -0.895,-2 -2,-2 l -2,0 -12,0 z" />
<path
style="fill:#bdc3c7"
inkscape:connector-curvature="0"
id="path10"
transform="translate(0,1028.4)"
d="M 12,1 C 8.134,1 5,4.134 5,8 l 3,0 c 0,-2.2091 1.7909,-4 4,-4 1.863,0 3.399,1.2757 3.844,3 l 3.062,0 C 18.419,3.61 15.525,1 12,1 Z" />
<path
style="fill:#e67e22"
inkscape:connector-curvature="0"
id="path12"
transform="translate(0,1028.4)"
d="m 5,14 0,1 14,0 0,-1 -14,0 z m 0,2 0,1 14,0 0,-1 -14,0 z m 0,2 0,1 14,0 0,-1 -14,0 z m 0,2 0,1 14,0 0,-1 -14,0 z" />
<path
style="fill:#7f8c8d"
inkscape:connector-curvature="0"
id="path14"
d="m 5,1037.4 0,1 c 0,0.5 0.6716,1 1.5,1 0.8284,0 1.5,-0.5 1.5,-1 l 0,-1 c 0,0.5 -0.6716,1 -1.5,1 -0.8284,0 -1.5,-0.5 -1.5,-1 z" />
<path
style="fill:#95a5a6"
inkscape:connector-curvature="0"
id="path16"
transform="translate(0,1028.4)"
d="m 12,2.4375 c -0.351,0 -0.699,0.0338 -1.031,0.0937 C 10.722,2.5758 10.482,2.6441 10.25,2.7188 10.033,2.7886 9.8271,2.8749 9.625,2.9688 9.519,3.018 9.4141,3.0696 9.3125,3.125 9.1806,3.1969 9.0612,3.2932 8.9375,3.375 8.8217,3.4515 8.7019,3.5092 8.5938,3.5938 8.4531,3.7035 8.3139,3.8149 8.1875,3.9375 8.1506,3.9737 8.1294,4.0253 8.0938,4.0625 7.9254,4.2369 7.7625,4.3981 7.625,4.5938 7.4848,4.7931 7.3546,5.0003 7.25,5.2188 7.246,5.2272 7.254,5.2415 7.25,5.25 7.1389,5.4859 7.0341,5.7459 6.9688,6 6.7158,6.5844 6.0264,7 5.2188,7 5.1588,7 5.1356,7.0018 5.0938,7 5.0833,6.9996 5.077,7.0014 5.0625,7 L 5,8 5,9 5,10 8,10 8,9 8,8 C 8,7.7239 8.0405,7.4479 8.0938,7.1875 8.4667,5.3648 10.067,4 12,4 c 1.863,0 3.399,1.2757 3.844,3 l 2.937,0 C 17.974,7 17.284,6.5844 17.031,6 16.966,5.7459 16.861,5.4859 16.75,5.25 16.746,5.2415 16.754,5.2272 16.75,5.2188 16.645,5.0003 16.515,4.7931 16.375,4.5938 16.237,4.3981 16.075,4.2369 15.906,4.0625 15.87,4.0245 15.851,3.9744 15.812,3.9375 15.686,3.8149 15.547,3.7035 15.406,3.5938 15.302,3.5121 15.174,3.449 15.062,3.375 14.94,3.2941 14.818,3.1962 14.688,3.125 14.587,3.07 14.48,3.0176 14.375,2.9688 14.173,2.8749 13.967,2.7886 13.75,2.7188 13.518,2.6441 13.278,2.5758 13.031,2.5312 12.699,2.4713 12.351,2.4375 12,2.4375 Z" />
<path
style="fill:#e67e22"
inkscape:connector-curvature="0"
id="path18"
transform="translate(0,1028.4)"
d="m 16,10 c 0,0.552 0.672,1 1.5,1 0.828,0 1.5,-0.448 1.5,-1 l -3,0 z" />
</g>
<rect
y="-3.4724426e-08"
x="3.1274987e-09"
height="24"
width="24"
id="rect3352"
style="opacity:0;fill:#ffccaa;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

@ -19,10 +19,10 @@
sodipodi:version="0.32"
sodipodi:docname="lock.svg"
version="1.1"
inkscape:version="0.91 r13725"><metadata
inkscape:version="0.91 r"><metadata
id="metadata71"><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><defs
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs856"><linearGradient
id="XMLID_3_"
gradientUnits="userSpaceOnUse"
@ -315,15 +315,15 @@
units="px"
inkscape:zoom="3.4839193"
inkscape:cx="58.152826"
inkscape:cy="4.2441603"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:cy="61.650771"
inkscape:window-width="1366"
inkscape:window-height="712"
inkscape:window-x="1920"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg742" /><g
id="g4199"
transform="matrix(2.2198904,0,0,2.2198904,-11.079322,-655.14352)"><path
transform="matrix(2.1333332,0,0,2.1333332,0,-618.95107)"><path
inkscape:connector-curvature="0"
id="path763"
d="m 256,546.13333 -256,0 0,-256 256,0 0,256 z"

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

@ -0,0 +1,413 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="128"
height="128"
viewBox="0 0 128 128"
id="svg32939"
version="1.1"
inkscape:version="0.91 r"
sodipodi:docname="skill-badges.svg">
<defs
id="defs32941">
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath9750">
<g
id="g9752"
transform="matrix(0.67877845,0,-0.43891498,0.67877845,798.30404,345.95012)"
style="fill:#265165;fill-opacity:1;stroke:none">
<path
inkscape:connector-curvature="0"
id="path9754"
d="m 1444.5578,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1450.8361,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9756"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9758"
d="m 1457.1144,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1463.3926,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9760"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9762"
d="m 1469.671,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1475.9492,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9764"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9766"
d="m 1482.2275,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1488.5059,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9768"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9770"
d="m 1494.7841,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1501.0624,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9772"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9774"
d="m 1507.3408,1117.3546 3.9952,0 0,98.7642 -3.9952,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1513.619,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9776"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9778"
d="m 1519.8973,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1526.1756,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9780"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9782"
d="m 1532.4539,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1538.7322,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9784"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9786"
d="m 1545.0105,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1551.2888,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9788"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9790"
d="m 1557.5671,1117.3546 3.9952,0 0,98.7642 -3.9952,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1563.8454,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9792"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9794"
d="m 1570.1237,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1576.4019,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9796"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9798"
d="m 1582.6803,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1588.9586,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9800"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9802"
d="m 1595.2368,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1601.5152,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9804"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9806"
d="m 1607.7935,1117.3546 3.9952,0 0,98.7642 -3.9952,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1614.0717,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9808"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9810"
d="m 1620.35,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1626.6283,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9812"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9814"
d="m 1632.9066,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1639.1849,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9816"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9818"
d="m 1645.4632,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1651.7415,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9820"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9822"
d="m 1658.0197,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1664.2981,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
id="path9824"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9826"
d="m 1670.5764,1117.3546 3.9953,0 0,98.7642 -3.9953,0 z"
style="opacity:1;fill:#265165;fill-opacity:1;stroke:none;stroke-width:0.07723933;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</clipPath>
<filter
inkscape:collect="always"
id="filter14456">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.35991578"
id="feGaussianBlur14458" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14440"
id="linearGradient25573"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1060776,0,0,1.1060776,-17.332073,184.60948)"
x1="481.19531"
y1="215.96338"
x2="495.85181"
y2="224.939" />
<linearGradient
id="linearGradient14440">
<stop
id="stop14442"
style="stop-color:#ffcc00;stop-opacity:1"
offset="0" />
<stop
offset="0.37668341"
style="stop-color:#ffcc00;stop-opacity:1"
id="stop14444" />
<stop
id="stop14446"
style="stop-color:#ff6600;stop-opacity:1"
offset="1" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="72.915487"
inkscape:cy="8.4843864"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1366"
inkscape:window-height="712"
inkscape:window-x="1920"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata32944">
<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>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-924.3622)">
<g
id="g25612"
inkscape:export-filename="/var/www/chamilo/main/img/icons/22/skill-badges.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
transform="matrix(5.8181818,0,0,5.8181818,-2528.6914,-1469.8186)">
<rect
ry="0.0091597512"
y="411.49982"
x="434.61884"
height="22"
width="22"
id="rect25021"
style="opacity:1;fill:#719cd0;fill-opacity:0;stroke:none;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="matrix(1.1118666,0,0,1.0494743,-50.048883,-20.725436)"
d="m 454.77228,427.51215 c -0.0259,0.0449 -8.92264,5.18141 -8.97446,5.18141 -0.0518,0 -8.94855,-5.13653 -8.97445,-5.18141 -0.0259,-0.0449 -0.0259,-10.31793 0,-10.3628 0.0259,-0.0449 8.92264,-5.18141 8.97445,-5.18141 0.0518,0 8.94855,5.13653 8.97446,5.18141 0.0259,0.0449 0.0259,10.31793 0,10.3628 z"
inkscape:randomized="0"
inkscape:rounded="0.005"
inkscape:flatsided="true"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0.52359878"
sodipodi:r2="8.9744549"
sodipodi:r1="10.362807"
sodipodi:cy="422.33075"
sodipodi:cx="445.79782"
sodipodi:sides="6"
id="path19815"
style="opacity:1;fill:#608dcc;fill-opacity:0.99215686;stroke:none;stroke-width:6.45499992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star" />
<path
sodipodi:type="star"
style="opacity:1;fill:#ffffff;fill-opacity:0.99215686;stroke:none;stroke-width:6.45499992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path25594"
sodipodi:sides="6"
sodipodi:cx="445.79782"
sodipodi:cy="422.33075"
sodipodi:r1="10.362807"
sodipodi:r2="8.9744549"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.0471976"
inkscape:flatsided="true"
inkscape:rounded="0.005"
inkscape:randomized="0"
d="m 454.77228,427.51215 c -0.0259,0.0449 -8.92264,5.18141 -8.97446,5.18141 -0.0518,0 -8.94855,-5.13653 -8.97445,-5.18141 -0.0259,-0.0449 -0.0259,-10.31793 0,-10.3628 0.0259,-0.0449 8.92264,-5.18141 8.97445,-5.18141 0.0518,0 8.94855,5.13653 8.97446,5.18141 0.0259,0.0449 0.0259,10.31793 0,10.3628 z"
transform="matrix(1.0096307,0,0,0.95297535,-4.4723417,20.029038)" />
<g
transform="translate(-0.17899618,0.16908196)"
id="g25606">
<path
sodipodi:type="star"
style="opacity:1;fill:#58a3fe;fill-opacity:1;stroke:#ffffff;stroke-width:0.02232209;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path19823"
sodipodi:sides="6"
sodipodi:cx="445.79782"
sodipodi:cy="422.33075"
sodipodi:r1="8.381381"
sodipodi:r2="7.258492"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.0471976"
inkscape:flatsided="true"
inkscape:rounded="0.005"
inkscape:randomized="0"
d="m 453.05631,426.52144 c -0.0209,0.0363 -7.21658,4.19069 -7.25849,4.19069 -0.0419,0 -7.23753,-4.1544 -7.25849,-4.19069 -0.021,-0.0363 -0.021,-8.34509 0,-8.38138 0.021,-0.0363 7.21658,-4.19069 7.25849,-4.19069 0.0419,0 7.23754,4.1544 7.25849,4.19069 0.021,0.0363 0.021,8.34509 0,8.38138 z"
transform="matrix(1.1118666,0,0,1.0494743,-49.869887,-20.894518)" />
<path
sodipodi:nodetypes="csccccc"
inkscape:connector-curvature="0"
id="path19825"
d="m 453.86831,426.72877 c 0,0 -8.02386,4.39804 -8.07045,4.39804 -0.0466,0 -8.07048,-4.39804 -8.07048,-4.39804 l 0.0101,-8.78812 8.1612,4.03889 7.96035,-4.03819 z"
style="opacity:1;fill:#2e75a3;fill-opacity:1;stroke:none;stroke-width:0.16542321;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="opacity:1;fill:#3a7dce;fill-opacity:1;stroke:none;stroke-width:0.16542321;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 453.86831,426.72877 c -0.0232,0.0381 -8.02386,4.39804 -8.07045,4.39804 -0.0466,0 -8.04718,-4.35994 -8.07048,-4.39804 l -0.008,-4.82041 8.16512,4.03861 7.98683,-3.90278 z"
id="path19827"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccc" />
<path
sodipodi:nodetypes="csccccc"
inkscape:connector-curvature="0"
id="path19829"
d="m 1406.2141,1139.338 c -0.1553,0.2689 -53.4802,31.0561 -53.7908,31.0561 -0.3105,0 -53.6355,-30.7872 -53.7907,-31.0561 l -0.053,-34.0388 54.4216,28.5182 53.2333,-27.5591 z"
style="opacity:1;fill:#2e75a3;fill-opacity:1;stroke:none;stroke-width:0.16542321;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
clip-path="url(#clipPath9750)"
transform="matrix(0.15003448,0,0,0.1416153,242.88779,265.38109)" />
</g>
<g
id="g25551"
transform="matrix(0.58973149,0,0,0.58973149,136.59857,170.14256)">
<path
transform="matrix(1.1264964,0,0,1.1344032,-27.229312,178.80157)"
inkscape:transform-center-y="-0.83514744"
inkscape:transform-center-x="-0.095698614"
d="m 494.05368,227.42154 -4.95765,-2.37763 -5.10006,2.05447 0.72926,-5.44973 -3.52992,-4.21558 5.40836,-0.9905 2.91845,-4.65984 2.61329,4.83758 5.33362,1.33564 -3.79325,3.98028 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="1.6029157"
sodipodi:arg1="0.97459719"
sodipodi:r2="4.7080097"
sodipodi:r1="8.5600176"
sodipodi:cy="220.33833"
sodipodi:cx="489.24722"
sodipodi:sides="5"
id="path25553"
style="opacity:0.82824426;fill:#999999;fill-opacity:1;stroke:none;filter:url(#filter14456)"
sodipodi:type="star" />
<path
sodipodi:type="star"
style="fill:url(#linearGradient25573);fill-opacity:1;stroke:#f4a800;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path25555"
sodipodi:sides="5"
sodipodi:cx="523.81329"
sodipodi:cy="428.32077"
sodipodi:r1="9.4680433"
sodipodi:r2="5.2074242"
sodipodi:arg1="0.97459719"
sodipodi:arg2="1.6029157"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 529.12961,436.15535 -5.48355,-2.62984 -5.64106,2.2724 0.80662,-6.02783 -3.90437,-4.66276 5.98207,-1.09557 3.22803,-5.15414 2.8905,5.35073 5.8994,1.47733 -4.19563,4.4025 z"
inkscape:transform-center-x="-0.093971212"
inkscape:transform-center-y="-0.81428571" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

Loading…
Cancel
Save