Commit 14532049ad75e5527de48b71a259feec207bef98
Committed by
Daniela Feitosa
1 parent
fbe9c876
Exists in
master
and in
29 other branches
Don't repeat background image for events in general search result
(ActionItem1963)
Showing
2 changed files
with
10 additions
and
5 deletions
Show diff stats
public/designs/themes/base/style.css
| ... | ... | @@ -926,14 +926,17 @@ X.sep { |
| 926 | 926 | height: 225px; |
| 927 | 927 | } |
| 928 | 928 | |
| 929 | -#content .search-results-type-article li { | |
| 929 | +#content .search-results-type-article li, | |
| 930 | +#content .search-results-type-event li { | |
| 930 | 931 | padding: 5px 0px; |
| 931 | 932 | } |
| 932 | 933 | |
| 933 | -.search-results-type-article a { | |
| 934 | +.search-results-type-article a, | |
| 935 | +.search-results-type-event a { | |
| 934 | 936 | text-decoration: none; |
| 935 | 937 | } |
| 936 | -.search-results-type-article a:hover { | |
| 938 | +.search-results-type-article a:hover, | |
| 939 | +.search-results-type-event a:hover { | |
| 937 | 940 | text-decoration: underline; |
| 938 | 941 | } |
| 939 | 942 | ... | ... |
public/stylesheets/application.css
| ... | ... | @@ -4451,13 +4451,15 @@ h1#agenda-title { |
| 4451 | 4451 | padding: 2px 0px 4px 0px; |
| 4452 | 4452 | } |
| 4453 | 4453 | |
| 4454 | -.controller-search #content .search-results-type-article li { | |
| 4454 | +.controller-search #content .search-results-type-article li, | |
| 4455 | +.controller-search #content .search-results-type-event li { | |
| 4455 | 4456 | padding: 0px 0px 4px 20px; |
| 4456 | 4457 | background-repeat: no-repeat; |
| 4457 | 4458 | border-color: transparent; |
| 4458 | 4459 | } |
| 4459 | 4460 | |
| 4460 | -.controller-search #content .search-results-type-article li:hover { | |
| 4461 | +.controller-search #content .search-results-type-article li:hover, | |
| 4462 | +.controller-search #content .search-results-type-event li:hover { | |
| 4461 | 4463 | background-color: transparent; |
| 4462 | 4464 | } |
| 4463 | 4465 | ... | ... |