diff --git a/app/views/content_viewer/view_page.rhtml b/app/views/content_viewer/view_page.rhtml
index 2c49fca..0a5e38b 100644
--- a/app/views/content_viewer/view_page.rhtml
+++ b/app/views/content_viewer/view_page.rhtml
@@ -25,11 +25,11 @@
<% if logged_in? && current_user.person.has_permission?('post_content', profile) %>
-
+
<%= link_to content_tag( 'span', _('Edit') ),
{ :controller => 'cms', :action => 'edit', :id => @page },
:class => 'button with-text icon-edit' %>
diff --git a/public/designs/themes/zen3/stylesheets/button.css b/public/designs/themes/zen3/stylesheets/button.css
new file mode 100644
index 0000000..eb9b3f4
--- /dev/null
+++ b/public/designs/themes/zen3/stylesheets/button.css
@@ -0,0 +1,25 @@
+
+body.noosfero a.button,
+body.noosfero a.button:visited,
+input.button {
+ border: 1px solid #EDA;
+ color: black;
+ /* -moz-border-radius-topright: 7px; */
+}
+
+body.noosfero a.button.with-text,
+body.noosfero a.button.with-text:visited,
+input.button.with-text {
+ border: 1px solid #DA6;
+ background-color: #FEA;
+}
+
+body.noosfero a.button:hover,
+input.button:hover,
+body.noosfero a.button.with-text:hover,
+input.button.with-text:hover {
+ border: 1px solid #950;
+ background-color: #FB4;
+ color: #000;
+}
+
diff --git a/public/stylesheets/blocks/main-block.css b/public/stylesheets/blocks/main-block.css
index 7e199be..2ec0036 100644
--- a/public/stylesheets/blocks/main-block.css
+++ b/public/stylesheets/blocks/main-block.css
@@ -10,6 +10,10 @@
right: 0px;
padding-right: 15px;
}
+#article-actions.hidden {
+ opacity: 0.3;
+ filter: alpha(opacity=30);
+}
#article-tags {
font-size: 10px;
--
libgit2 0.21.2