As was foretold, we've added advertisements to the forums! If you have questions, or if you encounter any bugs, please visit this thread: https://forums.penny-arcade.com/discussion/240191/forum-advertisement-faq-and-reports-thread/
Options

Unofficial Forum Stylesheet - Ye Olde Style

2456715

Posts

  • Options
    EchoEcho ski-bap ba-dapModerator mod
    101 wrote: »
    Rorus Raz wrote: »
    Give in to the light.

    it burnssssss

    Like hygieeene

  • Options
    SurikoSuriko AustraliaRegistered User regular
    edited July 2012
    Updated the style. It's not perfect, but it works now.

    Spacing/padding needs a lot of work, and eventually I want to get the user ranks and things looking the way they did before.

    Suriko on
  • Options
    ArthilArthil Registered User regular
    Oh what the FUCK, my god damned EYES. Seriously don't see why we can't have the good ol' shades of blue and orange as the default. Shit, my retina right in the morning.

    PSN: Honishimo Steam UPlay: Arthil
  • Options
    NerdgasmicNerdgasmic __BANNED USERS regular
    looking pretty good, suriko. nice job

  • Options
    SurikoSuriko AustraliaRegistered User regular
  • Options
    -Tal-Tal Registered User regular
    Thanks, Suriko!

    PNk1Ml4.png
  • Options
    MegaMan001MegaMan001 CRNA Rochester, MNRegistered User regular
    Suriko wrote: »
    Updated just now to fix a couple of bugs I didn't catch on the first go.

    Thank you so much, Suriko!

    I am in the business of saving lives.
  • Options
    ArthilArthil Registered User regular
    Suriko wrote: »
    Updated just now to fix a couple of bugs I didn't catch on the first go.

    Out of curiosity Suriko, would you know what I'd need to change to make the white 'unread posts' marker on the left of threads/forums go away? I really don't need that when the forums are already sorted by darker colors for unread lighter for read.

    PSN: Honishimo Steam UPlay: Arthil
  • Options
    SurikoSuriko AustraliaRegistered User regular
    edited July 2012
    Arthil wrote: »
    Suriko wrote: »
    Updated just now to fix a couple of bugs I didn't catch on the first go.

    Out of curiosity Suriko, would you know what I'd need to change to make the white 'unread posts' marker on the left of threads/forums go away? I really don't need that when the forums are already sorted by darker colors for unread lighter for read.

    Ugly as shit (like the entire code at the moment), but here's the relevant section:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
       background-image: url('images/row-highlight-white.png'); 
       background-position: left center;
       background-repeat: repeat-y;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    .DiscussionsTable .Item.Read,
    .DiscussionsTable .Item.Read td.BigCount,
    .DiscussionsTable .Item.Read a {
       color: white !important;
       font-weight:normal !important;
    }
    .DiscussionsTable .HasNew {
       display: none;
    }
    .DiscussionsTable .CheckBoxColumn {
       padding: 4px 0 4px 10px !important;
    }
    .DiscussionName a.Title {
       font-family: Verdana !important;
       color: #FFFFFF !important;
       font-size: 13px !important;
       font-weight: bold !important;
       text-shadow: none !important;
       text-decoration:underline !important;
    }
    

    Edit: Probably the best way to do it would be:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
    background: none !important;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: none !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: none !important;
    }
    

    Suriko on
  • Options
    XeddicusXeddicus Registered User regular
    You are a god among men Suriko, truly.

  • Options
    SabreMauSabreMau ネトゲしよう 판다리아Registered User regular
    One quick note, links in forum text aren't underlined. In regular forum they're in blue text instead of black, but right now with the style active they look same as regular white text.

  • Options
    curly haired boycurly haired boy Your Friendly Neighborhood Torgue Dealer Registered User regular
    thanks a ton suriko :D

    RxI0N.png
    Registered just for the Mass Effect threads | Steam: click ^^^ | Origin: curlyhairedboy
  • Options
    BlueBlueBlueBlue Registered User regular
    surikowns

    CD World Tour status:
    Baidol Voprostein Avraham Thetheroo Taya Zerofill Effef Crimson King Lalabox Mortal Sky ASimPerson Sal Wiet Theidar Tynic Speed Racer Neotoma Goatmon ==>Larlar Munkus Beaver Day of the Bear miscellaneousinsanity Skull Man Delzhand Caulk Bite 6 Somestickguy
  • Options
    ArthilArthil Registered User regular
    Suriko wrote: »
    Arthil wrote: »
    Suriko wrote: »
    Updated just now to fix a couple of bugs I didn't catch on the first go.

    Out of curiosity Suriko, would you know what I'd need to change to make the white 'unread posts' marker on the left of threads/forums go away? I really don't need that when the forums are already sorted by darker colors for unread lighter for read.

    Ugly as shit (like the entire code at the moment), but here's the relevant section:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
       background-image: url('images/row-highlight-white.png'); 
       background-position: left center;
       background-repeat: repeat-y;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    .DiscussionsTable .Item.Read,
    .DiscussionsTable .Item.Read td.BigCount,
    .DiscussionsTable .Item.Read a {
       color: white !important;
       font-weight:normal !important;
    }
    .DiscussionsTable .HasNew {
       display: none;
    }
    .DiscussionsTable .CheckBoxColumn {
       padding: 4px 0 4px 10px !important;
    }
    .DiscussionName a.Title {
       font-family: Verdana !important;
       color: #FFFFFF !important;
       font-size: 13px !important;
       font-weight: bold !important;
       text-shadow: none !important;
       text-decoration:underline !important;
    }
    

    Edit: Probably the best way to do it would be:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
    background: none !important;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: none !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: none !important;
    }
    

    Your suggestion removes the color from unread posts x_x

    PSN: Honishimo Steam UPlay: Arthil
  • Options
    SurikoSuriko AustraliaRegistered User regular
    edited July 2012
    SabreMau wrote: »
    One quick note, links in forum text aren't underlined. In regular forum they're in blue text instead of black, but right now with the style active they look same as regular white text.
    Fixed and updated the style, update again and links should be back to the way they were. They also become orange on hover.

    Suriko on
  • Options
    SabreMauSabreMau ネトゲしよう 판다리아Registered User regular
    Yep, that got it.

  • Options
    SurikoSuriko AustraliaRegistered User regular
    Arthil wrote: »
    Suriko wrote: »
    Arthil wrote: »
    Suriko wrote: »
    Updated just now to fix a couple of bugs I didn't catch on the first go.

    Out of curiosity Suriko, would you know what I'd need to change to make the white 'unread posts' marker on the left of threads/forums go away? I really don't need that when the forums are already sorted by darker colors for unread lighter for read.

    Ugly as shit (like the entire code at the moment), but here's the relevant section:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
       background-image: url('images/row-highlight-white.png'); 
       background-position: left center;
       background-repeat: repeat-y;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    .DiscussionsTable .Item.Read,
    .DiscussionsTable .Item.Read td.BigCount,
    .DiscussionsTable .Item.Read a {
       color: white !important;
       font-weight:normal !important;
    }
    .DiscussionsTable .HasNew {
       display: none;
    }
    .DiscussionsTable .CheckBoxColumn {
       padding: 4px 0 4px 10px !important;
    }
    .DiscussionName a.Title {
       font-family: Verdana !important;
       color: #FFFFFF !important;
       font-size: 13px !important;
       font-weight: bold !important;
       text-shadow: none !important;
       text-decoration:underline !important;
    }
    

    Edit: Probably the best way to do it would be:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
    background: none !important;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: none !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: none !important;
    }
    

    Your suggestion removes the color from unread posts x_x

    Ah damn, it's getting late.

    Try this:
    @namespace url(http://www.w3.org/1999/xhtml);
    
    @-moz-document domain("forums.penny-arcade.com") {
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
    background-image: none !important;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background-image: none !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background-image: none !important;
    }
    }
    

  • Options
    ArthilArthil Registered User regular
    Suriko wrote: »
    Arthil wrote: »
    Suriko wrote: »
    Arthil wrote: »
    Suriko wrote: »
    Updated just now to fix a couple of bugs I didn't catch on the first go.

    Out of curiosity Suriko, would you know what I'd need to change to make the white 'unread posts' marker on the left of threads/forums go away? I really don't need that when the forums are already sorted by darker colors for unread lighter for read.

    Ugly as shit (like the entire code at the moment), but here's the relevant section:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
       background-image: url('images/row-highlight-white.png'); 
       background-position: left center;
       background-repeat: repeat-y;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: url('http://forums.penny-arcade.com/themes/pennyarcade/design/images/sprites.png') !important;
    background-position: 0 -0px !important;
    background-size: 5px 10000px !important;
    background-repeat: no-repeat !important;
    background-color: #092655 !important;
    }
    .DiscussionsTable .Item.Read,
    .DiscussionsTable .Item.Read td.BigCount,
    .DiscussionsTable .Item.Read a {
       color: white !important;
       font-weight:normal !important;
    }
    .DiscussionsTable .HasNew {
       display: none;
    }
    .DiscussionsTable .CheckBoxColumn {
       padding: 4px 0 4px 10px !important;
    }
    .DiscussionName a.Title {
       font-family: Verdana !important;
       color: #FFFFFF !important;
       font-size: 13px !important;
       font-weight: bold !important;
       text-shadow: none !important;
       text-decoration:underline !important;
    }
    

    Edit: Probably the best way to do it would be:
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
    background: none !important;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background: none !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background: none !important;
    }
    

    Your suggestion removes the color from unread posts x_x

    Ah damn, it's getting late.

    Try this:
    @namespace url(http://www.w3.org/1999/xhtml);
    
    @-moz-document domain("forums.penny-arcade.com") {
    /* I've read it */
    .DiscussionsTable .Item.Read td:first-child {
    background-image: none !important;
    }
    /* There are new messages since I last read it */
    .DiscussionsTable .Item.Unread td:first-child {
    background-image: none !important;
    }
    /* I've never read it */
    .DiscussionsTable .Item.New td:first-child {
    background-image: none !important;
    }
    }
    

    None of this is having any effect on it, admittedly I'm also guessing as to what I should replace. Wasn't sure if I needed to get rid of ALL of the "I've never read it" line for instance.

    PSN: Honishimo Steam UPlay: Arthil
  • Options
    cj iwakuracj iwakura The Rhythm Regent Bears The Name FreedomRegistered User regular
    Perfection. Thanks, Suriko. No blue/orange, no life.

    wVEsyIc.png
  • Options
    DhalphirDhalphir don't you open that trapdoor you're a fool if you dareRegistered User regular
    edited July 2012
    We got a way to get rid of the User tabs again yet?

    Dhalphir on
  • Options
    ArthilArthil Registered User regular
    Oh boy. And to add onto things, it appears that you cannot see the online/offline indicator below display pictures.

    PSN: Honishimo Steam UPlay: Arthil
  • Options
    SabreMauSabreMau ネトゲしよう 판다리아Registered User regular
    edited July 2012
    Search page is still showing black text on blue:
    43SlR.png

    SabreMau on
  • Options
    SurikoSuriko AustraliaRegistered User regular
    SabreMau wrote: »
    Search page is still showing black text on blue:
    43SlR.png

    Just updated again, should be fixed now.

  • Options
    ArthilArthil Registered User regular
    @Suriko Yeah it's not working, nothing I'm capable of seems to get rid of it. I really don't understand why we can't have a true PA theme instead of putting up with this.

    PSN: Honishimo Steam UPlay: Arthil
  • Options
    SabreMauSabreMau ネトゲしよう 판다리아Registered User regular
    Ok, that one's fixed. Now another odd behavior, this one with the New Thread button on the My Bookmarks page.

    mICaO.png

    Visible through the top thread if the top thread has been fully read. Covered up but still peeking around the edge if the top thread has unread posts:

    kaHuW.png

    The New Thread button down at the bottom of the page is still there and clear of any obstruction.

  • Options
    Sangheili91Sangheili91 Registered User regular
    Suriko is a god among men. Thank you so much!

  • Options
    SurikoSuriko AustraliaRegistered User regular
    SabreMau wrote: »
    Ok, that one's fixed. Now another odd behavior, this one with the New Thread button on the My Bookmarks page.

    mICaO.png

    Visible through the top thread if the top thread has been fully read. Covered up but still peeking around the edge if the top thread has unread posts:

    kaHuW.png

    The New Thread button down at the bottom of the page is still there and clear of any obstruction.

    Urgh, I just realised I didn't check either the Infractions page nor the Bookmarks page. Both have problems.

    Going to bed, will work on any bugs found tomorrow. At least it looks like the bugs manifesting on the main pages are gone.

  • Options
    chamberlainchamberlain Registered User regular
    This is awesome Suriko. My eyes thank you.

  • Options
    SeriouslySeriously Registered User regular
    I am always impressed with how quickly you address changes

  • Options
    IoloIolo iolo Registered User regular
    Thank you, Suriko!

    Lt. Iolo's First Day
    Steam profile.
    Getting started with BATTLETECH: Part 1 / Part 2
  • Options
    Johnny ChopsockyJohnny Chopsocky Scootaloo! We have to cook! Grillin' HaysenburgersRegistered User regular
    edited July 2012
    Oh man, this nearly fixes every problem I have with the new forums.

    Suriko is kinda awesome.

    Oh who am I kidding he's all the way awesome

    Johnny Chopsocky on
    ygPIJ.gif
    Steam ID XBL: JohnnyChopsocky PSN:Stud_Beefpile WiiU:JohnnyChopsocky
  • Options
    MegaMan001MegaMan001 CRNA Rochester, MNRegistered User regular
    Suriko, I've added you on Steam to show my thanks in a more...classy fashion.

    I am in the business of saving lives.
  • Options
    übergeekübergeek Sector 2814Registered User regular
    @Suriko You are the only reason I still bother with the forums, they know that color layout is terrible and should be ashamed. Every other PA tab is blue and orange, and every other site section like the report has properly contrasting colors so it's bearable to read. The PAX page is a little rough, but nothing like the forums.

    Thank you for taking the time to do this.

    camo_sig.png
  • Options
    captainkcaptaink TexasRegistered User regular
    Suriko continues to be awesome, thanks.

  • Options
    MegaMan001MegaMan001 CRNA Rochester, MNRegistered User regular
    Suriko, you gotta add stuff to your wishlist so I can class all over you.

    I am in the business of saving lives.
  • Options
    SnicketysnickSnicketysnick The Greatest Hype Man in WesterosRegistered User regular
    :^:

    All of the props for a heroic effort Suriko :)

    7qmGNt5.png
    D3 Steam #TeamTangent STO
  • Options
    skeldareskeldare Gresham, ORRegistered User regular
    Awesome!

    Nintendo Console Codes
    Switch (JeffConser): SW-3353-5433-5137 Wii U: Skeldare - 3DS: 1848-1663-9345
    PM Me if you add me!
    HAIL HYDRA
  • Options
    CheesecakeRecipeCheesecakeRecipe "Should not be allowed to post in the Steam Thread" - Isorn Squalor Victoria, Squalor Victoria!Registered User regular
    Your work is always appreciated, especially how fast you get on it after forum changeovers! Still don't understand how this isn't official by now.

  • Options
    Muse Among MenMuse Among Men Suburban Bunny Princess? Its time for a new shtick Registered User regular
    Thanks Suriko!

  • Options
    RamiusRamius Joined: July 19, 2000 Administrator, ClubPA admin
    Arthil wrote: »
    I really don't understand why we can't have a true PA theme instead of putting up with this.

    We have a true PA theme. It is the default one.

Sign In or Register to comment.