Merge branch 'dev' into oauth2
This commit is contained in:
@@ -36,4 +36,10 @@
|
||||
|
||||
.connphone {
|
||||
color: green;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-photo-wrapper .oneway-overlay {
|
||||
margin-top: -25px;
|
||||
margin-left: 53px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
@@ -31,3 +31,9 @@
|
||||
.contact-entry-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.contact-entry-photo-wrapper .oneway-overlay {
|
||||
margin-top: 25px;
|
||||
margin-left: -25px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
@@ -216,3 +216,10 @@ a.wikilist {
|
||||
#notifications {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/* contact block */
|
||||
.contact-block-div .oneway-overlay {
|
||||
font-size: 20px;
|
||||
margin-left: -25px;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
@@ -37,7 +37,9 @@
|
||||
$.post("embedphotos/photolink", {href: href},
|
||||
function(ddata) {
|
||||
if (ddata['status']) {
|
||||
window.location.href = 'profile_photo/use/' + ddata['resource_id'];
|
||||
var pf = $('#profile-photo-profiles').val();
|
||||
var prof = ((typeof pf !== 'undefined') ? '?f=&pf=' + pf : '');
|
||||
window.location.href = 'profile_photo/use/' + ddata['resource_id'] + prof;
|
||||
} else {
|
||||
window.console.log("{{$modalerrorlink}}" + ':' + ddata['errormsg']);
|
||||
}
|
||||
|
@@ -1800,3 +1800,8 @@ dl.bb-dl > dd > li {
|
||||
.caption-visible {
|
||||
max-height: 75%;
|
||||
}
|
||||
|
||||
.oneway-overlay {
|
||||
position: absolute;
|
||||
text-shadow: -2px 0 1px #fff, 0 2px 1px#fff, 2px 0 1px #fff, 0 -2px 1px #fff;
|
||||
}
|
||||
|
@@ -18,7 +18,12 @@
|
||||
</div>
|
||||
<div class="section-content-tools-wrapper">
|
||||
<div class="contact-photo-wrapper" >
|
||||
<a href="{{$contact.url}}" title="{{$contact.img_hover}}" ><img class="directory-photo-img {{if $contact.classes}}{{$contact.classes}}{{/if}}" src="{{$contact.thumb}}" alt="{{$contact.name}}" /></a>
|
||||
<a href="{{$contact.url}}" title="{{$contact.img_hover}}" >
|
||||
<img class="directory-photo-img {{if $contact.classes}}{{$contact.classes}}{{/if}}" src="{{$contact.thumb}}" alt="{{$contact.name}}" />
|
||||
</a>
|
||||
{{if $contact.oneway}}
|
||||
<i class="fa fa-fw fa-minus-circle oneway-overlay text-danger"></i>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
{{if $contact.status}}
|
||||
|
@@ -1,6 +1,9 @@
|
||||
<div class="contact-entry-wrapper" id="contact-entry-wrapper-{{$contact.id}}" >
|
||||
<div class="contact-entry-photo-wrapper" >
|
||||
<a href="{{$contact.link}}" title="{{$contact.img_hover}}" ><img class="contact-block-img" src="{{$contact.thumb}}" alt="{{$contact.name}}" /></a>
|
||||
{{if $contact.oneway}}
|
||||
<i class="fa fa-fw fa-minus-circle oneway-overlay text-danger"></i>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="contact-entry-photo-end" ></div>
|
||||
<div class="contact-entry-name" id="contact-entry-name-{{$contact.id}}" >{{$contact.name}}</div>
|
||||
|
@@ -1 +1 @@
|
||||
<div class="contact-block-div{{if $class}} {{$class}}{{/if}}"><a class="contact-block-link{{if $class}} {{$class}}{{/if}}{{if $click}} fakelink{{/if}}" href="{{if $click}}#{{else}}{{$url}}{{/if}}" {{if $click}}onclick="{{$click}}"{{/if}}><img class="contact-block-img{{if $class}} {{$class}}{{/if}}" src="{{$photo}}" title="{{$title}}" alt="" /></a></div>
|
||||
<div class="contact-block-div{{if $class}} {{$class}}{{/if}}"><a class="contact-block-link{{if $class}} {{$class}}{{/if}}{{if $click}} fakelink{{/if}}" href="{{if $click}}#{{else}}{{$url}}{{/if}}" {{if $click}}onclick="{{$click}}"{{/if}}><img class="contact-block-img{{if $class}} {{$class}}{{/if}}" src="{{$photo}}" title="{{$title}}" alt="" />{{if $oneway}}<i class="fa fa-fw fa-minus-circle oneway-overlay text-danger"></i>{{/if}}</a></div>
|
||||
|
@@ -27,7 +27,7 @@
|
||||
<label id="profile-photo-profiles-label" class="form-label" for="profile-photo-profiles">{{$lbl_profiles}}</label>
|
||||
<select name="profile" id="profile-photo-profiles" class="form-control" >
|
||||
{{foreach $profiles as $p}}
|
||||
<option value="{{$p.id}}" {{if $p.is_default}}selected="selected"{{/if}}>{{$p.name}}</option>
|
||||
<option value="{{$p.id}}" {{if $p.selected}}selected="selected"{{/if}}>{{$p.name}}</option>
|
||||
{{/foreach}}
|
||||
</select>
|
||||
<div class="clear"></div>
|
||||
|
Reference in New Issue
Block a user