Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#25 2011-11-28 12:14:32

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,304

Re: Guests: 58, Users: 2. -- Pardon?

colak wrote:

When viewing the “new posts since last visit” page, there is not enough left padding.

.intd {
    margin-left: 7px !important;
    }

!important is needed for Stylish (FF extension).

I’ll see if I can separate the necessary amendments in my Stylish sheet from those for my personal prefs. I copied some colors from the .com site and have an atmoshere that comes close to that of the mothership.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#26 2011-11-28 12:21:28

Bloke
Developer
From: Leeds, UK
Registered: 2006-01-29
Posts: 11,271
Website GitHub

Re: Guests: 58, Users: 2. -- Pardon?

uli wrote:

I’ll see if I can separate the necessary amendments in my Stylish sheet from those for my personal prefs. I copied some colors from the .com site and have an atmoshere that comes close to that of the mothership.

Thank Uli. You could just post your version here anyway. Some of us might prefer your colours; maybe they could be folded into the tabula css instead of the current scheme if enough people like them? (that might not be easy: I don’t know what’s involved as I’m a forum admin doughnut).


The smd plugin menagerie — for when you need one more gribble of power from Textpattern. Bleeding-edge code available on GitHub.

Txp Builders – finely-crafted code, design and Txp

Offline

#27 2011-11-28 12:32:54

philwareham
Core designer
From: Haslemere, Surrey, UK
Registered: 2009-06-11
Posts: 3,564
Website GitHub Mastodon

Re: Guests: 58, Users: 2. -- Pardon?

I’ve had a look at the full Tabula CSS files and they are nice and clean – which makes it very easy to amend. There’s a couple of suggestions I could make also – some of the vendor prefixes are not needed anymore, for instance…

.pun blockquote {
  color:#555;
  margin-bottom: 1.0em !important;
  border-style: solid;
  border-color: #FDA;
  border-width: 3px 1px 1px 3px;
  -moz-border-radius: 10px;
  -moz-border-radius-topleft:0px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

could be shortened to just…

.pun blockquote {
  color: #555;
  margin-bottom: 1em !important;
  border: solid #FDA 3px 1px 1px 3px;
  border-radius: 0 10px 10px 10px;
}

Not needed -moz-border-radius since Firefox 4 and -webkit-border-radius since Safari 5 (and because it is purely cosmetic flourishes anyway you can drop those safely without any ill effects).

Last edited by philwareham (2011-11-28 12:35:18)

Offline

#28 2011-11-28 13:09:44

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,304

Re: Guests: 58, Users: 2. -- Pardon?

Bloke wrote:

You could just post your version here anyway. Some of us might prefer your colours;

Ah, well, let’s see ;)
My CSS is pretty dirty, but copying it over to Stylish surely won’t harm your poor foxes.

body {
    border-top: 16px solid #C7D3D8 !important;
    }
.pun a:link, 
.pun a:visited, 
.pun h2 a:link, 
.pun h2 a:visited, 
#brdmenu a:link, 
#brdmenu a:visited, 
li.maintenancelink a:link, 
li.maintenancelink a:visited, 
div.postmsg a:link, 
div.postmsg a:visited {
    color: #4A80BE !important;
    }
label {
    color: #4A80BE !important;
    }
.blockform {
    background: none repeat scroll 0 0 #F0F2F6 !important;
    }
tr.inew {
    background: none repeat scroll 0 0 #F0F2F6 !important;
    }
.inew + .tclcon {
    background: none repeat scroll 0 0 #F0F2F6 !important;
    }
.intd {
    margin-left: 7px !important;
    }
.blockpost {
    border-top:1px solid  #AEB7C0 !important;
    }
.pun blockquote {
    border-color: #D2D7DD !important;
    }
.pun code, .pun pre {
    background-color: #E0E4E9 !important;
    }
p.page-links a:link, 
p.page-links a:visited, 
p.pagelink a:link, 
p.pagelink a:visited {
    background: none repeat scroll 0 0 #F0F2F6 !important;
    }

What I completely left out here is the desparate attempt to colour submits/buttons in TXP/Hive-style yellow. I pulled my hair out over it and just ended in square buttons, system style :/ I absolutely concur with Destry about the importance of yellow for the TXP brand. And cause I removed yellow from Tabula rasa’s head stripe in favour of the mothership style (OK, something around that, with the necessary respect to David DeSandro) I thought a nice spot could be the buttons, they’re on each page and they’re always above the fold when opening a page.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#29 2011-11-28 13:23:48

philwareham
Core designer
From: Haslemere, Surrey, UK
Registered: 2009-06-11
Posts: 3,564
Website GitHub Mastodon

Re: Guests: 58, Users: 2. -- Pardon?

Re: buttons – I’ve actually dialled back the yellow buttons in my new theme/structure proposal (in progress). The Hive theme has taken a back seat for the moment while I do more important projects (though I may roll some of of the newer theme styling back into it at some point). So I don’t think you need worry about trying to match any existing site stuff to it.

Last edited by philwareham (2011-11-28 13:24:26)

Offline

#30 2011-11-28 13:59:39

Bloke
Developer
From: Leeds, UK
Registered: 2006-01-29
Posts: 11,271
Website GitHub

Re: Guests: 58, Users: 2. -- Pardon?

uli wrote:

My CSS is pretty dirty, but copying it over to Stylish surely won’t harm your poor foxes.

I see. The same, just… bluer. You’re right that splashes of yellow wouldn’t go amiss.


The smd plugin menagerie — for when you need one more gribble of power from Textpattern. Bleeding-edge code available on GitHub.

Txp Builders – finely-crafted code, design and Txp

Offline

#31 2011-11-28 14:07:33

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,304

Re: Guests: 58, Users: 2. -- Pardon?

philwareham wrote:

Re: buttons […] So I don’t think you need worry about trying to match any existing site stuff to it.

Me, worry?

textpattern.com also has that yellow button, and it’s cool and nice. My CSS still lacks the yellow. Sadly, it needed somebody’s intervention. After several attempts and researches I gave up on yellow forum buttons. Still need my hair.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#32 2011-12-02 10:14:10

wet
Developer Emeritus
From: Schoerfling, Austria
Registered: 2005-06-06
Posts: 3,323
Website Mastodon

Re: Guests: 58, Users: 2. -- Pardon?

philwareham wrote:

Just a few amends to the stylesheet …would probably make the forum fluid.

Done, with a bit of max-width added for the sake of my poor neck spine.

Offline

#33 2011-12-02 10:55:55

Destry
Member
From: Haut-Rhin
Registered: 2004-08-04
Posts: 4,909
Website

Re: Guests: 58, Users: 2. -- Pardon?

Nice. If the font-sizes were bumped up just a bit, I’d say we have a winner for a while.

And I’m glad for the classic look. Thanks!

Offline

#34 2011-12-02 12:58:39

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,304

Re: Guests: 58, Users: 2. -- Pardon?

Another winner: Results after last days changes :) I can’t remember when I last saw more than 10 logged-in users! Probably years back.
Topics with new postings: from around 12 up to 22. Phew!

Thanks to all involved, with ideas or coding!

Also nice to have a figurehead of a forum theme by a pretty well known man. We could mention David DeSandro as the creator in the footer, btw.

One small kink that’s easily ironed out: overlapping links in the footer of index.php.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#35 2011-12-02 13:09:15

redbot
Plugin Author
Registered: 2006-02-14
Posts: 1,410

Re: Guests: 58, Users: 2. -- Pardon?

uli wrote:

… We could mention David DeSandro as the creator in the footer, btw.

+1

…One small kink that’s easily ironed out: overlapping links in the footer of index.php.

+1

Offline

#36 2011-12-04 14:46:18

philwareham
Core designer
From: Haslemere, Surrey, UK
Registered: 2009-06-11
Posts: 3,564
Website GitHub Mastodon

Re: Guests: 58, Users: 2. -- Pardon?

wet wrote:

Done, with a bit of max-width added for the sake of my poor neck spine.

Hi Robert,

Can you tweak the forum min-width rule just little a bit? Maybe to 580px.

Offline

Board footer

Powered by FluxBB