Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/05/2016 11:35:34 AM (9 years ago)
Author:
hnla
Message:

Companion Styles

Update all sheets for messages auto complete adjustments as added in twentytwelve.scss

See #6766#comment:10

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/css/twentythirteen.scss

    r10493 r10532  
    153153$stripe-even:        #dbe5ff;
    154154$unread:             #dce5ff;
     155$link-action:        #c82b2b;
    155156
    156157/*--------------------------------------------------------------
     
    19901991
    19911992        .acfb-holder {
     1993            list-style: none;
     1994            margin: 0;
     1995            padding: 0;
     1996
     1997            li {margin-left: 0;}
    19921998
    19931999            li.friend-tab {
     2000                background: lighten($notice-info, 20%);
     2001                border: inherit;
    19942002                margin-right: 0;
     2003                padding: 0.5em;
     2004
     2005                span.p {
     2006                    // the 'X' close
     2007                    padding-left: $spacing-val-sm;
     2008
     2009                    &:focus,
     2010                    &:hover {
     2011                        color: $link-action;
     2012                        cursor: pointer;
     2013                    }
     2014                }
    19952015
    19962016                a {
    19972017                    border-bottom: 0;
     2018                    text-decoration: none;
    19982019
    19992020                    img {
     
    20012022                        display: inline;
    20022023                        height: 20px;
    2003                         margin-right: 0.5em;
     2024                        vertical-align: middle;
    20042025                        width: 20px !important; // override inline style
    20052026                    }
     
    20252046        }
    20262047    } // close #buddypress
     2048
     2049    // acfb auto complete name list sits in doc footer before body close
     2050    .ac_results {
     2051        background: #eee;
     2052        padding-left: $spacing-val-sm;
     2053
     2054        ul {
     2055            list-style: none;
     2056            margin: 0;
     2057            padding: 0;
     2058        }
     2059
     2060        li {
     2061            margin: $spacing-val-sm 0;
     2062
     2063            &:focus,
     2064            &:hover {
     2065                cursor: pointer;
     2066            }
     2067        }
     2068    }
     2069
    20272070} // close .bp-user
    20282071
     
    23742417*-------------------------------------------------------------------------------
    23752418*/
    2376 
    2377 #buddypress {
    2378     .acfb-holder {
    2379 
    2380         li.friend-tab {
    2381             background: $notice-info;
    2382             border: inherit;
    2383         }
    2384     }
    2385 }
Note: See TracChangeset for help on using the changeset viewer.