Skip to content
Snippets Groups Projects
Commit 9aac55b4 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #1216948 by tars16, Aron Novak: clean up the CSS for Aggregator module.

parent e7264944
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
#aggregator .feed-source .feed-icon {
float: left;
}
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* @see template_preprocess_aggregator_wrapper() * @see template_preprocess_aggregator_wrapper()
*/ */
?> ?>
<div id="aggregator"> <div class="aggregator">
<?php print $content; ?> <?php print $content; ?>
<?php print $pager; ?> <?php print $pager; ?>
</div> </div>
#aggregator .feed-source .feed-title {
margin-top: 0;
}
#aggregator .feed-source .feed-image img {
margin-bottom: 0.75em;
}
#aggregator .feed-source .feed-icon {
float: right; /* LTR */
display: block;
}
#aggregator .feed-item {
margin-bottom: 1.5em;
}
#aggregator .feed-item-title {
margin-bottom: 0;
font-size: 1.3em;
}
#aggregator .feed-item-meta,
#aggregator .feed-item-body {
margin-bottom: 0.5em;
}
#aggregator .feed-item-categories {
font-size: 0.9em;
}
#aggregator td {
vertical-align: bottom;
}
#aggregator td.categorize-item {
white-space: nowrap;
}
#aggregator .categorize-item .news-item .body {
margin-top: 0;
}
#aggregator .categorize-item h3 {
margin-bottom: 1em;
margin-top: 0;
}
...@@ -5,4 +5,4 @@ version = VERSION ...@@ -5,4 +5,4 @@ version = VERSION
core = 8.x core = 8.x
files[] = aggregator.test files[] = aggregator.test
configure = admin/config/services/aggregator/settings configure = admin/config/services/aggregator/settings
stylesheets[all][] = aggregator.css stylesheets[all][] = aggregator.theme.css
...@@ -868,22 +868,22 @@ ul.inline li { ...@@ -868,22 +868,22 @@ ul.inline li {
/** /**
* Aggregator.module * Aggregator.module
*/ */
#aggregator { .aggregator {
margin-top: 1em; margin-top: 1em;
} }
#aggregator .feed-item-title { .aggregator .feed-item-title {
font-size: 160%; font-size: 160%;
line-height: 130%; line-height: 130%;
} }
#aggregator .feed-item { .aggregator .feed-item {
border-bottom: 1px solid #e9eff3; border-bottom: 1px solid #e9eff3;
margin: -1.5em -31px 1.75em; margin: -1.5em -31px 1.75em;
padding: 1.5em 31px; padding: 1.5em 31px;
} }
#aggregator .feed-item-categories { .aggregator .feed-item-categories {
font-size: 0.92em; font-size: 0.92em;
} }
#aggregator .feed-item-meta { .aggregator .feed-item-meta {
font-size: 0.92em; font-size: 0.92em;
color: #898989; color: #898989;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment