Merge branch 'develop' into issue-1574
This commit is contained in:
commit
b29b01fad4
30 changed files with 3577 additions and 1425 deletions
|
@ -2026,11 +2026,11 @@ a.mail-list-link {
|
|||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.nets-ul, .fileas-ul, .categories-ul {
|
||||
.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nets-ul li, .fileas-ul li, .categories-ul li {
|
||||
.nets-ul li, .fileas-ul li, .categories-ul li, .datebrowse-ul li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/readmore.min.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.js"></script>
|
||||
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/fk.autocomplete.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost-mobile/js/acl.js" ></script>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<base href="{{$baseurl}}/" />
|
||||
<meta name="generator" content="{{$generator}}" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.css" type="text/css" media="screen" />
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js"></script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||
|
|
|
@ -159,6 +159,11 @@ $(document).ready(function() {
|
|||
eventClick: function(calEvent, jsEvent, view) {
|
||||
showEvent(calEvent.id);
|
||||
},
|
||||
loading: function(isLoading, view) {
|
||||
if(!isLoading) {
|
||||
$('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); });
|
||||
}
|
||||
},
|
||||
|
||||
eventRender: function(event, element, view) {
|
||||
//console.log(view.name);
|
||||
|
@ -353,6 +358,14 @@ function showEvent(eventid) {
|
|||
);
|
||||
}
|
||||
|
||||
function doEventPreview() {
|
||||
$('#event-edit-preview').val(1);
|
||||
$.post('events',$('#event-edit-form').serialize(), function(data) {
|
||||
$.colorbox({ html: data });
|
||||
});
|
||||
$('#event-edit-preview').val(0);
|
||||
}
|
||||
|
||||
function initCrop() {
|
||||
function onEndCrop( coords, dimensions ) {
|
||||
$PR( 'x1' ).value = coords.x1;
|
||||
|
|
|
@ -2327,11 +2327,11 @@ a.mail-list-link {
|
|||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.nets-ul, .fileas-ul, .categories-ul {
|
||||
.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nets-ul li, .fileas-ul li, .categories-ul li {
|
||||
.nets-ul li, .fileas-ul li, .categories-ul li, .datebrowse-ul li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
<script type="text/javascript" src="{{$baseurl}}/library/colorbox/jquery.colorbox-min.js"></script>
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/tiptip/jquery.tipTip.minified.js"></script>-->*}}
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.js"></script>
|
||||
|
||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/frost/js/acl.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/webtoolkit.base64.js" ></script>
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
{{$desc}}
|
||||
</p>
|
||||
|
||||
<form action="{{$post}}" method="post" >
|
||||
<form id="event-edit-form" action="{{$post}}" method="post" >
|
||||
|
||||
<input type="hidden" name="event_id" value="{{$eid}}" />
|
||||
<input type="hidden" name="cid" value="{{$cid}}" />
|
||||
<input type="hidden" name="uri" value="{{$uri}}" />
|
||||
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
||||
|
||||
<div id="event-start-text">{{$s_text}}</div>
|
||||
{{$s_dsel}} {{$s_tsel}}
|
||||
{{$s_dsel}}
|
||||
|
||||
<div id="event-finish-text">{{$f_text}}</div>
|
||||
{{$f_dsel}} {{$f_tsel}}
|
||||
{{$f_dsel}}
|
||||
|
||||
<div id="event-datetime-break"></div>
|
||||
|
||||
|
@ -45,6 +46,7 @@
|
|||
{{$acl}}
|
||||
|
||||
<div class="clear"></div>
|
||||
<input id="event-edit-preview" type="submit" name="preview" value="{{$preview|escape:'html'}}" onclick="doEventPreview(); return false;" />
|
||||
<input id="event-submit" type="submit" name="submit" value="{{$submit}}" />
|
||||
</form>
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
<link rel="stylesheet" href="{{$baseurl}}/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
{{*<!--<link rel="stylesheet" href="{{$baseurl}}/library/tiptip/tipTip.css" type="text/css" media="screen" />-->*}}
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/datetimepicker/jquery.datetimepicker.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||
|
||||
|
|
|
@ -839,6 +839,9 @@ aside #dfrn-request-link:hover {
|
|||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside .posted-date-selector-months {
|
||||
margin-left: 10px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
|
@ -1279,13 +1282,13 @@ section {
|
|||
opacity: 0.5;
|
||||
}*/
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
|
@ -1962,27 +1965,6 @@ ul.tabs li .active {
|
|||
width: 50px;
|
||||
float: left;
|
||||
}
|
||||
/* videos page */
|
||||
.videos .video-top-wrapper {
|
||||
width: 200px;
|
||||
float: left;
|
||||
margin: 0px 10px 10px 0px;
|
||||
position: relative;
|
||||
}
|
||||
.videos .video-top-wrapper .video-js {
|
||||
width: 200px!important;
|
||||
height: 132px!important;
|
||||
}
|
||||
.videos .video-top-wrapper .video-delete {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
transition: opacity 0.5s;
|
||||
}
|
||||
.videos .video-top-wrapper:hover .video-delete {
|
||||
opacity: 1;
|
||||
}
|
||||
/* photo albums */
|
||||
#photo-edit-link-wrap {
|
||||
margin-bottom: 10px;
|
||||
|
|
|
@ -839,6 +839,9 @@ aside #dfrn-request-link:hover {
|
|||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside .posted-date-selector-months {
|
||||
margin-left: 10px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
|
@ -1279,13 +1282,13 @@ section {
|
|||
opacity: 0.5;
|
||||
}*/
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
|
@ -1962,27 +1965,6 @@ ul.tabs li .active {
|
|||
width: 50px;
|
||||
float: left;
|
||||
}
|
||||
/* videos page */
|
||||
.videos .video-top-wrapper {
|
||||
width: 200px;
|
||||
float: left;
|
||||
margin: 0px 10px 10px 0px;
|
||||
position: relative;
|
||||
}
|
||||
.videos .video-top-wrapper .video-js {
|
||||
width: 200px!important;
|
||||
height: 132px!important;
|
||||
}
|
||||
.videos .video-top-wrapper .video-delete {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
transition: opacity 0.5s;
|
||||
}
|
||||
.videos .video-top-wrapper:hover .video-delete {
|
||||
opacity: 1;
|
||||
}
|
||||
/* photo albums */
|
||||
#photo-edit-link-wrap {
|
||||
margin-bottom: 10px;
|
||||
|
|
|
@ -839,6 +839,9 @@ aside #dfrn-request-link:hover {
|
|||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside .posted-date-selector-months {
|
||||
margin-left: 10px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
|
@ -1279,13 +1282,13 @@ section {
|
|||
opacity: 0.5;
|
||||
}*/
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
|
@ -1962,27 +1965,6 @@ ul.tabs li .active {
|
|||
width: 50px;
|
||||
float: left;
|
||||
}
|
||||
/* videos page */
|
||||
.videos .video-top-wrapper {
|
||||
width: 200px;
|
||||
float: left;
|
||||
margin: 0px 10px 10px 0px;
|
||||
position: relative;
|
||||
}
|
||||
.videos .video-top-wrapper .video-js {
|
||||
width: 200px!important;
|
||||
height: 132px!important;
|
||||
}
|
||||
.videos .video-top-wrapper .video-delete {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
transition: opacity 0.5s;
|
||||
}
|
||||
.videos .video-top-wrapper:hover .video-delete {
|
||||
opacity: 1;
|
||||
}
|
||||
/* photo albums */
|
||||
#photo-edit-link-wrap {
|
||||
margin-bottom: 10px;
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -945,13 +945,14 @@ ul .sidebar-group-li .icon {
|
|||
width: 12px;
|
||||
}
|
||||
|
||||
.nets-ul, .fileas-ul, .categories-ul {
|
||||
.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nets-ul li,
|
||||
.fileas-ul li,
|
||||
.categories-ul li {
|
||||
.categories-ul li,
|
||||
.datebrowse-link {
|
||||
}
|
||||
|
||||
.nets-link {
|
||||
|
@ -4605,10 +4606,6 @@ div #datebrowse-sidebar.widget {
|
|||
|
||||
#id_npassword {}
|
||||
|
||||
#posted-date-selector {
|
||||
margin-left: 33px;
|
||||
}
|
||||
|
||||
#hide-comments-page-widget {
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
|
|
@ -427,12 +427,16 @@ a.sidebar-group-element {
|
|||
color: #737373;
|
||||
}
|
||||
|
||||
#follow-sidebar form, #peoplefind-sidebar form, #netsearch-box form, #posted-date-selector {
|
||||
#follow-sidebar form, #peoplefind-sidebar form, #netsearch-box form {
|
||||
margin-left: 10px;
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.posted-date-selector-months {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#sidebar-ungrouped, .side-link {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue