Skip to content
Snippets Groups Projects
Commit d593a94d authored by Moritz Strohm's avatar Moritz Strohm
Browse files

BIESt #100

parent e6aca990
No related branches found
No related tags found
No related merge requests found
<div class="text-center avatar-widget"> <div class="avatar-widget">
<?= $avatar->getImageTag(Avatar::NORMAL, [ <? if ($GLOBALS['perm']->have_profile_perm('user', $current_user)) : ?>
'class' => 'profile-avatar', <a class="profile-avatar"
'style' => '' accept="image/gif,image/png,image/jpeg" capture="camera"
]) ?> data-max-size="<?= Avatar::MAX_FILE_SIZE ?>"
<?php if ($GLOBALS['perm']->have_profile_perm('user', $current_user)) : ?> data-message-too-large="<?= _('Die hochgeladene Datei ist zu groß. Bitte wählen Sie ein anderes Bild.') ?>"
<div class="avatar-overlay" id="avatar-overlay" data-message-unaccepted="<?= _('Die hochgeladene Datei hat falsche Typ. Bitte wählen Sie ein anderes Bild.') ?>"
accept="image/gif,image/png,image/jpeg" capture="camera" href="<?= URLHelper::getURL('dispatch.php/avatar/update/user/' . $current_user) ?>" data-dialog>
data-max-size="<?= Avatar::MAX_FILE_SIZE ?>" <?= $avatar->getImageTag(Avatar::NORMAL) ?>
data-message-too-large="<?= _('Die hochgeladene Datei ist zu groß. Bitte wählen Sie ein anderes Bild.') ?>" <div id="avatar-overlay" class="avatar-overlay">
data-message-unaccepted="<?= _('Die hochgeladene Datei hat falsche Typ. Bitte wählen Sie ein anderes Bild.') ?>"> <div class="text">
<a href="<?= URLHelper::getURL('dispatch.php/avatar/update/user/' . $current_user) ?>" data-dialog> <?= _('Bild hochladen oder löschen.') ?>
<span><?= _('Bild hochladen oder löschen.') ?> <br> <?= _('Drag & Drop oder Klicken') ?></span> <br>
</a> <?= _('Drag & Drop oder Klicken') ?>
</div> </div>
<?php endif ?> </div>
</a>
<? else : ?>
<?= $avatar->getImageTag(Avatar::NORMAL) ?>
<? endif ?>
</div> </div>
<div class="profile-sidebar-details"> <div class="profile-sidebar-details">
<? if ($kings): ?> <? if ($kings): ?>
......
...@@ -3,15 +3,15 @@ ...@@ -3,15 +3,15 @@
/* --- Avatars of users, courses and institutes ----------------------------- */ /* --- Avatars of users, courses and institutes ----------------------------- */
.avatar-small { .avatar-small {
vertical-align: middle; vertical-align: middle;
.size(25px, 25px); .size(@avatar-small, @avatar-small);
} }
.avatar-medium { .avatar-medium {
max-width: 100px; max-width: @avatar-medium;
height: 100px; height: @avatar-medium;
} }
.avatar-normal { .avatar-normal {
max-width: 250px; max-width: @avatar-normal;
height: 250px; height: @avatar-normal;
} }
.course-avatar-small { .course-avatar-small {
...@@ -37,56 +37,6 @@ ...@@ -37,56 +37,6 @@
width: 60px; width: 60px;
} }
div.avatar-widget {
position: relative;
.profile-avatar {
vertical-align: middle;
margin: 5px 0px;
position: relative;
}
div.avatar-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
transition: opacity .5s ease-in-out;
background-color: fadeout(@base-color, 33.3%);
opacity: 0;
&:hover {
opacity: 1;
}
&.dragging {
left: -2px;
top: -2px;
background-color: fadeout(@base-color-40, 33.3%);
border: 2px dashed @base-color;
opacity: 1;
}
a {
color: @white;
display: block;
height: 100%;
width: 100%;
span {
position: absolute;
bottom: 1em;
left: 0;
width: 100%;
}
}
}
}
#custom_avatar label { #custom_avatar label {
display: block; display: block;
......
...@@ -31,3 +31,8 @@ ...@@ -31,3 +31,8 @@
// Drag & Drop specific: // Drag & Drop specific:
@drag_and_drop_z_index: 1000; @drag_and_drop_z_index: 1000;
@drag_and_drop_border: 1px solid @base-color; @drag_and_drop_border: 1px solid @base-color;
//Avatar sizes:
@avatar-small: 25px;
@avatar-medium: 100px;
@avatar-normal: 250px;
div.avatar-widget {
.profile-avatar {
display: block;
margin: 5px;
padding: 0;
color: $white;
width: $avatar-normal;
height: $avatar-normal;
position: relative;
.avatar-overlay {
position: absolute;
left: 0;
top: 0;
transition: opacity .5s ease-in-out;
background-color: fade-out($base-color, 0.333);
opacity: 0;
width: $avatar-normal;
height: $avatar-normal;
text-align: center;
.text {
position: absolute;
bottom: 1em;
width: $avatar-normal;
}
}
&:hover, &:focus {
.avatar-overlay {
opacity: 1;
}
}
&.dragging .avatar-overlay {
left: -2px;
top: -2px;
background-color: fade-out($base-color-40, 0.333);
border: 2px dashed $base-color;
opacity: 1;
}
}
}
...@@ -30,6 +30,12 @@ $headings-color: #444444; ...@@ -30,6 +30,12 @@ $headings-color: #444444;
$bar-bottom-container-height: 40px; $bar-bottom-container-height: 40px;
$header-height: 80px; $header-height: 80px;
//Avatar sizes:
$avatar-small: 25px;
$avatar-medium: 100px;
$avatar-normal: 250px;
:root { :root {
// The special handling for -- as #{"--"} seems to be neccessary to make // The special handling for -- as #{"--"} seems to be neccessary to make
// scss evaluate the color variables // scss evaluate the color variables
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
@import "scss/actionmenu"; @import "scss/actionmenu";
@import "scss/admin-courses"; @import "scss/admin-courses";
@import "scss/admission"; @import "scss/admission";
@import "scss/avatar";
@import "scss/blubber"; @import "scss/blubber";
@import "scss/contentbar"; @import "scss/contentbar";
@import "scss/contents"; @import "scss/contents";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment