Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/10/2015 06:36:58 PM (10 years ago)
Author:
hnla
Message:

Updates to Twentyfourteen & Twentyfifteen scss files
General updates for both files to ensure uniform message notice elements rulesets; adjust colors.
update user item action buttons for small screens Twentyfourteen.
See #6338 See #6291

File:
1 edited

Legend:

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

    r9859 r9861  
    129129$notice-warning:     #d05656;
    130130$notice-info:        #9fd1e2;
    131 $notice-update:      #b1c157;
     131$notice-update:      #ced98c;
    132132$stripe-odd:         #ebf0ff;
    133133$stripe-even:        #dbe5ff;
     
    15141514
    15151515        #message-threads {
    1516             display: block;
    1517 
    15181516            thead {
    15191517                tr {
     
    18131811            }
    18141812        }
    1815 
    1816         div.message-search {margin-right: $spacing-val-sm;}
    18171813    } // close @media
    18181814
     
    19241920#buddypress {
    19251921    div#message {
     1922        p {
     1923            @include font-size(18);
     1924            font-weight: bold;
     1925        }
     1926
    19261927        &.info {
    19271928            p {
    1928                 @include message-box($notice-info);
    1929             }
    1930         }
    1931 
    1932         &.update {
     1929                @include message-box($notice-info, #fff);
     1930            }
     1931        }
     1932
     1933        &.updated {
    19331934            p {
    1934                 @include message-box($notice-update);
     1935                @include message-box($notice-update, #fff);
    19351936            }
    19361937        }
     
    19391940
    19401941} // close  #buddypress
     1942
     1943// Without direct classes on our mesages ( 'warning' )
     1944// we need to use the body classes
     1945// message args ($variable-color, text-color)
     1946// todo: If this is class .warning is included in main BP styles remove from here
     1947.delete-group {
     1948    #buddypress {
     1949        div#message.info {
     1950            p {
     1951                @include message-box($notice-warning, #fff);
     1952            }
     1953        }
     1954    }
     1955}
    19411956
    19421957/**
Note: See TracChangeset for help on using the changeset viewer.