Commit bb0486ac3864c52b8aacd300d4dfb8d630d43709
1 parent
7ede176c
Exists in
master
and in
9 other branches
Clean background-color of the code block in tutorials
Signed-off-by: BrunaMoreira <brunanayaramlima@gmail.com> Signed-off-by: TomazMartins <tomaz.r.martins@gmail.com>
Showing
1 changed file
with
13 additions
and
3 deletions
Show diff stats
css/main-content.css
| @@ -144,14 +144,24 @@ | @@ -144,14 +144,24 @@ | ||
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | /* This is a temporary solution until noosfero deals with logged-out comments in a better manner. */ | 146 | /* This is a temporary solution until noosfero deals with logged-out comments in a better manner. */ |
| 147 | -.comment-replies .comment-logged-out .comment-text, | ||
| 148 | -.comment-logged-out .comment-picture, | 147 | +.comment-replies .comment-logged-out .comment-text, |
| 148 | +.comment-logged-out .comment-picture, | ||
| 149 | .comment-logged-out h4 { | 149 | .comment-logged-out h4 { |
| 150 | opacity: 1.0; | 150 | opacity: 1.0; |
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | -.comment-logged-out .comment-text, | 153 | +.comment-logged-out .comment-text, |
| 154 | .comment-info { | 154 | .comment-info { |
| 155 | color: black; | 155 | color: black; |
| 156 | } | 156 | } |
| 157 | /**/ | 157 | /**/ |
| 158 | + | ||
| 159 | +/* Temporary solution to code block in tutorial page. */ | ||
| 160 | +.article-body td { | ||
| 161 | + background-color: white; | ||
| 162 | +} | ||
| 163 | + | ||
| 164 | +.article-body td:hover { | ||
| 165 | + background-color: white; | ||
| 166 | +} | ||
| 167 | +/* End of temporary solution to code block in tutorial page. */ |