fix css items dashboard

1.10.x
aragonc 10 years ago
parent 25f7969a2d
commit 432f39880c
  1. 6
      app/Resources/public/css/base.css
  2. 116
      main/admin/dashboard_add_courses_to_user.php
  3. 113
      main/admin/dashboard_add_sessions_to_user.php
  4. 37
      main/admin/dashboard_add_users_to_user.php
  5. 164
      main/img/icons/svg/session-add.svg

@ -4278,7 +4278,11 @@ ul.holder li.bit-box{
padding-top: 2em;
padding-bottom: 2em;
}
#multiple-add-session .control-course{
.code-course{
padding-left: 10px;
padding-right: 10px;
}
.control-course{
text-align: center;
}
.data_table tr td .form-control{

@ -170,13 +170,13 @@ if (isset($_POST['formSent']) && intval($_POST['formSent']) == 1) {
Display::display_header($tool_name);
// actions
echo '<div class="actions">
<span style="float: right;margin:0px;padding:0px;">
<a href="dashboard_add_users_to_user.php?user='.$user_id.'">'.Display::return_icon('add_user_big.gif', get_lang('AssignUsers'), array('style'=>'vertical-align:middle')).' '.get_lang('AssignUsers').'</a>
<a href="dashboard_add_sessions_to_user.php?user='.$user_id.'">'.Display::return_icon('view_more_stats.gif', get_lang('AssignSessions'), array('style'=>'vertical-align:middle')).' '.get_lang('AssignSessions').'</a></span>
</div>';
echo Display::page_header(sprintf(get_lang('AssignCoursesToX'), api_get_person_name($user_info['firstname'], $user_info['lastname'])));
$actionsLeft = '<a href="dashboard_add_users_to_user.php?user='.$user_id.'">'.Display::return_icon('add-user.png', get_lang('AssignUsers'), null, ICON_SIZE_MEDIUM).'</a>';
$actionsLeft .= '<a href="dashboard_add_sessions_to_user.php?user='.$user_id.'">'.Display::return_icon('session-add.png', get_lang('AssignSessions'), null, ICON_SIZE_MEDIUM).'</a>';
echo $html = Display::toolbarAction('toolbar-dashboard', array($actionsLeft));
echo Display::page_header(sprintf(get_lang('AssignCoursesToX'), api_get_person_name($user_info['firstname'], $user_info['lastname'])), null, 'h3');
$assigned_courses_to_hrm = CourseManager::get_courses_followed_by_drh($user_id);
$assigned_courses_code = array_keys($assigned_courses_to_hrm);
@ -218,72 +218,66 @@ $result = Database::query($sql);
?>
<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?user=<?php echo $user_id ?>" style="margin:0px;">
<input type="hidden" name="formSent" value="1" />
<input type="hidden" name="formSe" value="1" />
<?php
if(!empty($msg)) {
Display::display_normal_message($msg); //main API
}
?>
<table border="0" cellpadding="5" cellspacing="0" width="100%" align="center">
<tr>
<td align="left"></td>
<td align="left"></td>
<td width="" align="center"> &nbsp; </td>
</tr>
<tr>
<td width="45%" align="center"><b><?php echo get_lang('CoursesListInPlatform') ?> :</b></td>
<td width="10%">&nbsp;</td>
<td align="center" width="45%"><b>
<?php
if (UserManager::is_admin($user_id)) {
echo get_lang('AssignedCoursesListToPlatformAdministrator');
} else if ($user_info['status'] == SESSIONADMIN) {
echo get_lang('AssignedCoursesListToSessionsAdministrator');
} else {
echo get_lang('AssignedCoursesListToHumanResourcesManager');
}
?>
:</b></td>
</tr>
<?php if($add_type == 'multiple') { ?>
<tr><td width="45%" align="center">
<?php echo get_lang('FirstLetterCourse');?> :
<select name="firstLetterCourse" onchange = "xajax_search_courses(this.value,'multiple')">
<option value="%">--</option>
<?php
echo Display :: get_alphabet_options($firstLetter);
?>
</select>
</td>
<td>&nbsp;</td></tr>
<?php } ?>
<tr>
<td width="45%" align="center">
<div class="row">
<div class="col-md-4">
<h5><?php echo get_lang('CoursesListInPlatform') ?> :</h5>
<div id="ajax_list_courses_multiple">
<select id="origin" name="NoAssignedCoursesList[]" multiple="multiple" size="20" style="width:340px;">
<?php
while ($enreg = Database::fetch_array($result)) {
?>
<?php while ($enreg = Database::fetch_array($result)) { ?>
<option value="<?php echo $enreg['code']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['title'],ENT_QUOTES).'"';?>><?php echo $enreg['title'].' ('.$enreg['code'].')'; ?></option>
<?php } ?>
</select></div>
</td>
<td width="10%" valign="middle" align="center">
<button class="btn-default" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
</select>
</div>
</div>
<div class="col-md-4">
<div class="code-course">
<?php if($add_type == 'multiple') { ?>
<p><?php echo get_lang('FirstLetterCourse');?> :</p>
<select name="firstLetterCourse" class="selectpicker form-control" onchange = "xajax_search_courses(this.value,'multiple')">
<option value="%">--</option>
<?php echo Display :: get_alphabet_options($firstLetter); ?>
</select>
<?php } ?>
</div>
<div class="control-course">
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
<em class="fa fa-arrow-right"></em>
</button>
<br /><br />
<button class="btn-default" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
</div>
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
<em class="fa fa-arrow-left"></em>
</button>
<br /><br /><br /><br /><br /><br />
<?php
echo '<button class="btn btn-primary" type="button" value="" onclick="valide()" >'.$tool_name.'</button>';
?>
</td>
<td width="45%" align="center">
</div>
<div class="separate-action">
<?php echo '<button class="btn btn-success" type="button" value="" onclick="valide()" >'.$tool_name.'</button>'; ?>
</div>
</div>
</div>
<div class="col-md-4">
<h5><?php
if (UserManager::is_admin($user_id)) {
echo get_lang('AssignedCoursesListToPlatformAdministrator');
} else if ($user_info['status'] == SESSIONADMIN) {
echo get_lang('AssignedCoursesListToSessionsAdministrator');
} else {
echo get_lang('AssignedCoursesListToHumanResourcesManager');
}
?>:</h5>
<select id='destination' name="CoursesList[]" multiple="multiple" size="20" style="width:320px;">
<?php
if (is_array($assigned_courses_to_hrm)) {
@ -292,9 +286,9 @@ if(!empty($msg)) {
<option value="<?php echo $enreg['code']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['title'],ENT_QUOTES).'"'; ?>><?php echo $enreg['title'].' ('.$enreg['code'].')'; ?></option>
<?php }
}?>
</select></td>
</tr>
</table>
</select>
</div>
</div>
</form>
<?php

@ -166,15 +166,16 @@ if (isset($_POST['formSent']) && intval($_POST['formSent']) == 1) {
Display::display_header($tool_name);
// actions
echo '<div class="actions">';
if ($user_info['status'] != SESSIONADMIN) {
echo '<span style="float: right;margin:0px;padding:0px;">
<a href="dashboard_add_users_to_user.php?user='.$user_id.'">'.Display::return_icon('add_user_big.gif', get_lang('AssignUsers'), array('style'=>'vertical-align:middle')).' '.get_lang('AssignUsers').'</a>
<a href="dashboard_add_courses_to_user.php?user='.$user_id.'">'.Display::return_icon('course_add.gif', get_lang('AssignCourses'), array('style'=>'vertical-align:middle')).' '.get_lang('AssignCourses').'</a>
</span>';
$actionsLeft = '<a href="dashboard_add_users_to_user.php?user='.$user_id.'">' . Display::return_icon('add-user.png', get_lang('AssignUsers'), null, ICON_SIZE_MEDIUM ) . '</a>';
$actionsLeft .= '<a href="dashboard_add_courses_to_user.php?user='.$user_id.'">' . Display::return_icon('course-add.png', get_lang('AssignCourses'), null, ICON_SIZE_MEDIUM) . '</a>';
}
echo '</div>';
echo Display::page_header(sprintf(get_lang('AssignSessionsToX'), api_get_person_name($user_info['firstname'], $user_info['lastname'])));
echo Display::toolbarAction('toolbar-dashboard', array( 0 => $actionsLeft, 1 => ''));
echo Display::page_header(sprintf(get_lang('AssignSessionsToX'), api_get_person_name($user_info['firstname'], $user_info['lastname'])), null, 'h3');
$assigned_sessions_to_hrm = SessionManager::get_sessions_followed_by_drh($user_id);
$assigned_sessions_id = array_keys($assigned_sessions_to_hrm);
@ -206,43 +207,11 @@ $result = Database::query($sql);
?>
<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?user=<?php echo $user_id ?>" style="margin:0px;" <?php if($ajax_search){ echo ' onsubmit="valide();"';}?>>
<input type="hidden" name="formSent" value="1" />
<table border="0" cellpadding="5" cellspacing="0" width="100%" align="center">
<tr>
<td align="left"></td>
<td align="left"></td>
<td width="" align="center"> &nbsp; </td>
</tr>
<tr>
<td width="45%" align="center"><b><?php echo get_lang('SessionsListInPlatform') ?> :</b></td>
<td width="10%">&nbsp;</td>
<td align="center" width="45%">
<b>
<?php
if (UserManager::is_admin($user_id)) {
echo get_lang('AssignedSessionsListToPlatformAdministrator');
} else if ($user_info['status'] == SESSIONADMIN) {
echo get_lang('AssignedSessionsListToSessionsAdministrator');
} else {
echo get_lang('AssignedSessionsListToHumanResourcesManager');
}
?>
: </b></td>
</tr>
<?php if ($add_type == 'multiple') { ?>
<tr><td width="45%" align="center">
<?php echo get_lang('FirstLetterSession');?> :
<select name="firstLetterSession" onchange = "xajax_search_sessions(this.value, 'multiple')">
<option value="%">--</option>
<?php
echo Display :: get_alphabet_options($firstLetterSession);
?>
</select>
</td>
<td>&nbsp;</td></tr>
<?php } ?>
<tr>
<td width="45%" align="center">
<div class="row">
<div class="col-md-4">
<h5><?php echo get_lang('SessionsListInPlatform') ?> :</h5>
<div id="ajax_list_sessions_multiple">
<select id="origin" name="NoAssignedSessionsList[]" multiple="multiple" size="20" style="width:340px;">
<?php
@ -252,37 +221,64 @@ $result = Database::query($sql);
<?php echo $enreg['name']; ?>
</option>
<?php } ?>
</select></div>
</td>
<td width="10%" valign="middle" align="center">
</select>
</div>
</div>
<div class="col-md-4">
<div class="code-course">
<?php if ($add_type == 'multiple') { ?>
<p><?php echo get_lang('FirstLetterSession');?> :</p>
<select class="selectpicker form-control" name="firstLetterSession" onchange = "xajax_search_sessions(this.value, 'multiple')">
<option value="%">--</option>
<?php echo Display :: get_alphabet_options($firstLetterSession); ?>
</select>
<?php } ?>
</div>
<div class="control-course">
<?php
if ($ajax_search) {
?>
<button class="btn btn-default" type="button" onclick="remove_item(document.getElementById('destination'))">
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="remove_item(document.getElementById('destination'))">
<em class="fa fa-arrow-left"></em>
</button>
</div>
<?php
}
else
{
?>
<button class="btn btn-default" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
<em class="fa fa-arrow-right"></em>
</button>
<br /><br />
<button class="btn btn-default" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
</div>
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
<em class="fa fa-arrow-left"></em>
</button>
</div>
<?php
}
?>
<br /><br /><br /><br /><br /><br />
<?php
echo '<button class="btn btn-primary" type="button" value="" onclick="valide()" >'.$tool_name.'</button>';
echo '<button class="btn btn-success" type="button" value="" onclick="valide()" >'.$tool_name.'</button>';
?>
</td>
<td width="45%" align="center">
</div>
</div>
<div class="col-md-4">
<h5><?php
if (UserManager::is_admin($user_id)) {
echo get_lang('AssignedSessionsListToPlatformAdministrator');
} else if ($user_info['status'] == SESSIONADMIN) {
echo get_lang('AssignedSessionsListToSessionsAdministrator');
} else {
echo get_lang('AssignedSessionsListToHumanResourcesManager');
}
?>
:</h5>
<select id='destination' name="SessionsList[]" multiple="multiple" size="20" style="width:320px;">
<?php
if (is_array($assigned_sessions_to_hrm)) {
@ -293,9 +289,10 @@ $result = Database::query($sql);
</option>
<?php }
}?>
</select></td>
</tr>
</table>
</select>
</div>
</div>
</form>
<?php

@ -408,23 +408,7 @@ if(!empty($msg)) {
<div class="row">
<div class="col-md-4">
<?php echo get_lang('UserListInPlatform') ?>
<?php if($add_type == 'multiple') { ?>
<div class="form-group">
<label class="col-sm-7 control-label"><?php echo get_lang('FirstLetterUser');?></label>
<div class="col-sm-5">
<select class="selectpicker show-tick form-control" name="firstLetterUser" onchange = "xajax_search_users(this.value,'multiple')">
<option value="%">--</option>
<?php echo Display::get_alphabet_options($firstLetterUser); ?>
</select>
</div>
</div>
<!-- <div class="form-group">
<input type="text" id="user_to_add" onkeyup="xajax_search_users(this.value,'single')" onclick="moveItem(document.getElementById('user_to_add'), document.getElementById('destination'))" />
<div id="ajax_list_users_single"></div>
</div> -->
<?php } ?>
<div class="form-group">
<div class="col-sm-12">
<div id="ajax_list_users_multiple">
@ -443,23 +427,42 @@ if(!empty($msg)) {
</div>
<div class="col-md-4">
<div class="code-course">
<?php if($add_type == 'multiple') { ?>
<p><?php echo get_lang('FirstLetterUser');?></p>
<select class="selectpicker show-tick form-control" name="firstLetterUser" onchange = "xajax_search_users(this.value,'multiple')">
<option value="%">--</option>
<?php echo Display::get_alphabet_options($firstLetterUser); ?>
</select>
<?php } ?>
</div>
<div class="control-course">
<?php if ($ajax_search) { ?>
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="remove_item(document.getElementById('destination'))"></button>
</div>
<?php } else { ?>
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
<em class="fa fa-chevron-right"></em>
</button>
<br /><br />
</div>
<div class="separate-action">
<button class="btn btn-primary" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
<em class="fa fa-chevron-left"></em>
</button>
</div>
<?php
}
?>
<div class="separate-action">
<?php
echo '<button class="btn btn-success" type="button" value="" onclick="valide()" >'.$tool_name.'</button>';
?>
</div>
</div>
</div>
<div class="col-md-4">
<?php
if (UserManager::is_admin($user_id)) {

@ -24,7 +24,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -42,8 +42,8 @@
id="namedview114"
showgrid="false"
inkscape:zoom="2.6074563"
inkscape:cx="171.65395"
inkscape:cy="42.817392"
inkscape:cx="75.199793"
inkscape:cy="41.28333"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
@ -154,23 +154,6 @@
offset="1"
style="stop-color:#001c36;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient3370"
y2="279.27"
gradientUnits="userSpaceOnUse"
x2="663.65"
y1="279.27"
x1="572.87"
gradientTransform="matrix(1.0473917,0,0,1.0473917,-586.70062,-211.78347)">
<stop
id="stop3366"
stop-color="#2e6b01"
offset="0" />
<stop
id="stop3368"
stop-color="#152c28"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3376"
y2="284.79"
@ -273,64 +256,6 @@
stop-color="#811f00"
offset="1" />
</linearGradient>
<filter
id="filter3772"
y="-.031029"
width="1.7633"
x="-.38163"
height="1.0621">
<feGaussianBlur
id="feGaussianBlur3774"
stdDeviation="0.58138587" />
</filter>
<linearGradient
id="linearGradient3810"
y2="64.41"
gradientUnits="userSpaceOnUse"
x2="45.798"
gradientTransform="matrix(0.4716744,0.77958486,-0.77958486,0.4716744,83.820935,-15.213245)"
y1="113.08"
x1="45.798">
<stop
id="stop3685"
stop-color="#5a5a6b"
offset="0" />
<stop
id="stop3691"
stop-color="#837e97"
offset=".5" />
<stop
id="stop3693"
stop-color="#9192a7"
offset=".75" />
<stop
id="stop3687"
stop-color="#8780a4"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3814"
y2="71.687"
gradientUnits="userSpaceOnUse"
x2="41.167"
gradientTransform="matrix(0.4716744,0.77958486,-0.77958486,0.4716744,83.820935,-15.213245)"
y1="113.08"
x1="41.167">
<stop
id="stop3697"
stop-color="#c8c8d8"
offset="0" />
<stop
id="stop3699"
stop-color="#fbfbfc"
offset="1" />
</linearGradient>
<filter
id="filter3834">
<feGaussianBlur
id="feGaussianBlur3836"
stdDeviation="0.38432455" />
</filter>
<linearGradient
id="linearGradient3845"
y2="297.6"
@ -465,12 +390,6 @@
gradientTransform="matrix(1.0473917,0,0,1.0473917,-586.7053,-211.78347)"
y1="290.65"
x1="598.18" />
<filter
id="filter3955">
<feGaussianBlur
id="feGaussianBlur3957"
stdDeviation="1.2991875" />
</filter>
<linearGradient
id="linearGradient3980"
y2="55.843"
@ -563,20 +482,6 @@
offset="1"
style="stop-color:#003d18;stop-opacity:1" />
</linearGradient>
<inkscape:perspective
id="perspective5139"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective5148" />
<linearGradient
gradientTransform="translate(-107.42857,-368.36218)"
gradientUnits="userSpaceOnUse"
@ -605,34 +510,7 @@
stdDeviation="0.32"
inkscape:collect="always" />
</filter>
<linearGradient
y2="391.98309"
x2="146.4288"
y1="391.98309"
x1="116.41035"
gradientTransform="translate(260.93361,-523.79076)"
gradientUnits="userSpaceOnUse"
id="linearGradient5729"
xlink:href="#linearGradient5683"
inkscape:collect="always" />
<linearGradient
y2="392.44968"
x2="152.07178"
y1="392.44968"
x1="111.10294"
gradientTransform="translate(260.93361,-523.79076)"
gradientUnits="userSpaceOnUse"
id="linearGradient5734"
xlink:href="#linearGradient5665"
inkscape:collect="always" />
</defs>
<g
id="g11646"
inkscape:export-filename="/var/www/chamilo/main/img/icons/22/session-add.png"
inkscape:export-xdpi="15.46875"
inkscape:export-ydpi="15.46875">
<g
id="g11622">
<rect
style="opacity:1;fill:#ffcc00;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"
id="rect3450"
@ -763,32 +641,30 @@
style="fill:url(#linearGradient3980);fill-rule:evenodd"
d="m 14.773489,9.2905432 -1.27677,72.5643448 1.047391,0.03352 1.276771,-72.5978614 -1.047392,0 z"
id="path3972" />
</g>
<g
inkscape:export-ydpi="22.5"
inkscape:export-xdpi="22.5"
inkscape:export-filename="/var/www/chamilo/main/img/icons/32/course-add.png"
inkscape:label="Layer 1"
transform="matrix(1.2744868,0,0,1.2744868,-74.589703,-414.89768)"
id="layer1-8"
transform="matrix(1.2744868,0,0,1.2744868,-74.589703,-414.89768)">
inkscape:label="Layer 1"
inkscape:export-filename="/var/www/chamilo/main/img/icons/32/course-add.png"
inkscape:export-xdpi="22.5"
inkscape:export-ydpi="22.5">
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:#000000;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.56000006;stroke-opacity:1;filter:url(#filter5703)"
d="m 17.875,3.40625 c -2.475371,0 -4.5,2.02464 -4.5,4.5 l 0,5.5 -5.5,0 c -2.4753702,0 -4.5,2.02464 -4.5,4.5 l 0,13 c 10e-8,2.47537 2.02464,4.5 4.5,4.5 l 5.5,0 0,5.5 c 0,2.47537 2.02464,4.5 4.5,4.5 l 13,0 c 2.475369,0 4.5,-2.02464 4.5,-4.5 l 0,-5.5 5.5,0 c 2.475371,0 4.5,-2.02464 4.5,-4.5 l 0,-13 c 10e-7,-2.47537 -2.02464,-4.5 -4.5,-4.5 l -5.5,0 0,-5.5 c 10e-7,-2.4753702 -2.02464,-4.5 -4.5,-4.5 l -13,0 z"
id="path5701"
transform="translate(107.42857,368.36218)"
id="path5701" />
d="m 17.875,3.40625 c -2.475371,0 -4.5,2.02464 -4.5,4.5 l 0,5.5 -5.5,0 c -2.4753702,0 -4.5,2.02464 -4.5,4.5 l 0,13 c 10e-8,2.47537 2.02464,4.5 4.5,4.5 l 5.5,0 0,5.5 c 0,2.47537 2.02464,4.5 4.5,4.5 l 13,0 c 2.475369,0 4.5,-2.02464 4.5,-4.5 l 0,-5.5 5.5,0 c 2.475371,0 4.5,-2.02464 4.5,-4.5 l 0,-13 c 10e-7,-2.47537 -2.02464,-4.5 -4.5,-4.5 l -5.5,0 0,-5.5 c 10e-7,-2.4753702 -2.02464,-4.5 -4.5,-4.5 l -13,0 z"
style="opacity:1;fill:#000000;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.56000006;stroke-opacity:1;filter:url(#filter5703)"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5671);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.56000006;stroke-opacity:1"
d="M 17.5,4 C 15.561337,4 14,5.5613368 14,7.5 L 14,14 7.5,14 C 5.5613365,14 3.9999998,15.561336 4,17.5 l 0,13 c 0,1.938663 1.5613363,3.499999 3.5,3.5 l 6.5,0 0,6.5 c 0,1.938663 1.561337,3.499999 3.5,3.5 l 13,0 c 1.938663,0 3.5,-1.561337 3.5,-3.5 l 0,-6.5 6.5,0 c 1.938663,0 3.5,-1.561337 3.5,-3.5 l 0,-13 C 44,15.561337 42.438664,14 40.5,14 L 34,14 34,7.5 C 34,5.5613365 32.438664,4.0000002 30.5,4 l -13,0 z"
id="rect5154"
transform="translate(107.42857,368.36218)"
id="rect5154" />
d="M 17.5,4 C 15.561337,4 14,5.5613368 14,7.5 L 14,14 7.5,14 C 5.5613365,14 3.9999998,15.561336 4,17.5 l 0,13 c 0,1.938663 1.5613363,3.499999 3.5,3.5 l 6.5,0 0,6.5 c 0,1.938663 1.561337,3.499999 3.5,3.5 l 13,0 c 1.938663,0 3.5,-1.561337 3.5,-3.5 l 0,-6.5 6.5,0 c 1.938663,0 3.5,-1.561337 3.5,-3.5 l 0,-13 C 44,15.561337 42.438664,14 40.5,14 L 34,14 34,7.5 C 34,5.5613365 32.438664,4.0000002 30.5,4 l -13,0 z"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5671);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.56000006;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:url(#linearGradient5689);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.56000006;stroke-opacity:1"
d="m 19,9 0,10 -10,0 0,10 10,0 0,10 10,0 0,-10 10,0 0,-10 -10,0 0,-10 -10,0 z"
id="rect5673"
transform="translate(107.42857,368.36218)"
id="rect5673" />
</g>
d="m 19,9 0,10 -10,0 0,10 10,0 0,10 10,0 0,-10 10,0 0,-10 -10,0 0,-10 -10,0 z"
style="opacity:1;fill:url(#linearGradient5689);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.56000006;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Loading…
Cancel
Save