diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index e722eaa..21eab0e 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -167,7 +167,11 @@ module ApplicationHelper
end
def file_manager(&block)
- concat(content_tag('div', capture(&block), :class => 'file-manager') + "
", block.binding)
+ concat(
+ content_tag('div',
+ content_tag('div', capture(&block) + '
'),
+ :class => 'file-manager'),
+ block.binding)
end
def file_manager_button(title, icon, url)
diff --git a/app/views/profile_editor/index.rhtml b/app/views/profile_editor/index.rhtml
index 8d93530..1e738bb 100644
--- a/app/views/profile_editor/index.rhtml
+++ b/app/views/profile_editor/index.rhtml
@@ -41,6 +41,9 @@
<% end %>
<% if @profile.person? %>
+
+
+
<%= _('Manage my groups') %>
<% button_bar do %>
diff --git a/public/designs/themes/ecosol/stylesheets/common.css b/public/designs/themes/ecosol/stylesheets/common.css
index 9141c60..a09e5bc 100644
--- a/public/designs/themes/ecosol/stylesheets/common.css
+++ b/public/designs/themes/ecosol/stylesheets/common.css
@@ -70,6 +70,10 @@ body.category4 #content h4, body.category4 #content h5, body.category4 #content
list-style: url(../images/list-dot.gif);
}
+hr {
+ border: none;
+ border-top: 2px dotted #2A5896;
+}
#lightbox{
background: #FFF url(../images/bg-top-cinza.jpg) no-repeat 50% -15px;
diff --git a/public/designs/themes/ecosol/stylesheets/controller_profile_editor.css b/public/designs/themes/ecosol/stylesheets/controller_profile_editor.css
index c494221..4a705c2 100644
--- a/public/designs/themes/ecosol/stylesheets/controller_profile_editor.css
+++ b/public/designs/themes/ecosol/stylesheets/controller_profile_editor.css
@@ -21,13 +21,30 @@
background: #B8CFE7;
}
-div.file-manager
-div.file-manager-button a:hover {
+.file-manager
+.file-manager-button a:hover {
color: #006;
border-color: #2A5896;
background-color: #CFDFF7;
+ -moz-border-radius: 15px;
}
-div#profile-editor-index div.control-panel {
+#profile-editor-index .control-panel {
+}
+
+#profile-editor-index .file-manager {
background: #B8CFE7;
+ -moz-border-radius: 25px;
+ padding: 0px 0px 0px 10px;
+}
+.msie #profile-editor-index .file-manager {
+ border: 2px solid #2A5896;
+}
+.msie6 #profile-editor-index .file-manager div {
+ position: relative;
}
+
+.button-bar {
+ margin-bottom: 5px;
+}
+
diff --git a/public/designs/themes/zen3/stylesheets/common.css b/public/designs/themes/zen3/stylesheets/common.css
index ccd1bf0..48523e6 100644
--- a/public/designs/themes/zen3/stylesheets/common.css
+++ b/public/designs/themes/zen3/stylesheets/common.css
@@ -39,6 +39,11 @@ a:hover {
color: #EA0;
}
+hr {
+ border: none;
+ border-top: 2px dotted #CE5C00;
+}
+
ul li {
list-style: url(../images/list-dot.gif);
}
diff --git a/public/designs/themes/zen3/stylesheets/controller_profile_editor.css b/public/designs/themes/zen3/stylesheets/controller_profile_editor.css
index 8b5c3cc..e820ed3 100644
--- a/public/designs/themes/zen3/stylesheets/controller_profile_editor.css
+++ b/public/designs/themes/zen3/stylesheets/controller_profile_editor.css
@@ -25,13 +25,26 @@ ul.categories li.cat_checked {
border-bottom: 1px solid #CE5C00;
}
-div.file-manager
-div.file-manager-button a:hover {
+.file-manager
+.file-manager-button a:hover {
background: #FCAF3E !important;
color: #000 !important;
border-color: #CE5C00;
}
-div#profile-editor-index div.control-panel {
+#profile-editor-index .control-panel {
+}
+
+#profile-editor-index .file-manager {
background: #FFE890;
+ padding: 0px 0px 0px 10px;
+ border: 2px solid #CE5C00;
+}
+.msie6 #profile-editor-index .file-manager div {
+ position: relative;
}
+
+.button-bar {
+ margin-bottom: 5px;
+}
+
diff --git a/public/stylesheets/controller_profile_editor.css b/public/stylesheets/controller_profile_editor.css
index 4815af9..9823900 100644
--- a/public/stylesheets/controller_profile_editor.css
+++ b/public/stylesheets/controller_profile_editor.css
@@ -54,14 +54,6 @@ div.file-manager-button a {
overflow: hidden;
font-size: 90%;
text-decoration: none;
+ line-height: 100%;
}
-div.file-manager
-div.file-manager-button a:hover {
- -moz-border-radius: 15px;
-}
-
-div#profile-editor-index div.control-panel {
- padding: 10px;
- -moz-border-radius: 15px;
-}
--
libgit2 0.21.2