BP-Brown [Deleted]

Sean James

Well-known member
bp-brownbanner.webp

Sean James submitted a new resource:

BP-Brown - Brown free style with millions of colors!

View attachment 185023

Professional free XenForo 2 Skin.

* Unlimited colors admins can choose from millions using the Bluepearl Framework.
* Create multiple different colored skins in seconds.
* High quality SVG Icons using Font Awesome integration.
* Responsive layout works perfect in all resolutions.
* Detailed installation instructions with screenshots.
...

Read more about this resource...
 
Last edited:
can you in next update add font awesome icons for post thread

Code:
.actionBar-action--edit:before, .actionBar-action--report:before, .actionBar-action--ip:before, .actionBar-action--delete:before, .actionBar-action--spam:before, .actionBar-action--warn:before, .actionBar-action--history:before
 
can you in next update add font awesome icons for post thread

Code:
.actionBar-action--edit:before, .actionBar-action--report:before, .actionBar-action--ip:before, .actionBar-action--delete:before, .actionBar-action--spam:before, .actionBar-action--warn:before, .actionBar-action--history:before

When you say post thread you talking about the post thread page where you compose new messages? Do you have any examples?
 
this code

Code:
.actionBar-action--edit:before, .actionBar-action--report:before, .actionBar-action--ip:before, .actionBar-action--delete:before, .actionBar-action--spam:before, .actionBar-action--warn:before, .actionBar-action--history:before
{
display: inline-block;
font-family: FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
margin-right: 5px;
}
.actionBar-action--edit:before
{
content: "\f040";
}
.actionBar-action--report:before
{
content: "\f071";
}
.actionBar-action--ip:before
{
content: "\f002";
}
.actionBar-action--delete:before
{
content: "\f00d";
}
.actionBar-action--spam:before
{
content: "\f024";
}
.actionBar-action--warn:before
{
content: "\f12a";
}
.actionBar-action--history:before
{
content: "\f1da";
}

.block[data-widget-definition="new_posts"] .contentRow
{
margin-left: -15px;
margin-right: -15px;
}


.block[data-widget-definition="new_posts"] .block-row
{
border-top: 1px dotted #c9c9c9;
clear: both;
margin-left: 15px;
margin-right: 15px;
}
 
this code

Code:
.actionBar-action--edit:before, .actionBar-action--report:before, .actionBar-action--ip:before, .actionBar-action--delete:before, .actionBar-action--spam:before, .actionBar-action--warn:before, .actionBar-action--history:before
{
display: inline-block;
font-family: FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
margin-right: 5px;
}
.actionBar-action--edit:before
{
content: "\f040";
}
.actionBar-action--report:before
{
content: "\f071";
}
.actionBar-action--ip:before
{
content: "\f002";
}
.actionBar-action--delete:before
{
content: "\f00d";
}
.actionBar-action--spam:before
{
content: "\f024";
}
.actionBar-action--warn:before
{
content: "\f12a";
}
.actionBar-action--history:before
{
content: "\f1da";
}

.block[data-widget-definition="new_posts"] .contentRow
{
margin-left: -15px;
margin-right: -15px;
}


.block[data-widget-definition="new_posts"] .block-row
{
border-top: 1px dotted #c9c9c9;
clear: both;
margin-left: 15px;
margin-right: 15px;
}

Looks good I will look into this.
 
Sean James updated BP-Brown with a new update entry:

Updated 2.0.10 packages

Package has been updated to include 2 bug fixes:

  1. Hover CSS fixes for editor popups
  2. Pagination CSS fix
Changes can also be added manually by adding this to the extra.less template

Code:
.fr-popup .fr-image-upload-layer {
    background-color: #000;
}

.fr-popup {
    background-color: #202020;
}

.pageNav-page.pageNav-page--current {
    .xf-bpskins_bpbrown_categoryheader();
    color: #fff;
    border: 1px solid #565545;
}

.pageNav-jump {
    background-color...

Read the rest of this update entry...
 
Top Bottom