Kaynağa Gözat

Merge branch 'master' of github.com:tracim/tracim

Bastien Sevajol (Algoo) 8 yıl önce
ebeveyn
işleme
178cae4621

+ 1 - 1
tracim/tracim/templates/admin/user_getall.mak Dosyayı Görüntüle

@@ -65,7 +65,7 @@
65 65
                                         <input type="checkbox" class="checkbox" checked name="send_email" id="send-email"> ${_('Send email to user')}
66 66
                                       </label>
67 67
                                     </div>
68
-                                        
68
+
69 69
                                     <span class="pull-right" style="margin-top: 0.5em;">
70 70
                                         <button type="submit" class="btn btn-small btn-success" title="Add first comment"><i class=" fa fa-check"></i> ${_('Validate')}</button>
71 71
                                     </span>

+ 3 - 4
tracim/tracim/templates/master_authenticated_left_treeview.mak Dosyayı Görüntüle

@@ -21,7 +21,7 @@
21 21
 <%def name="content_wrapper()">
22 22
     <div class="container-fluid">
23 23
         <div class="row-fluid">
24
-        
24
+
25 25
             ## SIDEBAR LEFT
26 26
             <div id="sidebar-left" class="fixed-width-sidebar col-sm-3 sidebar" >
27 27
                 <div class="btn-group" style="position: absolute; right: 2px; top: 4px; ">
@@ -39,13 +39,12 @@
39 39
 
40 40
             <div>
41 41
                 ${self.TITLE_ROW()}
42
-                ${TIM.FLASH_MSG('col-sm-8 col-sm-offset-3')}
43 42
                 ${self.body()}
44 43
             </div>
45 44
         </div>
46 45
     </div>
47 46
     ${self.REQUIRED_DIALOGS()}
48
-    
47
+
49 48
     ###########################################
50 49
     ##
51 50
     ## GENERIC STUFF LIKE SCRIPTS
@@ -62,7 +61,7 @@
62 61
               if (sidebar.hasClass('fixed-width-sidebar')) {
63 62
                 sidebar.removeClass('fixed-width-sidebar')
64 63
                 sidebar.removeClass('col-sm-3');
65
-                
64
+
66 65
                 buttonIcon.removeClass('fa-angle-double-right');
67 66
                 buttonIcon.addClass('fa-angle-double-left');
68 67
               } else {

+ 4 - 2
tracim/tracim/templates/pod.mak Dosyayı Görüntüle

@@ -10,7 +10,7 @@
10 10
 <%def name="HELP_MODAL_DIALOG(help_page)"><div id="help-modal-dialog-${help_page}" class="modal" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"><div class="modal-dialog"><div class="modal-content"></div></div></div></%def>
11 11
 
12 12
 <%def name="NO_CONTENT_INFO(message)"><div class="alert alert-warning" role="alert">${ICO(32, 'status/dialog-information')} ${message|n}</div></%def>
13
-                
13
+
14 14
 <%def name="ICO_ACTION(icon_size, icon_path, title, link_url, current_user, required_profile_id)">
15 15
     % if current_user.profile.id>=required_profile_id:
16 16
         <a href="${link_url}">${ICO_TOOLTIP(icon_size, icon_path, title)}</a>
@@ -79,7 +79,9 @@
79 79
                 $('.alert-error').removeClass('alert-error').addClass('alert-danger');
80 80
 
81 81
                 window.setTimeout(function() {
82
-                    $("#flash-message-to-fade-out").fadeTo(2000, 0.75).fadeTo(2000, 0.5).fadeTo(8000, 0);
82
+                    $("#flash-message-to-fade-out").fadeTo(8000, 0, 'linear', function () {
83
+                        $(this).hide()
84
+                    });
83 85
                 }, 2000);
84 86
             });
85 87
         </script>