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