Commit 999ca1fa73017503ad42f8a4dfa19fdcaa461f02
1 parent
897dda03
Exists in
master
and in
22 other branches
ActionItem152: detalhes
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1287 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
6 changed files
with
38 additions
and
12 deletions
Show diff stats
app/models/tags_block.rb
| ... | ... | @@ -12,7 +12,7 @@ class TagsBlock < Block |
| 12 | 12 | help_textile( |
| 13 | 13 | _('The tag is created when you add some one to your article. |
| 14 | 14 | Try to add some tags to some articles and see your tag cloud to grow.'), |
| 15 | - _('How tags works here?') ) + | |
| 15 | + _('How tags works here?'), :class => 'help_tags' ) + | |
| 16 | 16 | tag_cloud( owner.tags, :id, |
| 17 | 17 | owner.generate_url(:controller => 'profile', :action => 'tag') + '/', |
| 18 | 18 | :max_size => 20, :min_size => 10 ) | ... | ... |
app/views/layouts/application.rhtml
public/designs/templates/default/stylesheets/style.css
public/stylesheets/button.css
| 1 | + | |
| 1 | 2 | .button-bar { |
| 2 | 3 | margin-top: 1em; |
| 3 | 4 | } |
| ... | ... | @@ -5,12 +6,11 @@ |
| 5 | 6 | a.button, |
| 6 | 7 | a.button:visited, |
| 7 | 8 | input.button { |
| 8 | - margin-left: 5px; | |
| 9 | + margin: 0px 2px; | |
| 9 | 10 | background-repeat: no-repeat; |
| 10 | 11 | background-position: 50% 50%; |
| 11 | - padding: 1px 0px 1px 20px; | |
| 12 | - height: 24px; | |
| 13 | - line-height: 22px; | |
| 12 | + padding: 2px 0px 2px 20px; | |
| 13 | + line-height: 24px; | |
| 14 | 14 | font-size: 12px; |
| 15 | 15 | color: black; |
| 16 | 16 | text-decoration: none; |
| ... | ... | @@ -44,17 +44,24 @@ a.button.with-text, |
| 44 | 44 | a.button.with-text:visited, |
| 45 | 45 | input.button.with-text { |
| 46 | 46 | background-color: #EEE; |
| 47 | - padding: 1px 2px 1px 25px; | |
| 47 | + padding: 2px 2px 2px 25px; | |
| 48 | 48 | background-position: 2px 50%; |
| 49 | 49 | border: 1px solid #AAA; |
| 50 | + line-height: 26px; | |
| 51 | +} | |
| 52 | +.msie a.button.with-text, | |
| 53 | +.msie a.button.with-text:visited, | |
| 54 | +.msie input.button.with-text { | |
| 55 | + line-height: 16px; | |
| 56 | + margin: 2px; | |
| 50 | 57 | } |
| 51 | 58 | |
| 52 | 59 | a.button:hover, |
| 53 | 60 | input.button:hover, |
| 54 | 61 | a.button.with-text:hover, |
| 55 | 62 | input.button.with-text:hover { |
| 56 | - border: 1px solid #777; | |
| 57 | - background-color: #DDD; | |
| 63 | + border: 1px solid #678; | |
| 64 | + background-color: #CDE; | |
| 58 | 65 | color: #000; |
| 59 | 66 | } |
| 60 | 67 | |
| ... | ... | @@ -64,3 +71,4 @@ input.button.with-text:hover { |
| 64 | 71 | .icon-button:hover { |
| 65 | 72 | border: none; |
| 66 | 73 | } |
| 74 | + | ... | ... |
public/stylesheets/common.css
| ... | ... | @@ -46,7 +46,7 @@ body.category4 #wrap { background-image: url("../images/bg-top-vermelho.png"); } |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | #header { |
| 49 | - height: 50px; | |
| 49 | + height: 60px; | |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | #design_boxes { |
| ... | ... | @@ -341,7 +341,21 @@ div#notice { |
| 341 | 341 | #content h1, #content h2, #content h3, |
| 342 | 342 | #content h4, #content h5, #content h6 { |
| 343 | 343 | margin: 10px 0px; |
| 344 | -} | |
| 344 | + color: #2A5896; | |
| 345 | +} | |
| 346 | +body.category1 #content h1, body.category1 #content h2, body.category1 #content h3, | |
| 347 | +body.category1 #content h4, body.category1 #content h5, body.category1 #content h6 | |
| 348 | + { color: #E26B00 } | |
| 349 | +body.category2 #content h1, body.category2 #content h2, body.category2 #content h3, | |
| 350 | +body.category2 #content h4, body.category2 #content h5, body.category2 #content h6 | |
| 351 | + { color: #58A80A } | |
| 352 | +body.category3 #content h1, body.category3 #content h2, body.category3 #content h3, | |
| 353 | +body.category3 #content h4, body.category3 #content h5, body.category3 #content h6 | |
| 354 | + { color: #694371 } | |
| 355 | +body.category4 #content h1, body.category4 #content h2, body.category4 #content h3, | |
| 356 | +body.category4 #content h4, body.category4 #content h5, body.category4 #content h6 | |
| 357 | + { color: #B80000 } | |
| 358 | + | |
| 345 | 359 | #content .block-title { |
| 346 | 360 | margin: 0px 0px 10px 0px; |
| 347 | 361 | } | ... | ... |
public/stylesheets/menu.css
| ... | ... | @@ -190,7 +190,7 @@ body.category4 #assets_menu_list { background-image: url(/images/top-bar/assets- |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | #user_box a, |
| 193 | -#assets_menu a, | |
| 193 | +/*#assets_menu a,*/ | |
| 194 | 194 | .top_extra_menu a { |
| 195 | 195 | font-size: 12px; |
| 196 | 196 | font-weight: bold; |
| ... | ... | @@ -267,6 +267,7 @@ body.category4 .top_extra_menu a:hover { background: #CC0000; color: #FFF } |
| 267 | 267 | position: absolute; |
| 268 | 268 | top: 2px; |
| 269 | 269 | left: 64px; |
| 270 | + float: left; | |
| 270 | 271 | } |
| 271 | 272 | #user_box #open_search:hover { |
| 272 | 273 | background: none; | ... | ... |