##// END OF EJS Templates
some small template fixes
marcink -
r409:9b6c1de4 default
parent child Browse files
Show More
@@ -2856,6 +2856,13 b' div.form div.fields div.buttons input'
2856 2856 color: #515151;
2857 2857 }
2858 2858
2859 /* -----------------------------------------------------------
2860 SUMMARY
2861 ----------------------------------------------------------- */
2862
2863 #clone_url{
2864 border: none;
2865 }
2859 2866
2860 2867 /* -----------------------------------------------------------
2861 2868 CHANGESETS
@@ -2931,8 +2938,6 b' div.form div.fields div.buttons input'
2931 2938 text-align: left;
2932 2939 }
2933 2940
2934
2935
2936 2941 /* -----------------------------------------------------------
2937 2942 CHANGESETS - CANVAS
2938 2943 ----------------------------------------------------------- */
@@ -3109,6 +3114,14 b' table.code-browser .browser-dir {'
3109 3114 text-align: left;
3110 3115 }
3111 3116
3117 /* -----------------------------------------------------------
3118 ADMIN - SETTINGS
3119 ----------------------------------------------------------- */
3120 #path_unlock{
3121 color: red;
3122 font-size: 1.2em;
3123 padding-left: 4px;
3124 }
3112 3125
3113 3126 /* -----------------------------------------------------------
3114 3127 INFOBOX
@@ -121,7 +121,8 b''
121 121 </div>
122 122 <div class="input">
123 123 ${h.text('paths_root_path',size=30,readonly="readonly")}
124 <span id="path_unlock" class="tooltip" tooltip_title="${h.tooltip(_('This a crucial application setting. If You really sure you need to change this, you must restart application in order to make this settings take effect. Click this label to unlock.'))}">
124 <span id="path_unlock" class="tooltip"
125 tooltip_title="${h.tooltip(_('This a crucial application setting. If You really sure you need to change this, you must restart application in order to make this settings take effect. Click this label to unlock.'))}">
125 126 ${_('unlock')}</span>
126 127 </div>
127 128 </div>
@@ -136,10 +137,9 b''
136 137 <script type="text/javascript">
137 138 YAHOO.util.Event.onDOMReady(function(){
138 139 YAHOO.util.Event.addListener('path_unlock','click',function(){
139 YAHOO.util.Dom.get('paths_root_path').readonly=false;
140 YAHOO.util.Dom.get('paths_root_path').removeAttribute('readonly');
140 141 });
141 142 });
142 143 </script>
143
144 144 </div>
145 145 </%def>
General Comments 0
You need to be logged in to leave comments. Login now