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

- Patch #862854 by rjgoldsborough, tim.plunkett, reglogge, Jeff Burnz,...

- Patch #862854 by rjgoldsborough, tim.plunkett, reglogge, Jeff Burnz, amateescu, theresaanna, yoroy: no styling for sticky.
parent d12aaddb
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
......@@ -60,3 +60,6 @@ fieldset legend {
#footer-wrapper a:focus {
color: #fefefe;
}
.node-teaser {
margin-top: 10px;
}
......@@ -7,17 +7,13 @@
width: 50%;
}
.tabs ul.primary,
.region-header .block-menu li a {
.region-header .block-menu li a,
.comment-form .form-item {
zoom: 1;
}
#block-search-form .form-item-search-block-form input {
width: 67%;
}
.node-sticky {
background: transparent;
border: none;
padding: 0 0 15px;
}
.node-teaser {
border-bottom: 1px solid #d3d7d9;
}
......@@ -521,6 +521,10 @@ h1#page-title {
.node-teaser .content {
font-size: 1em;
}
.node-teaser h2 {
margin-top: 0;
padding-top: 0.5em;
}
.node-teaser h2 a {
color: #181818;
}
......@@ -529,12 +533,17 @@ h1#page-title {
margin-bottom: 30px;
padding-bottom: 15px;
}
.node-teaser.node-sticky {
.node-sticky {
background: #f9f9f9;
background: rgba(0, 0, 0, 0.024);
border: 1px solid #d3d7d9;
padding: 0 15px 15px;
}
.node-full {
background: none;
border: none;
padding: 0;
}
.node-teaser .content {
clear: none;
line-height: 1.6;
......
......@@ -107,6 +107,9 @@ function bartik_process_maintenance_page(&$variables) {
*/
function bartik_preprocess_node(&$variables) {
$variables['submitted'] = t('published by !username on !datetime', array('!username' => $variables['name'], '!datetime' => $variables['date']));
if ($variables['view_mode'] == 'full' && node_is_page($variables['node'])) {
$variables['classes_array'][] = 'node-full';
}
}
/**
......
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