add #17 default design
|
@ -10,7 +10,7 @@
|
|||
{% if request.user.is_authenticated and request.user.forum_profile.theme %}
|
||||
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}forum/themes/{{ request.user.forum_profile.theme }}/style.css" />
|
||||
{% else %}
|
||||
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}forum/themes/phpBB/style.css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}forum/themes/default/style.css" />
|
||||
{% endif %}
|
||||
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}forum/js/markitup/skins/markitup/style.css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}forum/js/markitup/sets/bbcode/style.css" />
|
||||
|
|
|
@ -33,10 +33,10 @@
|
|||
<tbody>
|
||||
{% if topics %}
|
||||
{% for topic in topics|forum_unreads:user %}
|
||||
<tr {% if topic.sticky %} class="isticky"{% endif %} {% if topic|has_unreads:user %}class="inew"{% endif %} {% if topic.closed %}class="iclosed"{% endif %}>
|
||||
<tr >
|
||||
<td class="tcl">
|
||||
<div class="intd">
|
||||
<div class="icon"><div class="nosize"><!-- --></div></div>
|
||||
<div {% if topic|has_unreads:user %}class="inew"{% else %}class="icon"{% endif %}><div class="nosize"><!-- --></div></div>
|
||||
<div class="tclcon">
|
||||
{% if topic|has_unreads:user %}
|
||||
<strong>{% link topic %} <span class="byuser">{% trans "by" %} {{ topic.user }}</span></strong>
|
||||
|
|
145
static/forum/themes/DjangoBB/css/djangobb_cs.css
Normal file
|
@ -0,0 +1,145 @@
|
|||
/****************************************************************/
|
||||
/* 1. BACKGROUND AND TEXT COLOURS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 1.1 Default background colour and text colour */
|
||||
|
||||
body{text-align:center;background : url(../img/back.gif);}
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> */
|
||||
.pun {COLOR: #333}
|
||||
|
||||
|
||||
DIV.box, #adminconsole FIELDSET TH, .rowodd, .roweven {BACKGROUND-COLOR: #f8f8f8}
|
||||
.pun BLOCKQUOTE, DIV.codebox {BACKGROUND-COLOR: #f1f1f1}
|
||||
#adminconsole TD, #adminconsole TH {BORDER-COLOR: #eeeeee} /*<<<<<<<<<<<neizvestno*/
|
||||
|
||||
/* 1. 2 Darker background colours */
|
||||
|
||||
TD.tc2, TD.tc3, TD.tcmod, #postpreview, #viewprofile DD, DIV.forminfo,
|
||||
#adminconsole FIELDSET TD, DIV.blockmenu DIV.box, #adstats DD {BACKGROUND-COLOR: #f5f5f5}
|
||||
|
||||
TH.tc3 {width: 70px}
|
||||
|
||||
/* 1.3 Main headers and navigation bar background and text colour */
|
||||
|
||||
.pun H2, #brdmenu {BACKGROUND: url(../img/fon111.gif); COLOR: #FFF; font-weight: bold; height: 16px;}
|
||||
.pun H2 {font-weight: bold;BACKGROUND: #092E20 url(../img/fon111.gif);border-top: 1px solid #092E20;border-left: 1px solid #092E20;border-right: 1px solid #092E20; height: 16px;}
|
||||
|
||||
/* 1.4 Table header rows */
|
||||
|
||||
.pun TH {BACKGROUND-COLOR: #eeeeee;}
|
||||
|
||||
/* 1.5 Fieldset legend text colour */
|
||||
|
||||
.pun LEGEND {COLOR: #5A799D}
|
||||
|
||||
/* 1.6 Highlighted text for various items */
|
||||
|
||||
.pun DIV.blockmenu LI.isactive A, #posterror LI STRONG {COLOR: #7897BB}
|
||||
|
||||
/****************************************************************/
|
||||
/* 2. POST BACKGROUNDS AND TEXT */
|
||||
/****************************************************************/
|
||||
|
||||
/* 2.1 This is the setup for posts. */
|
||||
|
||||
DIV.blockpost DIV.box, DIV.postright, DIV.postfootright {BACKGROUND-COLOR: #f8f8f8}
|
||||
DIV.postright, DIV.postfootright {BORDER-LEFT-COLOR: #f1f1f1}
|
||||
DIV.postleft, DIV.postfootleft, DIV.blockpost LABEL {BACKGROUND-COLOR: #f1f1f1}
|
||||
|
||||
/* 2.2 Background for post headers and text colour for post numbers in viewtopic */
|
||||
|
||||
DIV.blockpost H2 {BACKGROUND-COLOR: #7897bb}
|
||||
DIV.blockpost H2 SPAN.conr {COLOR: #CCC}
|
||||
|
||||
/* 2.3 This is the line above the signature in posts. Colour and background should be the same */
|
||||
|
||||
.pun HR {BACKGROUND-COLOR: #35567C; COLOR: #35567C}
|
||||
|
||||
/****************************************************************/
|
||||
/* 3. BORDER COLOURS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 3.1 All external borders */
|
||||
|
||||
DIV.box {BORDER-COLOR: #092E20}
|
||||
|
||||
/* 3.2 Makes the top border of posts match the colour used for post headers */
|
||||
|
||||
/*DIV.blockpost DIV.box {BORDER-COLOR: #686E80 #686E80 #686E80}*/
|
||||
DIV.blockpost DIV.box {BORDER: 1px solid #7897BB;BORDER-TOP: 1px solid #7897BB;}
|
||||
|
||||
/* 3.3 Table internal borders. By default TH is same as background so border is invisible */
|
||||
|
||||
.pun TD {BORDER-COLOR: #d6e1f1}
|
||||
.pun TH {BORDER-COLOR: #d6e1f1}
|
||||
|
||||
/* 3.4 Creates the inset border for quote boxes, code boxes and form info boxes */
|
||||
|
||||
.pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost LABEL {BORDER-COLOR: #7897BB #7897BB #7897BB #7897BB}
|
||||
|
||||
/* 3.5 Gecko's default fieldset borders are really nasty so this gives them a colour
|
||||
without interferring with IE's rather nice default */
|
||||
|
||||
.pun DIV>FIELDSET {BORDER-COLOR: #7897BB} /*>>> neizvestno shto*/
|
||||
|
||||
/****************************************************************/
|
||||
/* 4. LINK COLOURS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 4.1 This is the default for all links */
|
||||
|
||||
.pun A:link, .pun A:visited {COLOR: #092E20;}
|
||||
.pun A:hover {COLOR: #B42000; }
|
||||
|
||||
/* 4.2 This is the colour for links in header rows and the navigation bar */
|
||||
|
||||
.pun H2 A:link, .pun H2 A:visited, #brdmenu A:link, #brdmenu A:visited {COLOR: #FFF;text-decoration : underline; }
|
||||
.pun H2 A:hover, #brdmenu A:hover {COLOR: #35567C;}
|
||||
|
||||
/* 4.3 This is for closed topics and "hot" links */
|
||||
|
||||
LI.postreport A:link, LI.postreport A:visited, TR.iclosed TD.tcl A:link, TR.iclosed TD.tcl A:visited {COLOR: #888}
|
||||
LI.postreport A:hover, TR.iclosed TD.tcl A:hover {COLOR: #AAA}
|
||||
LI.maintenancelink A:link, LI.maintenancelink A:visited {COLOR: #B42000}
|
||||
LI.maintenancelink A:hover {COLOR: #B42000}
|
||||
|
||||
/****************************************************************/
|
||||
/* 5. POST STATUS INDICATORS */
|
||||
/****************************************************************/
|
||||
|
||||
/* These are the post status indicators which appear at the left of some tables.
|
||||
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
|
||||
.isticky = sticky topics. The default is "icon". By default only .inew is different.*/
|
||||
|
||||
DIV.icon {background:url(../img/inactive_topic.gif)}
|
||||
DIV.inew {background:url(../img/active_topic.gif)}
|
||||
TR.inew DIV.icon {background:url(../img/active_topic.gif)}
|
||||
TR.isticky DIV.inew {background:url(../img/active_topic.gif)}
|
||||
TR.iclosed DIV.icon {background:url(../img/closed.png)}
|
||||
DIV.iredirect {background:url(../img/link.png)}
|
||||
/****************************************************************/
|
||||
/* 6. EXTRAS */
|
||||
/****************************************************************/
|
||||
#brdmenu {BACKGROUND: url(../img/fon111.gif); border-top: 1px solid #092E20;border-bottom: 1px solid #092E20; BACKGROUND-COLOR: #092E20;}
|
||||
/* header logo */
|
||||
|
||||
.pun H1 span
|
||||
{
|
||||
color: #3A3B3C;
|
||||
font-size: 16px; /*bylo 12*/
|
||||
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
.pun h2 span {
|
||||
background:transparent url(../img/category.gif) no-repeat scroll left center;
|
||||
}
|
||||
|
||||
/* board stats icon */
|
||||
#punindex #brdstats div.box div.inbox dl.conl,
|
||||
#punforum #brdstats div.box div.inbox dl.conl
|
||||
{
|
||||
background: transparent url(../img/stats.gif) no-repeat 0% 50%;
|
||||
padding-left: 38px;
|
||||
}
|
||||
|
BIN
static/forum/themes/DjangoBB/img/active_topic.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/DjangoBB/img/active_topic2.gif
Normal file
After Width: | Height: | Size: 199 B |
BIN
static/forum/themes/DjangoBB/img/active_topic22.gif
Normal file
After Width: | Height: | Size: 1,001 B |
BIN
static/forum/themes/DjangoBB/img/active_topic3.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
static/forum/themes/DjangoBB/img/back.gif
Normal file
After Width: | Height: | Size: 44 B |
BIN
static/forum/themes/DjangoBB/img/category.gif
Normal file
After Width: | Height: | Size: 844 B |
BIN
static/forum/themes/DjangoBB/img/closed.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/DjangoBB/img/fon111.gif
Normal file
After Width: | Height: | Size: 88 B |
BIN
static/forum/themes/DjangoBB/img/inactive_topic.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/DjangoBB/img/inactive_topic2.gif
Normal file
After Width: | Height: | Size: 150 B |
BIN
static/forum/themes/DjangoBB/img/inactive_topic3.gif
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
static/forum/themes/DjangoBB/img/link.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/DjangoBB/img/stats.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
280
static/forum/themes/DjangoBB/style.css
Normal file
|
@ -0,0 +1,280 @@
|
|||
/****************************************************************/
|
||||
/* 1. IMPORTED STYLESHEETS */
|
||||
/****************************************************************/
|
||||
|
||||
/* Import the basic setup styles */
|
||||
@import url(../base.css);
|
||||
/* Import the colour scheme */
|
||||
@import url(css/djangobb_cs.css);
|
||||
|
||||
/****************************************************************/
|
||||
/* 2. TEXT SETTINGS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 2.1 This sets the default Font Group */
|
||||
|
||||
.pun, .pun INPUT, .pun SELECT, .pun TEXTAREA, .pun OPTGROUP {
|
||||
FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
.pun {FONT-SIZE: 11px; LINE-HEIGHT: normal}
|
||||
|
||||
/* IEWin Font Size only - to allow IEWin to zoom. Do not remove comments \*/
|
||||
* HTML .pun {FONT-SIZE: 68.75%}
|
||||
/* End IE Win Font Size */
|
||||
|
||||
/* Set font size for tables because IE requires it */
|
||||
.pun TABLE, .pun INPUT, .pun SELECT, .pun OPTGROUP, .pun TEXTAREA, DIV.postmsg P.postedit {FONT-SIZE: 1em}
|
||||
|
||||
/* 2.2 Set the font-size for preformatted text i.e in code boxes */
|
||||
|
||||
.pun PRE {FONT-FAMILY: monaco, "Bitstream Vera Sans Mono", "Courier New", courier, monospace}
|
||||
|
||||
/* 2.3 Font size for headers */
|
||||
|
||||
.pun H2, .pun H4 {FONT-SIZE: 1em}
|
||||
.pun H3 {FONT-SIZE: 1.1em}
|
||||
|
||||
.pun h2 span {
|
||||
padding-left:9px;
|
||||
}
|
||||
|
||||
/* 2.4 Larger text for particular items */
|
||||
DIV.postmsg P {LINE-HEIGHT: 1.4}
|
||||
DIV.postleft DT {FONT-SIZE: 1.1em}
|
||||
.pun PRE {FONT-SIZE: 1.2em}
|
||||
|
||||
/* 2.5 Bold text */
|
||||
|
||||
DIV.postleft DT, DIV.postmsg H4, TD.tcl H3, DIV.forminfo H3, P.postlink, DIV.linkst LI,
|
||||
DIV.linksb LI, DIV.postlinksb LI, .blockmenu LI, #brdtitle H1, .pun SPAN.warntext, .pun P.warntext {FONT-WEIGHT: bold}
|
||||
|
||||
/****************************************************************/
|
||||
/* 3. LINKS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 3.1 Remove underlining for main menu, post header links, post links and vertical menus */
|
||||
|
||||
#brdmenu A:link, #brdmenu A:visited, .blockpost DT A:link, .blockpost DT A:visited, .blockpost H2 A:link,
|
||||
.blockpost H2 A:visited, .postlink A:link, .postlink A:visited, .postfootright A:link, .postfootright A:visited,
|
||||
.blockmenu A:link, .blockmenu A:visited {
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
|
||||
/* 3.2 Underline on hover for links in headers and main menu */
|
||||
|
||||
#brdmenu .blockpost H2 A:hover {font-weight: bold;TEXT-DECORATION: none}
|
||||
#brdmenu A:hover {color: #35567C;}
|
||||
|
||||
/****************************************************************/
|
||||
/* 4. BORDER WIDTH AND STYLE */
|
||||
/****************************************************************/
|
||||
|
||||
/* 4.1 By default borders are 1px solid */
|
||||
|
||||
DIV.box, .pun TD, .pun TH, .pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost LABEL {
|
||||
BORDER-STYLE: solid;
|
||||
BORDER-WIDTH: 1px
|
||||
}
|
||||
|
||||
.pun TH {border-top: 0px}
|
||||
|
||||
/* 4.2 Special settings for the board header. */
|
||||
|
||||
#brdheader DIV.box {BORDER-TOP-WIDTH: 1px}
|
||||
|
||||
/* 4.3 Borders for table cells */
|
||||
|
||||
.pun TD, .pun TH {
|
||||
BORDER-BOTTOM: none;
|
||||
BORDER-RIGHT: none
|
||||
}
|
||||
|
||||
.pun .tcl {BORDER-LEFT: none}
|
||||
|
||||
/* 4.4 Special setting for fieldsets to preserve IE defaults */
|
||||
|
||||
DIV>FIELDSET {
|
||||
BORDER-STYLE: solid;
|
||||
BORDER-WIDTH: 1px
|
||||
}
|
||||
|
||||
/****************************************************************/
|
||||
/* 5. VERTICAL AND PAGE SPACING */
|
||||
/****************************************************************/
|
||||
|
||||
/* 5.1 Page margins */
|
||||
|
||||
HTML, BODY {MARGIN: 0;PADDING: 0; text-align: center;}
|
||||
#punwrap {margin:10px 10px}
|
||||
|
||||
/* 5.2 Creates vertical space between main board elements (Margins) */
|
||||
|
||||
DIV.blocktable, DIV.block, DIV.blockform, DIV.block2col, #postreview {MARGIN-BOTTOM: 10px}
|
||||
#punindex DIV.blocktable, DIV.blockpost {MARGIN-BOTTOM: 10px}
|
||||
DIV.block2col DIV.blockform, DIV.block2col DIV.block {MARGIN-BOTTOM: 0px}
|
||||
|
||||
/* 5.3 Remove space above breadcrumbs, postlinks and pagelinks with a negative top margin */
|
||||
|
||||
DIV.linkst, DIV.linksb {MARGIN-TOP: -8px}
|
||||
DIV.postlinksb {MARGIN-TOP: -4px}
|
||||
|
||||
/* 5.4 Put a 12px gap above the board information box in index because the category tables only
|
||||
have a 6px space beneath them */
|
||||
|
||||
#brdstats {MARGIN-TOP: 10px}
|
||||
|
||||
/****************************************************************/
|
||||
/* 6. SPACING AROUND CONTENT */
|
||||
/****************************************************************/
|
||||
|
||||
/* 6.1 Default padding for main items */
|
||||
|
||||
DIV.block DIV.inbox, DIV.blockmenu DIV.inbox {PADDING: 3px 6px}
|
||||
.pun P, .pun UL, .pun DL, DIV.blockmenu LI, .pun LABEL, #announce DIV.inbox DIV {PADDING: 3px 0}
|
||||
.pun H2 {PADDING: 4px 6px}
|
||||
|
||||
/* 6.2 Special spacing for various elements */
|
||||
|
||||
.pun H1 {PADDING: 3px 0px 0px 0px}
|
||||
#brdtitle P {PADDING-TOP: 0px}
|
||||
DIV.linkst {PADDING: 8px 6px 3px 6px}
|
||||
DIV.linksb, DIV.postlinksb {PADDING: 3px 6px 8px 6px}
|
||||
#brdwelcome, #brdfooter DL A, DIV.blockmenu LI, DIV.rbox INPUT {LINE-HEIGHT: 1.4em}
|
||||
#viewprofile DT, #viewprofile DD {PADDING: 0 3px; LINE-HEIGHT: 2em}
|
||||
|
||||
/* 6.4 Create some horizontal spacing for various elements */
|
||||
|
||||
#brdmenu LI, DIV.rbox INPUT, DIV.blockform P INPUT {MARGIN-RIGHT: 7px}
|
||||
|
||||
/****************************************************************/
|
||||
/* 7. SPACING FOR TABLES */
|
||||
/****************************************************************/
|
||||
|
||||
.pun TH, .pun TD {PADDING: 4px 6px}
|
||||
.pun TD P {PADDING: 5px 0 0 0}
|
||||
|
||||
/****************************************************************/
|
||||
/* 8. SPACING FOR POSTS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 8.1 Padding around left and right columns in viewtopic */
|
||||
|
||||
DIV.postleft DL, DIV.postright {PADDING: 6px}
|
||||
|
||||
/* 8.2 Extra spacing for poster contact details and avatar */
|
||||
|
||||
DD.usercontacts, DD.postavatar {MARGIN-TOP: 5px}
|
||||
DD.postavatar {MARGIN-BOTTOM: 5px}
|
||||
|
||||
/* 8.3 Extra top spacing for signatures and edited by */
|
||||
|
||||
DIV.postsignature, DIV.postmsg P.postedit {PADDING-TOP: 15px}
|
||||
|
||||
/* 8.4 Spacing for code and quote boxes */
|
||||
|
||||
DIV.postmsg H4 {MARGIN-BOTTOM: 10px}
|
||||
.pun BLOCKQUOTE, DIV.codebox {MARGIN: 5px 15px 15px 15px; PADDING: 8px}
|
||||
|
||||
/* 8.5 Padding for the action links and online indicator in viewtopic */
|
||||
|
||||
DIV.postfootleft P, DIV.postfootright UL, DIV.postfootright DIV {PADDING: 10px 6px 5px 6px}
|
||||
|
||||
/* 8.6 This is the input on moderators multi-delete view */
|
||||
|
||||
DIV.blockpost INPUT, DIV.blockpost LABEL {
|
||||
PADDING: 3px;
|
||||
DISPLAY: inline
|
||||
}
|
||||
|
||||
P.multidelete {
|
||||
PADDING-TOP: 15px;
|
||||
PADDING-BOTTOM: 5px
|
||||
}
|
||||
|
||||
/* 8.7 Make sure paragraphs in posts don't get any padding */
|
||||
|
||||
DIV.postmsg P {PADDING: 0}
|
||||
|
||||
/****************************************************************/
|
||||
/* 9. SPECIAL SPACING FOR FORMS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 9.1 Padding around fieldsets */
|
||||
|
||||
DIV.blockform FORM, DIV.fakeform {PADDING: 20px 20px 15px 20px}
|
||||
DIV.inform {PADDING-BOTTOM: 12px}
|
||||
|
||||
/* 9.2 Padding inside fieldsets */
|
||||
|
||||
.pun FIELDSET {PADDING: 0px 12px 0px 12px}
|
||||
DIV.infldset {PADDING: 9px 0px 12px 0}
|
||||
.pun LEGEND {PADDING: 2px 6px}
|
||||
|
||||
/* 9.3 The information box at the top of the registration form and elsewhere */
|
||||
|
||||
DIV.forminfo {
|
||||
MARGIN-BOTTOM: 12px;
|
||||
PADDING: 9px 10px
|
||||
}
|
||||
|
||||
/* 9.4 BBCode help links in post forms */
|
||||
|
||||
UL.bblinks LI {PADDING-RIGHT: 20px}
|
||||
|
||||
UL.bblinks {PADDING-BOTTOM: 10px; PADDING-LEFT: 4px}
|
||||
|
||||
/* 9.5 Horizontal positioning for the submit button on forms */
|
||||
|
||||
DIV.blockform P INPUT {MARGIN-LEFT: 12px}
|
||||
|
||||
/****************************************************************/
|
||||
/* 10. POST STATUS INDICATORS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 10.1 These are the post status indicators which appear at the left of some tables.
|
||||
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
|
||||
.isticky = sticky topics. By default only .inew is different from the default.*/
|
||||
|
||||
DIV.icon,DIV.inew {
|
||||
FLOAT: left;
|
||||
MARGIN-TOP: 0.1em;
|
||||
MARGIN-right: 0.4em;
|
||||
DISPLAY: block;
|
||||
/* BORDER-WIDTH: 0.6em 0.6em 0.6em 0.6em;
|
||||
BORDER-STYLE: solid*/
|
||||
HEIGHT: 16px;
|
||||
WIDTH: 16px;
|
||||
}
|
||||
|
||||
|
||||
DIV.searchposts DIV.icon {MARGIN-LEFT: 0}
|
||||
|
||||
/* 10.2 Class .tclcon is a div inside the first column of tables with post indicators. The
|
||||
margin creates space for the post status indicator */
|
||||
|
||||
TD DIV.tclcon {MARGIN-LEFT: 2.3em}
|
||||
|
||||
/****************************************************************/
|
||||
/* 11. EXTRAS */
|
||||
/****************************************************************/
|
||||
|
||||
#brdmenu {height:20px;padding-top:1px;padding-left:8px}
|
||||
#punwrap {
|
||||
width: auto;
|
||||
margin-left: 25px;
|
||||
margin-right: 25px;
|
||||
text-align: left;
|
||||
background-repeat: repeat-y;
|
||||
}
|
||||
.pun {
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
#brdfooter {
|
||||
width: auto;
|
||||
margin-bottom: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom left;
|
||||
}
|
145
static/forum/themes/default/css/default_cs.css
Normal file
|
@ -0,0 +1,145 @@
|
|||
/****************************************************************/
|
||||
/* 1. BACKGROUND AND TEXT COLOURS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 1.1 Default background colour and text colour */
|
||||
|
||||
body{text-align:center;background : url(../img/back.gif);}
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> */
|
||||
.pun {COLOR: #333}
|
||||
|
||||
|
||||
DIV.box, #adminconsole FIELDSET TH, .rowodd, .roweven {BACKGROUND-COLOR: #f8f8f8}
|
||||
.pun BLOCKQUOTE, DIV.codebox {BACKGROUND-COLOR: #f1f1f1}
|
||||
#adminconsole TD, #adminconsole TH {BORDER-COLOR: #eeeeee} /*<<<<<<<<<<<neizvestno*/
|
||||
|
||||
/* 1. 2 Darker background colours */
|
||||
|
||||
TD.tc2, TD.tc3, TD.tcmod, #postpreview, #viewprofile DD, DIV.forminfo,
|
||||
#adminconsole FIELDSET TD, DIV.blockmenu DIV.box, #adstats DD {BACKGROUND-COLOR: #f5f5f5}
|
||||
|
||||
TH.tc3 {width: 70px}
|
||||
|
||||
/* 1.3 Main headers and navigation bar background and text colour */
|
||||
|
||||
.pun H2, #brdmenu {BACKGROUND: url(../img/fon111.gif); COLOR: #FFF; font-weight: bold; height: 16px;}
|
||||
.pun H2 {font-weight: bold;BACKGROUND: #7897BB url(../img/fon111.gif);border-top: 1px solid #7897BB;border-left: 1px solid #7897BB;border-right: 1px solid #7897BB; height: 16px;}
|
||||
|
||||
/* 1.4 Table header rows */
|
||||
|
||||
.pun TH {BACKGROUND-COLOR: #eeeeee;}
|
||||
|
||||
/* 1.5 Fieldset legend text colour */
|
||||
|
||||
.pun LEGEND {COLOR: #5A799D}
|
||||
|
||||
/* 1.6 Highlighted text for various items */
|
||||
|
||||
.pun DIV.blockmenu LI.isactive A, #posterror LI STRONG {COLOR: #7897BB}
|
||||
|
||||
/****************************************************************/
|
||||
/* 2. POST BACKGROUNDS AND TEXT */
|
||||
/****************************************************************/
|
||||
|
||||
/* 2.1 This is the setup for posts. */
|
||||
|
||||
DIV.blockpost DIV.box, DIV.postright, DIV.postfootright {BACKGROUND-COLOR: #f8f8f8}
|
||||
DIV.postright, DIV.postfootright {BORDER-LEFT-COLOR: #f1f1f1}
|
||||
DIV.postleft, DIV.postfootleft, DIV.blockpost LABEL {BACKGROUND-COLOR: #f1f1f1}
|
||||
|
||||
/* 2.2 Background for post headers and text colour for post numbers in viewtopic */
|
||||
|
||||
DIV.blockpost H2 {BACKGROUND-COLOR: #7897bb}
|
||||
DIV.blockpost H2 SPAN.conr {COLOR: #CCC}
|
||||
|
||||
/* 2.3 This is the line above the signature in posts. Colour and background should be the same */
|
||||
|
||||
.pun HR {BACKGROUND-COLOR: #35567C; COLOR: #35567C}
|
||||
|
||||
/****************************************************************/
|
||||
/* 3. BORDER COLOURS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 3.1 All external borders */
|
||||
|
||||
DIV.box {BORDER-COLOR: #7897BB}
|
||||
|
||||
/* 3.2 Makes the top border of posts match the colour used for post headers */
|
||||
|
||||
/*DIV.blockpost DIV.box {BORDER-COLOR: #686E80 #686E80 #686E80}*/
|
||||
DIV.blockpost DIV.box {BORDER: 1px solid #7897BB;BORDER-TOP: 1px solid #7897BB;}
|
||||
|
||||
/* 3.3 Table internal borders. By default TH is same as background so border is invisible */
|
||||
|
||||
.pun TD {BORDER-COLOR: #d6e1f1}
|
||||
.pun TH {BORDER-COLOR: #d6e1f1}
|
||||
|
||||
/* 3.4 Creates the inset border for quote boxes, code boxes and form info boxes */
|
||||
|
||||
.pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost LABEL {BORDER-COLOR: #7897BB #7897BB #7897BB #7897BB}
|
||||
|
||||
/* 3.5 Gecko's default fieldset borders are really nasty so this gives them a colour
|
||||
without interferring with IE's rather nice default */
|
||||
|
||||
.pun DIV>FIELDSET {BORDER-COLOR: #7897BB} /*>>> neizvestno shto*/
|
||||
|
||||
/****************************************************************/
|
||||
/* 4. LINK COLOURS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 4.1 This is the default for all links */
|
||||
|
||||
.pun A:link, .pun A:visited {COLOR: #7897BB;}
|
||||
.pun A:hover {COLOR: #B42000; }
|
||||
|
||||
/* 4.2 This is the colour for links in header rows and the navigation bar */
|
||||
|
||||
.pun H2 A:link, .pun H2 A:visited, #brdmenu A:link, #brdmenu A:visited {COLOR: #FFF;text-decoration : underline; }
|
||||
.pun H2 A:hover, #brdmenu A:hover {COLOR: #35567C;}
|
||||
|
||||
/* 4.3 This is for closed topics and "hot" links */
|
||||
|
||||
LI.postreport A:link, LI.postreport A:visited, TR.iclosed TD.tcl A:link, TR.iclosed TD.tcl A:visited {COLOR: #888}
|
||||
LI.postreport A:hover, TR.iclosed TD.tcl A:hover {COLOR: #AAA}
|
||||
LI.maintenancelink A:link, LI.maintenancelink A:visited {COLOR: #B42000}
|
||||
LI.maintenancelink A:hover {COLOR: #B42000}
|
||||
|
||||
/****************************************************************/
|
||||
/* 5. POST STATUS INDICATORS */
|
||||
/****************************************************************/
|
||||
|
||||
/* These are the post status indicators which appear at the left of some tables.
|
||||
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
|
||||
.isticky = sticky topics. The default is "icon". By default only .inew is different.*/
|
||||
|
||||
DIV.icon {background:url(../img/inactive_topic.gif)}
|
||||
DIV.inew {background:url(../img/active_topic.gif)}
|
||||
TR.inew DIV.icon {background:url(../img/active_topic.gif)}
|
||||
TR.isticky DIV.inew {background:url(../img/active_topic.gif)}
|
||||
TR.iclosed DIV.icon {background:url(../img/closed.png)}
|
||||
DIV.iredirect {background:url(../img/link.png)}
|
||||
/****************************************************************/
|
||||
/* 6. EXTRAS */
|
||||
/****************************************************************/
|
||||
#brdmenu {BACKGROUND: url(../img/fon111.gif); border-top: 1px solid #7897BB;border-bottom: 1px solid #7897BB; BACKGROUND-COLOR: #7897BB;}
|
||||
/* header logo */
|
||||
|
||||
.pun H1 span
|
||||
{
|
||||
color: #3A3B3C;
|
||||
font-size: 16px; /*bylo 12*/
|
||||
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
.pun h2 span {
|
||||
background:transparent url(../img/category.gif) no-repeat scroll left center;
|
||||
}
|
||||
|
||||
/* board stats icon */
|
||||
#punindex #brdstats div.box div.inbox dl.conl,
|
||||
#punforum #brdstats div.box div.inbox dl.conl
|
||||
{
|
||||
background: transparent url(../img/stats.gif) no-repeat 0% 50%;
|
||||
padding-left: 38px;
|
||||
}
|
||||
|
BIN
static/forum/themes/default/img/active_topic.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/default/img/back.gif
Normal file
After Width: | Height: | Size: 44 B |
BIN
static/forum/themes/default/img/category.gif
Normal file
After Width: | Height: | Size: 844 B |
BIN
static/forum/themes/default/img/closed.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/default/img/fon111.gif
Normal file
After Width: | Height: | Size: 74 B |
BIN
static/forum/themes/default/img/inactive_topic.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/default/img/link.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
static/forum/themes/default/img/stats.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
280
static/forum/themes/default/style.css
Normal file
|
@ -0,0 +1,280 @@
|
|||
/****************************************************************/
|
||||
/* 1. IMPORTED STYLESHEETS */
|
||||
/****************************************************************/
|
||||
|
||||
/* Import the basic setup styles */
|
||||
@import url(../base.css);
|
||||
/* Import the colour scheme */
|
||||
@import url(css/default_cs.css);
|
||||
|
||||
/****************************************************************/
|
||||
/* 2. TEXT SETTINGS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 2.1 This sets the default Font Group */
|
||||
|
||||
.pun, .pun INPUT, .pun SELECT, .pun TEXTAREA, .pun OPTGROUP {
|
||||
FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
.pun {FONT-SIZE: 11px; LINE-HEIGHT: normal}
|
||||
|
||||
/* IEWin Font Size only - to allow IEWin to zoom. Do not remove comments \*/
|
||||
* HTML .pun {FONT-SIZE: 68.75%}
|
||||
/* End IE Win Font Size */
|
||||
|
||||
/* Set font size for tables because IE requires it */
|
||||
.pun TABLE, .pun INPUT, .pun SELECT, .pun OPTGROUP, .pun TEXTAREA, DIV.postmsg P.postedit {FONT-SIZE: 1em}
|
||||
|
||||
/* 2.2 Set the font-size for preformatted text i.e in code boxes */
|
||||
|
||||
.pun PRE {FONT-FAMILY: monaco, "Bitstream Vera Sans Mono", "Courier New", courier, monospace}
|
||||
|
||||
/* 2.3 Font size for headers */
|
||||
|
||||
.pun H2, .pun H4 {FONT-SIZE: 1em}
|
||||
.pun H3 {FONT-SIZE: 1.1em}
|
||||
|
||||
.pun h2 span {
|
||||
padding-left:9px;
|
||||
}
|
||||
|
||||
/* 2.4 Larger text for particular items */
|
||||
DIV.postmsg P {LINE-HEIGHT: 1.4}
|
||||
DIV.postleft DT {FONT-SIZE: 1.1em}
|
||||
.pun PRE {FONT-SIZE: 1.2em}
|
||||
|
||||
/* 2.5 Bold text */
|
||||
|
||||
DIV.postleft DT, DIV.postmsg H4, TD.tcl H3, DIV.forminfo H3, P.postlink, DIV.linkst LI,
|
||||
DIV.linksb LI, DIV.postlinksb LI, .blockmenu LI, #brdtitle H1, .pun SPAN.warntext, .pun P.warntext {FONT-WEIGHT: bold}
|
||||
|
||||
/****************************************************************/
|
||||
/* 3. LINKS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 3.1 Remove underlining for main menu, post header links, post links and vertical menus */
|
||||
|
||||
#brdmenu A:link, #brdmenu A:visited, .blockpost DT A:link, .blockpost DT A:visited, .blockpost H2 A:link,
|
||||
.blockpost H2 A:visited, .postlink A:link, .postlink A:visited, .postfootright A:link, .postfootright A:visited,
|
||||
.blockmenu A:link, .blockmenu A:visited {
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
|
||||
/* 3.2 Underline on hover for links in headers and main menu */
|
||||
|
||||
#brdmenu .blockpost H2 A:hover {font-weight: bold;TEXT-DECORATION: none}
|
||||
#brdmenu A:hover {color: #FFFFFF; text-decoration:underline;}
|
||||
|
||||
/****************************************************************/
|
||||
/* 4. BORDER WIDTH AND STYLE */
|
||||
/****************************************************************/
|
||||
|
||||
/* 4.1 By default borders are 1px solid */
|
||||
|
||||
DIV.box, .pun TD, .pun TH, .pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost LABEL {
|
||||
BORDER-STYLE: solid;
|
||||
BORDER-WIDTH: 1px
|
||||
}
|
||||
|
||||
.pun TH {border-top: 0px}
|
||||
|
||||
/* 4.2 Special settings for the board header. */
|
||||
|
||||
#brdheader DIV.box {BORDER-TOP-WIDTH: 1px}
|
||||
|
||||
/* 4.3 Borders for table cells */
|
||||
|
||||
.pun TD, .pun TH {
|
||||
BORDER-BOTTOM: none;
|
||||
BORDER-RIGHT: none
|
||||
}
|
||||
|
||||
.pun .tcl {BORDER-LEFT: none}
|
||||
|
||||
/* 4.4 Special setting for fieldsets to preserve IE defaults */
|
||||
|
||||
DIV>FIELDSET {
|
||||
BORDER-STYLE: solid;
|
||||
BORDER-WIDTH: 1px
|
||||
}
|
||||
|
||||
/****************************************************************/
|
||||
/* 5. VERTICAL AND PAGE SPACING */
|
||||
/****************************************************************/
|
||||
|
||||
/* 5.1 Page margins */
|
||||
|
||||
HTML, BODY {MARGIN: 0;PADDING: 0; text-align: center;}
|
||||
#punwrap {margin:10px 10px}
|
||||
|
||||
/* 5.2 Creates vertical space between main board elements (Margins) */
|
||||
|
||||
DIV.blocktable, DIV.block, DIV.blockform, DIV.block2col, #postreview {MARGIN-BOTTOM: 10px}
|
||||
#punindex DIV.blocktable, DIV.blockpost {MARGIN-BOTTOM: 10px}
|
||||
DIV.block2col DIV.blockform, DIV.block2col DIV.block {MARGIN-BOTTOM: 0px}
|
||||
|
||||
/* 5.3 Remove space above breadcrumbs, postlinks and pagelinks with a negative top margin */
|
||||
|
||||
DIV.linkst, DIV.linksb {MARGIN-TOP: -8px}
|
||||
DIV.postlinksb {MARGIN-TOP: -4px}
|
||||
|
||||
/* 5.4 Put a 12px gap above the board information box in index because the category tables only
|
||||
have a 6px space beneath them */
|
||||
|
||||
#brdstats {MARGIN-TOP: 10px}
|
||||
|
||||
/****************************************************************/
|
||||
/* 6. SPACING AROUND CONTENT */
|
||||
/****************************************************************/
|
||||
|
||||
/* 6.1 Default padding for main items */
|
||||
|
||||
DIV.block DIV.inbox, DIV.blockmenu DIV.inbox {PADDING: 3px 6px}
|
||||
.pun P, .pun UL, .pun DL, DIV.blockmenu LI, .pun LABEL, #announce DIV.inbox DIV {PADDING: 3px 0}
|
||||
.pun H2 {PADDING: 4px 6px}
|
||||
|
||||
/* 6.2 Special spacing for various elements */
|
||||
|
||||
.pun H1 {PADDING: 3px 0px 0px 0px}
|
||||
#brdtitle P {PADDING-TOP: 0px}
|
||||
DIV.linkst {PADDING: 8px 6px 3px 6px}
|
||||
DIV.linksb, DIV.postlinksb {PADDING: 3px 6px 8px 6px}
|
||||
#brdwelcome, #brdfooter DL A, DIV.blockmenu LI, DIV.rbox INPUT {LINE-HEIGHT: 1.4em}
|
||||
#viewprofile DT, #viewprofile DD {PADDING: 0 3px; LINE-HEIGHT: 2em}
|
||||
|
||||
/* 6.4 Create some horizontal spacing for various elements */
|
||||
|
||||
#brdmenu LI, DIV.rbox INPUT, DIV.blockform P INPUT {MARGIN-RIGHT: 7px}
|
||||
|
||||
/****************************************************************/
|
||||
/* 7. SPACING FOR TABLES */
|
||||
/****************************************************************/
|
||||
|
||||
.pun TH, .pun TD {PADDING: 4px 6px}
|
||||
.pun TD P {PADDING: 5px 0 0 0}
|
||||
|
||||
/****************************************************************/
|
||||
/* 8. SPACING FOR POSTS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 8.1 Padding around left and right columns in viewtopic */
|
||||
|
||||
DIV.postleft DL, DIV.postright {PADDING: 6px}
|
||||
|
||||
/* 8.2 Extra spacing for poster contact details and avatar */
|
||||
|
||||
DD.usercontacts, DD.postavatar {MARGIN-TOP: 5px}
|
||||
DD.postavatar {MARGIN-BOTTOM: 5px}
|
||||
|
||||
/* 8.3 Extra top spacing for signatures and edited by */
|
||||
|
||||
DIV.postsignature, DIV.postmsg P.postedit {PADDING-TOP: 15px}
|
||||
|
||||
/* 8.4 Spacing for code and quote boxes */
|
||||
|
||||
DIV.postmsg H4 {MARGIN-BOTTOM: 10px}
|
||||
.pun BLOCKQUOTE, DIV.codebox {MARGIN: 5px 15px 15px 15px; PADDING: 8px}
|
||||
|
||||
/* 8.5 Padding for the action links and online indicator in viewtopic */
|
||||
|
||||
DIV.postfootleft P, DIV.postfootright UL, DIV.postfootright DIV {PADDING: 10px 6px 5px 6px}
|
||||
|
||||
/* 8.6 This is the input on moderators multi-delete view */
|
||||
|
||||
DIV.blockpost INPUT, DIV.blockpost LABEL {
|
||||
PADDING: 3px;
|
||||
DISPLAY: inline
|
||||
}
|
||||
|
||||
P.multidelete {
|
||||
PADDING-TOP: 15px;
|
||||
PADDING-BOTTOM: 5px
|
||||
}
|
||||
|
||||
/* 8.7 Make sure paragraphs in posts don't get any padding */
|
||||
|
||||
DIV.postmsg P {PADDING: 0}
|
||||
|
||||
/****************************************************************/
|
||||
/* 9. SPECIAL SPACING FOR FORMS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 9.1 Padding around fieldsets */
|
||||
|
||||
DIV.blockform FORM, DIV.fakeform {PADDING: 20px 20px 15px 20px}
|
||||
DIV.inform {PADDING-BOTTOM: 12px}
|
||||
|
||||
/* 9.2 Padding inside fieldsets */
|
||||
|
||||
.pun FIELDSET {PADDING: 0px 12px 0px 12px}
|
||||
DIV.infldset {PADDING: 9px 0px 12px 0}
|
||||
.pun LEGEND {PADDING: 2px 6px}
|
||||
|
||||
/* 9.3 The information box at the top of the registration form and elsewhere */
|
||||
|
||||
DIV.forminfo {
|
||||
MARGIN-BOTTOM: 12px;
|
||||
PADDING: 9px 10px
|
||||
}
|
||||
|
||||
/* 9.4 BBCode help links in post forms */
|
||||
|
||||
UL.bblinks LI {PADDING-RIGHT: 20px}
|
||||
|
||||
UL.bblinks {PADDING-BOTTOM: 10px; PADDING-LEFT: 4px}
|
||||
|
||||
/* 9.5 Horizontal positioning for the submit button on forms */
|
||||
|
||||
DIV.blockform P INPUT {MARGIN-LEFT: 12px}
|
||||
|
||||
/****************************************************************/
|
||||
/* 10. POST STATUS INDICATORS */
|
||||
/****************************************************************/
|
||||
|
||||
/* 10.1 These are the post status indicators which appear at the left of some tables.
|
||||
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
|
||||
.isticky = sticky topics. By default only .inew is different from the default.*/
|
||||
|
||||
DIV.icon,DIV.inew {
|
||||
FLOAT: left;
|
||||
MARGIN-TOP: 0.1em;
|
||||
MARGIN-right: 0.4em;
|
||||
DISPLAY: block;
|
||||
/* BORDER-WIDTH: 0.6em 0.6em 0.6em 0.6em;
|
||||
BORDER-STYLE: solid*/
|
||||
HEIGHT: 16px;
|
||||
WIDTH: 16px;
|
||||
}
|
||||
|
||||
|
||||
DIV.searchposts DIV.icon {MARGIN-LEFT: 0}
|
||||
|
||||
/* 10.2 Class .tclcon is a div inside the first column of tables with post indicators. The
|
||||
margin creates space for the post status indicator */
|
||||
|
||||
TD DIV.tclcon {MARGIN-LEFT: 2.3em}
|
||||
|
||||
/****************************************************************/
|
||||
/* 11. EXTRAS */
|
||||
/****************************************************************/
|
||||
|
||||
#brdmenu {height:20px;padding-top:1px;padding-left:8px}
|
||||
#punwrap {
|
||||
width: auto;
|
||||
margin-left: 25px;
|
||||
margin-right: 25px;
|
||||
text-align: left;
|
||||
background-repeat: repeat-y;
|
||||
}
|
||||
.pun {
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
#brdfooter {
|
||||
width: auto;
|
||||
margin-bottom: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom left;
|
||||
}
|