Code Monkey home page Code Monkey logo

pbt-wild-side's Introduction

The Wild Side

Preview

The Wild Side is a deep gray-blue theme with light blue accents and a boxy layout, built on commission for use with the free forum software ProBoards. It features a sticky navigation menu, tabbed flexbox welcome table, and support for a number of plugins. Developed using my v5 theme base, cast.

Use

This theme is intended for private use and may not be used in any other respect without my express written permission. You are free to view the code, however.

Included

  1. Support for the Monetary System plugin
  2. Support for the Board Description Images plugin
  3. Support for a customized version of the Dynamically Tabbed Table plugin
  4. Support for a customized version of the User Legend plugin
  5. Smangii's ClearUBBC icons
  6. Font Awesome icon glyphs

Remodels

  1. Navigation menu
  2. Board List
  3. Info Center
  4. Thread/Conversations List
  5. Post/Messages List
  6. Mini Profile
  7. User Profile
  8. Edit User Profile
  9. Member Page

Acknowledgements

Special thanks to Smangii for his ClearUBBC icons.

pbt-wild-side's People

Contributors

ellimccale avatar

Stargazers

 avatar

Watchers

 avatar

pbt-wild-side's Issues

Dialogs need updated modal code

Dialogs need the updated modal script from GamingBoards that sets the overlay to true.

Also add the updated dialog CSS from GamingBoards.

<script>
$(document).ready(function() {
    /**
      * jQuery UI Dialog changes
      * Has to be in `<head>` to load in the right order.
      *
      * 1. 180= Approximation of height of dialog padding, title bar, and footer
      * 2. Manually set `max-height` of dialog content because CSS `vh` unit
      *    doesn't work as I'd like it to on mobile browsers
      * 3. Create darkened overlay behind dialogs
      * 4. Offset positioning for top bar
      */
    (function darkenDialogOverlay() {
        var open_ref = $.ui.dialog.prototype.open;
        var trueViewportHeight = window.innerHeight - 180; // 1

        $.ui.dialog.prototype.open = function(){
            $('.ui-dialog div.ui-dialog-content').css('max-height', (trueViewportHeight + 'px')); // 2

            this.options.modal = true; // 3
            this.options.position = { offset: "0 27px" }; // 4

            open_ref.apply(this, arguments);
        }
    })();
});
</script>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.