[Logilogi-svn] SF.net SVN: logilogi:[1731] trunk
Status: Beta
Brought to you by:
wybow
|
From: <wy...@us...> - 2010-06-25 12:17:29
|
Revision: 1731
http://logilogi.svn.sourceforge.net/logilogi/?rev=1731&view=rev
Author: wybow
Date: 2010-06-25 12:17:22 +0000 (Fri, 25 Jun 2010)
Log Message:
-----------
Fixed IE-bugs
Modified Paths:
--------------
trunk/app/views/layouts/_head.html.erb
trunk/app/views/logis/_contending_logis.html.erb
trunk/app/views/logis/_logi.html.erb
trunk/public/javascripts/application.js
trunk/public/stylesheets/ie.css
trunk/public/stylesheets/logilogi.css
Added Paths:
-----------
trunk/public/stylesheets/ie7.css
Modified: trunk/app/views/layouts/_head.html.erb
===================================================================
--- trunk/app/views/layouts/_head.html.erb 2010-06-24 16:42:43 UTC (rev 1730)
+++ trunk/app/views/layouts/_head.html.erb 2010-06-25 12:17:22 UTC (rev 1731)
@@ -25,6 +25,9 @@
<!--[if IE]>
<%= stylesheet_link_tag "ie" %>
<![endif]-->
+ <!--[if IE 7]>
+ <%= stylesheet_link_tag "ie7"%>
+ <![endif]-->
<% if GlobalConfig.custom_css and !GlobalConfig.custom_css.empty? %>
<%= stylesheet_link_tag GlobalConfig.custom_css %>
<% end %>
Modified: trunk/app/views/logis/_contending_logis.html.erb
===================================================================
--- trunk/app/views/logis/_contending_logis.html.erb 2010-06-24 16:42:43 UTC (rev 1730)
+++ trunk/app/views/logis/_contending_logis.html.erb 2010-06-25 12:17:22 UTC (rev 1731)
@@ -26,6 +26,7 @@
<% if params[:action] != "new" and params[:action] != "edit" %>
<div id="contenders_padding">
<div class="notice_cloud"><%= t('v.logis.can_do_better') %></div>
+ <div class="spacer"></div>
<%= new_logi_button t('v.logis.create_new_competing_logi') %>
<div class="description">
<p>
Modified: trunk/app/views/logis/_logi.html.erb
===================================================================
--- trunk/app/views/logis/_logi.html.erb 2010-06-24 16:42:43 UTC (rev 1730)
+++ trunk/app/views/logis/_logi.html.erb 2010-06-25 12:17:22 UTC (rev 1731)
@@ -5,6 +5,7 @@
<% end %>
<%= (local_assigns[:action] == :view ?
perma_links(@logi, @logi_version) : '' ) %>
+ <div class="spacer"></div>
<div class="panel_content_padding">
<div id="logi_min_height"></div>
<%= yield %>
Modified: trunk/public/javascripts/application.js
===================================================================
--- trunk/public/javascripts/application.js 2010-06-24 16:42:43 UTC (rev 1730)
+++ trunk/public/javascripts/application.js 2010-06-25 12:17:22 UTC (rev 1731)
@@ -192,9 +192,9 @@
initialize_tiny_mce_now: function() {
if (this.no_focus) {
- focus = null
+ focus_target = null
} else {
- focus = this.textarea_id
+ focus_target = this.textarea_id
}
tinyMCE.init({
mode: "textareas",
@@ -211,7 +211,7 @@
this.hidden_div_id, this.textarea_id, this.maximum_logi_size,
this.max_msg, this.reached_msg, this.exeeded_msg),
editor_selector : "editable",
- auto_focus: focus
+ auto_focus: focus_target
});
}
});
Modified: trunk/public/stylesheets/ie.css
===================================================================
--- trunk/public/stylesheets/ie.css 2010-06-24 16:42:43 UTC (rev 1730)
+++ trunk/public/stylesheets/ie.css 2010-06-25 12:17:22 UTC (rev 1731)
@@ -1,3 +1,9 @@
+/* buttons */
+
+.button .content_padding {
+ padding-left: 1em;
+}
+
/* main page */
div.user {
@@ -6,18 +12,17 @@
/* logi */
-#logis_show .logi h1 {
- padding-top: 0.2em;
-}
-
#insert_form .logi h1 {
padding-bottom: 0em;
}
-/* browsing */
+#home_page .logi_current,
+#contending_logis .logi_current {
+ margin-left: -17px;
+}
-#browse_list_input {
- margin-top: 0.9em;
+textarea#fast_reply_area {
+ width: 33em;
}
/* login */
@@ -28,12 +33,9 @@
/* show */
-#contenders_padding .notice_cloud {
- margin-bottom: -0.8em;
-}
#remarking textarea {
overflow: auto;
- width: 12.5em;
+ width: 14.5em;
}
/* editing */
Added: trunk/public/stylesheets/ie7.css
===================================================================
--- trunk/public/stylesheets/ie7.css (rev 0)
+++ trunk/public/stylesheets/ie7.css 2010-06-25 12:17:22 UTC (rev 1731)
@@ -0,0 +1,17 @@
+/* logi */
+
+#logi {
+ width: 39.2em;
+ padding-bottom: 0.5em;
+}
+
+#contenders_padding .description {
+ margin-top: -2.5em;
+}
+
+/* browsing */
+
+#logi_tags_edit_list_input,
+#browse_list_input {
+ margin-top: 1.2em;
+}
Modified: trunk/public/stylesheets/logilogi.css
===================================================================
--- trunk/public/stylesheets/logilogi.css 2010-06-24 16:42:43 UTC (rev 1730)
+++ trunk/public/stylesheets/logilogi.css 2010-06-25 12:17:22 UTC (rev 1731)
@@ -1087,7 +1087,8 @@
font-family: "Times New Roman", Times, serif;
font-size: 2.8em;
line-height: 1em;
- padding: 1em 0 0.5em 0;
+ padding: 0em 0em 0.5em 0em;
+ margin-top: 0em;
}
.logi h1.small_snippet {
padding: 0em 0 0.5em 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|