Changeset 9856
- Timestamp:
- 05/09/2015 08:44:25 AM (10 years ago)
- Location:
- trunk/src/bp-templates/bp-legacy/css
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/css/twentyfourteen-rtl.css
r9842 r9856 102 102 border: 1px solid rgba(0, 0, 0, 0.2); 103 103 border-bottom-color: #fff; 104 -webkit-border-top-left-radius: 4px; 104 105 border-top-left-radius: 4px; 106 -webkit-border-top-right-radius: 4px; 105 107 border-top-right-radius: 4px; 106 108 background-clip: padding-box; … … 248 250 display: block; } 249 251 #buddypress ul.item-list li .action div a { 252 -webkit-box-sizing: border-box; 253 -moz-box-sizing: border-box; 250 254 box-sizing: border-box; 251 255 display: block; … … 386 390 #buddypress .members .item-list .my-entry .item { 387 391 background: #f7f7f7; 392 -webkit-box-sizing: border-box; 393 -moz-box-sizing: border-box; 388 394 box-sizing: border-box; 389 395 padding: 0 0.5em; } -
trunk/src/bp-templates/bp-legacy/css/twentyfourteen.css
r9842 r9856 102 102 border: 1px solid rgba(0, 0, 0, 0.2); 103 103 border-bottom-color: #fff; 104 -webkit-border-top-right-radius: 4px; 104 105 border-top-right-radius: 4px; 106 -webkit-border-top-left-radius: 4px; 105 107 border-top-left-radius: 4px; 106 108 background-clip: padding-box; … … 248 250 display: block; } 249 251 #buddypress ul.item-list li .action div a { 252 -webkit-box-sizing: border-box; 253 -moz-box-sizing: border-box; 250 254 box-sizing: border-box; 251 255 display: block; … … 386 390 #buddypress .members .item-list .my-entry .item { 387 391 background: #f7f7f7; 392 -webkit-box-sizing: border-box; 393 -moz-box-sizing: border-box; 388 394 box-sizing: border-box; 389 395 padding: 0 0.5em; } -
trunk/src/bp-templates/bp-legacy/css/twentyfourteen.scss
r9842 r9856 38 38 } 39 39 40 // To allow mixins to pass VendorPrefix scss-lint tests we disable lint-test 41 // for specific blocks / rulesets 42 // until such time as exemption lists can be built for the scss-lint.yml? 43 // Any vendor prefix properties / mixins need to be in this block 44 // scss-lint:disable VendorPrefix 45 40 46 // Border border-radius mixins 41 // To allow mixins to pass cscc-lint tests we will not provide vendor prefix42 // until such time as exemption lists can be built for the scss-lint.yml43 44 47 @mixin border-radius($radius) { 45 //-webkit-border-radius: $radius;46 //-moz-border-radius: $radius;47 //-ms-border-radius: $radius;48 -webkit-border-radius: $radius; 49 -moz-border-radius: $radius; 50 -ms-border-radius: $radius; 48 51 border-radius: $radius; 49 52 background-clip: padding-box; … … 51 54 52 55 @mixin border-top-radius($radius) { 53 //-webkit-border-top-right-radius: $radius;56 -webkit-border-top-right-radius: $radius; 54 57 border-top-right-radius: $radius; 55 //-webkit-border-top-left-radius: $radius;58 -webkit-border-top-left-radius: $radius; 56 59 border-top-left-radius: $radius; 57 60 background-clip: padding-box; … … 59 62 60 63 @mixin border-right-radius($radius) { 61 //-webkit-border-bottom-right-radius: $radius;64 -webkit-border-bottom-right-radius: $radius; 62 65 border-bottom-right-radius: $radius; 63 //-webkit-border-top-right-radius: $radius;66 -webkit-border-top-right-radius: $radius; 64 67 border-top-right-radius: $radius; 65 68 background-clip: padding-box; … … 67 70 68 71 @mixin border-bottom-radius($radius) { 69 //-webkit-border-bottom-right-radius: $radius;72 -webkit-border-bottom-right-radius: $radius; 70 73 border-bottom-right-radius: $radius; 71 //-webkit-border-bottom-left-radius: $radius;74 -webkit-border-bottom-left-radius: $radius; 72 75 border-bottom-left-radius: $radius; 73 76 background-clip: padding-box; … … 75 78 76 79 @mixin border-left-radius($radius) { 77 //-webkit-border-bottom-left-radius: $radius;80 -webkit-border-bottom-left-radius: $radius; 78 81 border-bottom-left-radius: $radius; 79 //-webkit-border-top-left-radius: $radius;82 -webkit-border-top-left-radius: $radius; 80 83 border-top-left-radius: $radius; 81 84 background-clip: padding-box; … … 83 86 84 87 // Box sizing 85 86 88 @mixin box-model($box-model: border-box) { 87 //-webkit-box-sizing: $box-model;88 //-moz-box-sizing: $box-model;89 -webkit-box-sizing: $box-model; 90 -moz-box-sizing: $box-model; 89 91 box-sizing: $box-model; 90 92 } 93 94 // Calc 95 @mixin calc($property, $expression) { 96 #{$property}: -webkit-calc(#{$expression}); 97 #{$property}: -moz-calc(#{$expression}); 98 #{$property}: calc(#{$expression}); 99 } 100 101 // Re-enable the VendorPrefix lint test 102 // scss-lint:enable VendorPrefix 91 103 92 104 // BP message boxes
Note: See TracChangeset
for help on using the changeset viewer.