Simplicity [Deleted]

Arty updated Simplicity with a new update entry:

Update for GFN Classifieds, AMS and XenPorta2, XenAtendo2 add-ons support

Changes:
  • Support for latest version of GFN Classifieds add-on
  • Support for latest version of Article Management System add-on
  • Support for latest versions of XenPorta2 Pro and XenAtendo 2 Pro add-ons
If you are not using any of those add-ons, no need to update style.

To update style from previous version import new XML file. Other files were not changed.

Read the rest of this update entry...
 
Hi there,

Ive updated the package to the latest release but im still having a issue with it and xenporta.

When I post a poll using the xenporta widget my polls look like this

15cftsi.png


As you can see the text is all messed up. Any solution for this?

Thanks
 
Last edited:
Thanks for noticing, its a bug in style.

Append this to polls.css
Code:
/* Sidebar */
.sidebar .pollBlock .pollResult .optionText
{
}

.sidebar .pollBlock .pollResult:first-child .optionText
{
   border-top: none;
}

.sidebar .pollBlock .pollResult .optionText,
.sidebar .pollBlock .pollResult div,
.sidebar .pollBlock .pollResult h3
{
   display: block;
}

.sidebar .pollBlock .pollResult .barCell
{
   padding: 0;
   clear: both;
}

.sidebar .pollBlock .pollResult .barCell,
.sidebar .pollBlock .pollResult .count,
.sidebar .pollBlock .pollResult .percentage
{
   display: inline-block;
   font-size: 11px;
}

   .sidebar .pollBlock .pollResult .count,
   .sidebar .pollBlock .pollResult .percentage
   {
     width: auto;
   }

   .sidebar .pollBlock .pollResult .votedIconCell
   {
     float: left;
   }

     .sidebar .pollBlock .pollResult .votedIconCell + .optionText
     {
       margin-left: 16px;
     }
Same fix will be included in next update.
 
Arty updated Simplicity with a new update entry:

XenForo 1.5.8 update

Changes:
  • Support for XenForo 1.5.8
  • Support for XenForo Media Gallery 1.1.7
  • Support for latest versions of AMS and Showcase add-ons
  • New options for breadcrumbs: hide quick navigation button, hide breadcrumb on forum index. Both options can be found in style properties -> breadcrumbs.
To update from previous version import new XML file. Other files were not changed.

Read the rest of this update entry...
 
Arty updated Simplicity with a new update entry:

XenForo 1.5.9 update

Style has been updated for XenForo 1.5.9

This update is not required. Style for 1.5.8 will work correctly with 1.5.9 but will display few notices about outdated templates. You can ignore those notices and keep using old version.

Other changes in update:
  • Compatibility with latest version of Showcase add-on
  • Compatibility with latest version of Article Management System add-on
To update from previous version import new xml file. Other files were not changed.

Read the rest of this update entry...
 
Arty updated Simplicity with a new update entry:

XenForo 1.5.11 update, vastly improved support for third party add-ons

Style has been updated for XenForo 1.5.11 and XenForo Media Gallery 1.1.10

While its a minor XenForo update, there have been many changes to style.


Improved support for third party add-ons

Until this release all styles included template for third party add-ons by supplying modified templates with style. For example, to support Showcase add-on, styles included edited versions of nflj_showcase_reviews.css, nflj_showcase_layout_list_view_item.css and other templates. XenForo styles...

Read the rest of this update entry...
 
Hello,

I don't know why, but forum icons (like "closed thread" or "sticky thread") appear centered (instead of right) and stack on top of each other. I have tried manipulating some style options without any success.

Could anyone be the knight in shining armor that comes to the rescue? Would be really appreciated if so.

Regards,
 

Attachments

  • upload_2017-2-26_14-21-49.webp
    upload_2017-2-26_14-21-49.webp
    39 KB · Views: 4
Looks like you've reverted some style properties or some add-on overwrote it. More specifically, property "dicussionListIcon"
 
Looks like you've reverted some style properties or some add-on overwrote it. More specifically, property "dicussionListIcon"
I've tried changing some values, but nothing happened. This is the CSS code:
Code:
".discussionListItem .iconKey span
    {
      @property "dicussionListIcon";
      margin-left: 5px;
      text-indent: -10000em;
      float: right;
      background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat 10000px 0;
      width: 16px;
      height: 16px;
      @property "/dicussionListIcon";
    }

      .discussionListItem .iconKey span:after
      {
        @property "dicussionListIconAfter";
        font-size: 15px;
        font-family: 'FontAwesome';
        content: '\f013';
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        text-indent: 0;
        line-height: 1em;
        pointer-events: none;
        @property "/dicussionListIconAfter";
      }
    
      .discussionListItem .iconKey .sticky:after { content: '\e336'; font-family: 'Glyphicons Regular', 'Glyphicons'; font-size: 13px; }
      .discussionListItem .iconKey .starred:after { content: '\f005'; color: @secondaryMedium; }
      .discussionListItem .iconKey .watched:after { content: '\f058'; }
      .discussionListItem .iconKey .locked:after { content: '\f023'; }
      .discussionListItem .iconKey .moderated:after { content: '\e271'; font-family: 'Glyphicons Regular', 'Glyphicons'; font-size: 12px; }
      .discussionListItem .iconKey .redirect:after { content: '\{xen:if '{$pageIsRtl}', 'f060', 'f061'}'; font-size: 14px; }
      .discussionListItem .iconKey .new:after { content: '\e246'; font-family: 'Glyphicons Regular', 'Glyphicons'; font-size: 12px; color: @secondaryMedium; }
      .discussionListItem .iconKey .deleted:after { content: '\f00d'; }"

I think that the problem lies in the "text-align: center", but deleting it only makes the icons disappear and I don't know how to proceed from there.
 
Last edited:
No, entire property is wrong. Its from default style, not from Simplicity style.

This is correct css:
Code:
       .discussionListItem .iconKey span
       {
           @property "dicussionListIcon";
           margin-left: 5px;
           color: @mutedTextColor;
           text-indent: -10000em;
           float: right;
           position: relative;
           width: 16px;
           height: 16px;
           @property "/dicussionListIcon";
       }
The rest of code is correct
 
No, entire property is wrong. Its from default style, not from Simplicity style.

This is correct css:
Code:
       .discussionListItem .iconKey span
       {
           @property "dicussionListIcon";
           margin-left: 5px;
           color: @mutedTextColor;
           text-indent: -10000em;
           float: right;
           position: relative;
           width: 16px;
           height: 16px;
           @property "/dicussionListIcon";
       }
The rest of code is correct
Oh, ok.

Thanks for your help!
 
Arty updated Simplicity with a new update entry:

XenForo 1.5.14 update

This is an optional update. Previous version will work fine with latest XenForo as long as you don't try to revert template "navigation". That is the only template that was updated, code changes in that template are completely optional.

Other changes:
  • Improved support for Article Management System add-on.
  • Quick search should look the same in Safari as it does in other browsers.
Artodia Styles Framework add-on included with style has been updated as well. If you are not...

Read the rest of this update entry...
 
This resource has been removed and is no longer available. The following reason was provided:
This resource has been deleted by XenForo Ltd. in line with our resource housekeeping criteria.
 
Top Bottom