##// 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 color: #515151;
2856 color: #515151;
2857 }
2857 }
2858
2858
2859 /* -----------------------------------------------------------
2860 SUMMARY
2861 ----------------------------------------------------------- */
2862
2863 #clone_url{
2864 border: none;
2865 }
2859
2866
2860 /* -----------------------------------------------------------
2867 /* -----------------------------------------------------------
2861 CHANGESETS
2868 CHANGESETS
@@ -2931,8 +2938,6 b' div.form div.fields div.buttons input'
2931 text-align: left;
2938 text-align: left;
2932 }
2939 }
2933
2940
2934
2935
2936 /* -----------------------------------------------------------
2941 /* -----------------------------------------------------------
2937 CHANGESETS - CANVAS
2942 CHANGESETS - CANVAS
2938 ----------------------------------------------------------- */
2943 ----------------------------------------------------------- */
@@ -3109,6 +3114,14 b' table.code-browser .browser-dir {'
3109 text-align: left;
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 INFOBOX
3127 INFOBOX
@@ -120,8 +120,9 b''
120 <label for="paths_root_path">${_('Repositories location')}:</label>
120 <label for="paths_root_path">${_('Repositories location')}:</label>
121 </div>
121 </div>
122 <div class="input">
122 <div class="input">
123 ${h.text('paths_root_path',size=30,readonly="readonly")}
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 ${_('unlock')}</span>
126 ${_('unlock')}</span>
126 </div>
127 </div>
127 </div>
128 </div>
@@ -136,10 +137,9 b''
136 <script type="text/javascript">
137 <script type="text/javascript">
137 YAHOO.util.Event.onDOMReady(function(){
138 YAHOO.util.Event.onDOMReady(function(){
138 YAHOO.util.Event.addListener('path_unlock','click',function(){
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 </script>
143 </script>
143
144 </div>
144 </div>
145 </%def>
145 </%def>
@@ -85,7 +85,7 b' E.onDOMReady(function(e){'
85 <label>${_('Clone url')}:</label>
85 <label>${_('Clone url')}:</label>
86 </div>
86 </div>
87 <div class="input-short">
87 <div class="input-short">
88 <input type="text" id="clone_url" readonly="readonly" value="hg clone ${c.clone_repo_url}" size="70"/>
88 <input type="text" id="clone_url" readonly="readonly" value="hg clone ${c.clone_repo_url}" size="70"/>
89 </div>
89 </div>
90 </div>
90 </div>
91
91
General Comments 0
You need to be logged in to leave comments. Login now