Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_Fabric.Utilities.scss 798B

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
  2. //
  3. // Office UI Fabric
  4. // --------------------------------------------------
  5. // Utility classes and mixins used throughout Fabric.
  6. @import "Fabric.Mixins";
  7. // The best box is a border box.
  8. @mixin ms-u-borderBox {
  9. box-sizing: border-box;
  10. }
  11. // Ensures the block expands to the full height to enclose its floated childen.
  12. @mixin ms-u-clearfix {
  13. *zoom: 1;
  14. &:before,
  15. &:after {
  16. display: table;
  17. content: "";
  18. line-height: 0;
  19. }
  20. &:after {
  21. clear: both;
  22. }
  23. }
  24. // Basic border-box, margin, and padding reset.
  25. @mixin ms-u-normalize {
  26. @include ms-u-borderBox;
  27. @include resetMargins;
  28. @include resetPadding;
  29. @include resetBoxShadow;
  30. }