Skip to:
Content

BuddyPress.org

Changeset 9008


Ignore:
Timestamp:
09/12/2014 09:27:31 PM (10 years ago)
Author:
djpaul
Message:

Activity: @mentions RTL fixes

The suggestions window was being stretched full width, due to the mentions.js only setting .left (after left had been set in the CSS), but in RTL, right had been set, causing a full-width window.

See #3278, #5855

Location:
trunk/src/bp-activity/css
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/css/mentions-rtl.css

    r9006 r9008  
    77    display: none;
    88    font-family: sans-serif;
    9     right: 0;
    109    margin-top: 18px;
    1110    position: absolute;
    1211    top: 0;
    1312    z-index: 1000; /* >999 for wp-admin */
     13}
     14/* @noflip */
     15.atwho-view {
     16    left: 0;
    1417}
    1518.atwho-view ul {
  • trunk/src/bp-activity/css/mentions.css

    r9006 r9008  
    77    display: none;
    88    font-family: sans-serif;
    9     left: 0;
    109    margin-top: 18px;
    1110    position: absolute;
    1211    top: 0;
    1312    z-index: 1000; /* >999 for wp-admin */
     13}
     14/* @noflip */
     15.atwho-view {
     16    left: 0;
    1417}
    1518.atwho-view ul {
Note: See TracChangeset for help on using the changeset viewer.