Changeset 11282
- Timestamp:
- 12/09/2016 02:27:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/css/twentyseventeen.scss
r11275 r11282 13 13 14 14 // 2017 Media Queries / Breakpoints. 15 $small-up-2017: 'min-width: 30em';16 $med-small-up-2017: 'min-width: 48em';17 $medium-up-2017: 'min-width: 55em';18 $large-up-2017: 'min-width: 67em';19 $x-large-up-2017: 'min-width: 79em';15 $small-up-2017: "min-width: 30em"; 16 $med-small-up-2017: "min-width: 48em"; 17 $medium-up-2017: "min-width: 55em"; 18 $large-up-2017: "min-width: 67em"; 19 $x-large-up-2017: "min-width: 79em"; 20 20 21 21 … … 25 25 // to manage granular elements in loops etc. 26 26 27 $x-small-only-bp: 'max-width: 22em'; // for xtra small mobile only28 $small-only-bp: 'max-width: 38.75em'; // small only29 $small-up-bp: 'min-width: 38.75em'; // small only30 $med-only-bp: 'max-width: 46.25em'; // med small only27 $x-small-only-bp: "max-width: 22em"; // for xtra small mobile only 28 $small-only-bp: "max-width: 38.75em"; // small only 29 $small-up-bp: "min-width: 38.75em"; // small only 30 $med-only-bp: "max-width: 46.25em"; // med small only 31 31 32 32 // Mixins and Variables … … 40 40 41 41 @mixin x-small-only { 42 @media screen and ( $x-small-only-bp){42 @media screen and ($x-small-only-bp){ 43 43 @content; 44 44 } … … 46 46 47 47 @mixin small-only { 48 @media screen and ( $small-only-bp){48 @media screen and ($small-only-bp){ 49 49 @content; 50 50 } … … 52 52 53 53 @mixin medium-only-bp { 54 @media screen and ( $med-only-bp){54 @media screen and ($med-only-bp){ 55 55 @content; 56 56 } … … 58 58 59 59 @mixin small-up-bp { 60 @media screen and ( $small-up-bp){60 @media screen and ($small-up-bp){ 61 61 @content; 62 62 } … … 64 64 65 65 @mixin small-up { 66 @media screen and ( $small-up-2017){66 @media screen and ($small-up-2017){ 67 67 @content; 68 68 } … … 70 70 71 71 @mixin med-small-up { 72 @media screen and ( $med-small-up-2017) {72 @media screen and ($med-small-up-2017) { 73 73 @content; 74 74 } … … 76 76 77 77 @mixin medium-up { 78 @media screen and ( $medium-up-2017) {78 @media screen and ($medium-up-2017) { 79 79 @content; 80 80 } … … 82 82 83 83 @mixin large-up { 84 @media screen and ( $large-up-2017) {84 @media screen and ($large-up-2017) { 85 85 @content; 86 86 } … … 88 88 89 89 @mixin x-large-up { 90 @media screen and ( $x-large-up-2017) {90 @media screen and ($x-large-up-2017) { 91 91 @content; 92 92 } … … 347 347 } 348 348 349 body.buddypress:not(.has-sidebar),350 body.buddypress:not(.page-two-column) {349 body.buddypress:not(.has-sidebar), 350 body.buddypress:not(.page-two-column) { 351 351 352 352 #primary.content-area { … … 2032 2032 height: 3em; 2033 2033 2034 @include small-only {2034 @include small-only { 2035 2035 height: 5.2em; 2036 2036 } … … 2576 2576 } // close #buddypress 2577 2577 2578 // Without direct classes on our mesages ( 'warning' 2578 // Without direct classes on our mesages ( 'warning') 2579 2579 // we need to use the body classes 2580 2580 // todo: If this is class .warning is included in main BP styles remove from here
Note: See TracChangeset
for help on using the changeset viewer.