Making WordPress.org

Changeset 4647


Ignore:
Timestamp:
01/13/2017 12:10:22 AM (8 years ago)
Author:
coffee2code
Message:

Forums Theme: Backport [4639], which denotes resolved topics in better ways than prepending "[RESOLVED]" to topic titles.

Slight, but inconsequential, differences to the resolved indicator on single topic views.

See #2359.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style-rtl.css

    r4218 r4647  
    116116}
    117117
     118/* Resolved topics */
     119.topic-resolved-indicator {
     120    padding-left: 12px;
     121    padding-right: 6px;
     122    left: -3px;
     123    right: initial;
     124    border-bottom-right-radius: 6px;
     125}
     126
     127@media screen and ( max-width: 480px ) {
     128    .topic-resolved-indicator {
     129        left: -18px;
     130    }
     131}
     132
     133.resolved:before,
     134.topic-resolved-indicator:before {
     135    margin-left: 3px;
     136    float: right;
     137}
     138
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css

    r4216 r4647  
    283283}
    284284
     285/* Resolved topics */
     286.topic-resolved-indicator {
     287    background-color: #64b450;
     288    color: #fff;
     289    position: absolute;
     290    padding: 0 12px 0 6px;
     291    top: 0;
     292    right: -3px;
     293    border-bottom-left-radius: 6px;
     294}
     295
     296@media screen and ( max-width: 480px ) {
     297    .topic-resolved-indicator {
     298        top: -8px;
     299        right: -18px;
     300    }
     301}
     302
     303.resolved:before,
     304.topic-resolved-indicator:before {
     305    content: "\f147";
     306    color: #64b450; /*#46b450;*/
     307    font: normal 18px/1 'dashicons';
     308    margin-right: 3px;
     309    float: left;
     310    padding-top: 2px;
     311}
     312
     313.topic-resolved-indicator:before {
     314    color: #fff;
     315    font-size: 21px;
     316}
     317
     318.bbp-user-replies-created .bbp-topic-permalink {
     319    display: inline-block;
     320}
     321
    285322/* Font Size */
    286323#bbpress-forums,
Note: See TracChangeset for help on using the changeset viewer.