Removing Bluemarine theme from core
This commit is contained in:
parent
8903794a18
commit
9e51a85be0
10 changed files with 0 additions and 500 deletions
|
@ -1,6 +0,0 @@
|
||||||
<?php
|
|
||||||
?>
|
|
||||||
<div class="block block-<?php print $block->module; ?>" id="block-<?php print $block->module; ?>-<?php print $block->delta; ?>">
|
|
||||||
<h2 class="title"><?php print $block->subject; ?></h2>
|
|
||||||
<div class="content"><?php print $block->content; ?></div>
|
|
||||||
</div>
|
|
|
@ -1,11 +0,0 @@
|
||||||
name = Bluemarine
|
|
||||||
description = Table-based multi-column theme with a marine and ash color scheme.
|
|
||||||
version = VERSION
|
|
||||||
core = 6.x
|
|
||||||
engine = phptemplate
|
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2016-02-24
|
|
||||||
version = "6.38"
|
|
||||||
project = "drupal"
|
|
||||||
datestamp = "1456343372"
|
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
<?php
|
|
||||||
?>
|
|
||||||
<div class="box">
|
|
||||||
<?php if ($title) { ?><h2 class="title"><?php print $title; ?></h2><?php } ?>
|
|
||||||
<div class="content"><?php print $content; ?></div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
<?php
|
|
||||||
?>
|
|
||||||
<div class="comment<?php print ' '. $status; ?>">
|
|
||||||
<?php if ($picture) {
|
|
||||||
print $picture;
|
|
||||||
} ?>
|
|
||||||
<h3 class="title"><?php print $title; ?></h3><?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?>
|
|
||||||
<div class="submitted"><?php print $submitted; ?></div>
|
|
||||||
<div class="content">
|
|
||||||
<?php print $content; ?>
|
|
||||||
<?php if ($signature): ?>
|
|
||||||
<div class="clear-block">
|
|
||||||
<div>—</div>
|
|
||||||
<?php print $signature ?>
|
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
|
||||||
<div class="links">» <?php print $links; ?></div>
|
|
||||||
</div>
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.9 KiB |
|
@ -1,12 +0,0 @@
|
||||||
<?php
|
|
||||||
?>
|
|
||||||
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
|
|
||||||
<?php if ($picture) {
|
|
||||||
print $picture;
|
|
||||||
}?>
|
|
||||||
<?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
|
|
||||||
<span class="submitted"><?php print $submitted?></span>
|
|
||||||
<div class="taxonomy"><?php print $terms?></div>
|
|
||||||
<div class="content"><?php print $content?></div>
|
|
||||||
<?php if ($links) { ?><div class="links">» <?php print $links?></div><?php }; ?>
|
|
||||||
</div>
|
|
|
@ -1,62 +0,0 @@
|
||||||
<?php
|
|
||||||
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<?php print $head ?>
|
|
||||||
<title><?php print $head_title ?></title>
|
|
||||||
<?php print $styles ?>
|
|
||||||
<?php print $scripts ?>
|
|
||||||
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="0" cellspacing="0" id="header">
|
|
||||||
<tr>
|
|
||||||
<td id="logo">
|
|
||||||
<?php if ($logo) { ?><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
|
|
||||||
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
|
||||||
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
|
||||||
</td>
|
|
||||||
<td id="menu">
|
|
||||||
<?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?><?php } ?>
|
|
||||||
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
|
|
||||||
<?php print $search_box ?>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td colspan="2"><div><?php print $header ?></div></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="0" cellspacing="0" id="content">
|
|
||||||
<tr>
|
|
||||||
<?php if ($left) { ?><td id="sidebar-left">
|
|
||||||
<?php print $left ?>
|
|
||||||
</td><?php } ?>
|
|
||||||
<td valign="top">
|
|
||||||
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
|
||||||
<div id="main">
|
|
||||||
<?php print $breadcrumb ?>
|
|
||||||
<h1 class="title"><?php print $title ?></h1>
|
|
||||||
<div class="tabs"><?php print $tabs ?></div>
|
|
||||||
<?php if ($show_messages) { print $messages; } ?>
|
|
||||||
<?php print $help ?>
|
|
||||||
<?php print $content; ?>
|
|
||||||
<?php print $feed_icons; ?>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<?php if ($right) { ?><td id="sidebar-right">
|
|
||||||
<?php print $right ?>
|
|
||||||
</td><?php } ?>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
<?php print $footer_message ?>
|
|
||||||
<?php print $footer ?>
|
|
||||||
</div>
|
|
||||||
<?php print $closure ?>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB |
|
@ -1,36 +0,0 @@
|
||||||
body {
|
|
||||||
direction: rtl;
|
|
||||||
}
|
|
||||||
#logo img {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
#menu {
|
|
||||||
padding: 0.5em 0.5em 0 0.5em;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
#navlist {
|
|
||||||
padding: 0 0 1.2em 0.8em;
|
|
||||||
}
|
|
||||||
#subnavlist {
|
|
||||||
padding: 0.5em 0 0.4em 1.2em;
|
|
||||||
}
|
|
||||||
ul.links li {
|
|
||||||
border-right: 1px solid #9cf;
|
|
||||||
border-left: none;
|
|
||||||
}
|
|
||||||
.block, .box {
|
|
||||||
padding: 0 1.5em 0 0;
|
|
||||||
}
|
|
||||||
.node .taxonomy {
|
|
||||||
padding-right: 1.5em;
|
|
||||||
}
|
|
||||||
.node .picture {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.comment .new {
|
|
||||||
text-align: left;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.comment .picture {
|
|
||||||
float: left;
|
|
||||||
}
|
|
|
@ -1,347 +0,0 @@
|
||||||
|
|
||||||
/*
|
|
||||||
** HTML elements
|
|
||||||
*/
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
color: #000;
|
|
||||||
background-color: #fff;
|
|
||||||
font: 76% Verdana, Arial, Helvetica, sans-serif;
|
|
||||||
}
|
|
||||||
tr.odd td, tr.even td {
|
|
||||||
padding: 0.3em;
|
|
||||||
}
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 1.3em;
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
font-size: 1.2em;
|
|
||||||
}
|
|
||||||
h3, h4, h5, h6 {
|
|
||||||
font-size: 1.1em;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin-top: 0.5em;
|
|
||||||
margin-bottom: 0.9em;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
a:link {
|
|
||||||
color: #39c;
|
|
||||||
}
|
|
||||||
a:visited {
|
|
||||||
color: #369;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #39c;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
fieldset {
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
background-color: #eee;
|
|
||||||
padding: 0.75em 1.5em;
|
|
||||||
font-size: 12px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
/* make <td> sizes relative to body size! */
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
.form-item label {
|
|
||||||
font-size: 1em;
|
|
||||||
color: #222;
|
|
||||||
}
|
|
||||||
.item-list .title {
|
|
||||||
font-size: 1em;
|
|
||||||
color: #222;
|
|
||||||
}
|
|
||||||
.links {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
.comment .links {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
** Page layout blocks / IDs
|
|
||||||
*/
|
|
||||||
#header, #content {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
#header {
|
|
||||||
background-color: #69c;
|
|
||||||
}
|
|
||||||
#logo {
|
|
||||||
vertical-align: middle;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
#logo img {
|
|
||||||
float: left; /* LTR */
|
|
||||||
padding: 0 1em;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
#menu {
|
|
||||||
padding: 0.5em 0.5em 0 0.5em; /* LTR */
|
|
||||||
text-align: right; /* LTR */
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
#navlist {
|
|
||||||
font-size: 1.0em;
|
|
||||||
padding: 0 0.8em 1.2em 0; /* LTR */
|
|
||||||
color: #9cf;
|
|
||||||
}
|
|
||||||
#navlist a {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
#subnavlist {
|
|
||||||
padding: 0.5em 1.2em 0.4em 0; /* LTR */
|
|
||||||
font-size: 0.8em;
|
|
||||||
color: #9cf;
|
|
||||||
}
|
|
||||||
#subnavlist a {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #9cf;
|
|
||||||
}
|
|
||||||
ul.links li {
|
|
||||||
border-left: 1px solid #9cf; /* LTR */
|
|
||||||
}
|
|
||||||
ul.links li.first {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
#search .form-text, #search .form-submit {
|
|
||||||
border: 1px solid #369;
|
|
||||||
font-size: 1.1em;
|
|
||||||
height: 1.5em;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
#search .form-text {
|
|
||||||
width: 8em;
|
|
||||||
padding: 0 0.5em;
|
|
||||||
}
|
|
||||||
#mission {
|
|
||||||
background-color: #369;
|
|
||||||
padding: 1.5em 2em;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
#mission a, #mission a:visited {
|
|
||||||
color: #9cf;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.site-name {
|
|
||||||
margin: 0.6em 0 0 ;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
.site-name a:link, .site-name a:visited {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.site-name a:hover {
|
|
||||||
color: #369;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
.site-slogan {
|
|
||||||
font-size: 1em;
|
|
||||||
color: #eee;
|
|
||||||
display: block;
|
|
||||||
margin: 0;
|
|
||||||
font-style: italic;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
#main {
|
|
||||||
/* padding in px not ex because IE messes up 100% width tables otherwise */
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
#mission, .node .content, .comment .content {
|
|
||||||
line-height: 1.4em;
|
|
||||||
}
|
|
||||||
#help {
|
|
||||||
font-size: 0.9em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
.breadcrumb {
|
|
||||||
margin-bottom: .5em;
|
|
||||||
}
|
|
||||||
.messages {
|
|
||||||
background-color: #eee;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
padding: 0.3em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
.error {
|
|
||||||
border-color: red;
|
|
||||||
}
|
|
||||||
#sidebar-left, #sidebar-right {
|
|
||||||
background-color: #ddd;
|
|
||||||
width: 16em;
|
|
||||||
/* padding in px not ex because IE messes up 100% width tables otherwise */
|
|
||||||
padding: 10px;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
#footer {
|
|
||||||
background-color: #eee;
|
|
||||||
padding: 1em;
|
|
||||||
font-size: 0.8em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
** Common declarations for child classes of node, comment, block, box, etc.
|
|
||||||
** If you want any of them styled differently for a specific parent, add
|
|
||||||
** additional rules /with only the differing properties!/ to .parent .class.
|
|
||||||
** See .comment .title for an example.
|
|
||||||
*/
|
|
||||||
.title, .title a {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 1.3em;
|
|
||||||
color: #777;
|
|
||||||
margin: 0 auto; /* decrease default margins for h<x>.title */
|
|
||||||
}
|
|
||||||
.submitted {
|
|
||||||
color: #999;
|
|
||||||
font-size: 0.8em;
|
|
||||||
}
|
|
||||||
.links {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
.links a {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.block, .box {
|
|
||||||
padding: 0 0 1.5em 0; /* LTR */
|
|
||||||
}
|
|
||||||
.block {
|
|
||||||
border-bottom: 1px solid #bbb;
|
|
||||||
padding-bottom: 0.75em;
|
|
||||||
margin-bottom: 1.5em;
|
|
||||||
}
|
|
||||||
.block .title {
|
|
||||||
margin-bottom: .25em;
|
|
||||||
}
|
|
||||||
.box .title {
|
|
||||||
font-size: 1.1em;
|
|
||||||
}
|
|
||||||
.node {
|
|
||||||
margin: .5em 0 2em; /* LTR */
|
|
||||||
}
|
|
||||||
.sticky {
|
|
||||||
padding: .5em;
|
|
||||||
background-color: #eee;
|
|
||||||
border: solid 1px #ddd;
|
|
||||||
}
|
|
||||||
.node .content, .comment .content {
|
|
||||||
margin: .5em 0 .5em;
|
|
||||||
}
|
|
||||||
.node .taxonomy {
|
|
||||||
color: #999;
|
|
||||||
font-size: 0.8em;
|
|
||||||
padding-left: 1.5em; /* LTR */
|
|
||||||
}
|
|
||||||
.node .picture {
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
float: right; /* LTR */
|
|
||||||
margin: 0.5em;
|
|
||||||
}
|
|
||||||
.comment {
|
|
||||||
border: 1px solid #abc;
|
|
||||||
padding: .5em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
.comment .title a {
|
|
||||||
font-size: 1.1em;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
.comment .new {
|
|
||||||
text-align: right; /* LTR */
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 0.8em;
|
|
||||||
float: right; /* LTR */
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
.comment .picture {
|
|
||||||
border: 1px solid #abc;
|
|
||||||
float: right; /* LTR */
|
|
||||||
margin: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
** Module specific styles
|
|
||||||
*/
|
|
||||||
#aggregator .feed-source {
|
|
||||||
background-color: #eee;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
padding: 1em;
|
|
||||||
margin: 1em 0;
|
|
||||||
}
|
|
||||||
#aggregator .news-item .categories, #aggregator .source, #aggregator .age {
|
|
||||||
color: #999;
|
|
||||||
font-style: italic;
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
#aggregator .title {
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
#aggregator h3 {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
#forum table {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
#forum td {
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
|
||||||
#forum td.forum, #forum td.posts {
|
|
||||||
background-color: #eee;
|
|
||||||
}
|
|
||||||
#forum td.topics, #forum td.last-reply {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
#forum td.container {
|
|
||||||
background-color: #ccc;
|
|
||||||
}
|
|
||||||
#forum td.container a {
|
|
||||||
color: #555;
|
|
||||||
}
|
|
||||||
#forum td.statistics, #forum td.settings, #forum td.pager {
|
|
||||||
height: 1.5em;
|
|
||||||
border: 1px solid #bbb;
|
|
||||||
}
|
|
||||||
#forum td .name {
|
|
||||||
color: #96c;
|
|
||||||
}
|
|
||||||
#forum td .links {
|
|
||||||
padding-top: 0.7em;
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
#profile .profile {
|
|
||||||
clear: both;
|
|
||||||
border: 1px solid #abc;
|
|
||||||
padding: .5em;
|
|
||||||
margin: 1em 0em;
|
|
||||||
}
|
|
||||||
#profile .profile .name {
|
|
||||||
padding-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
.block-forum h3 {
|
|
||||||
margin-bottom: .5em;
|
|
||||||
}
|
|
||||||
div.admin-panel .description {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
div.admin-panel .body {
|
|
||||||
background: #f4f4f4;
|
|
||||||
}
|
|
||||||
div.admin-panel h3 {
|
|
||||||
background-color: #69c;
|
|
||||||
color: #fff;
|
|
||||||
padding: 5px 8px 5px;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
Reference in a new issue