@include foundation-prototype-display;
@include foundation-prototype-position;
@include foundation-prototype-border-box;
+@include foundation-prototype-border-none;
@include foundation-prototype-sizing;
@include foundation-prototype-spacing;
```
---
+## Border none
+
+Border none lets you quickly resets border to `none` into a component.
+
+```html_example
+<div class="callout primary border-none">
+ Hi! I am a callout with no Borders
+</div>
+```
+
+---
+
## Display Classes
Display classes helps to display the elements in specific positions inside any other HTML elements.
// Licensed under MIT Open Source
////
-/// @group prototype-bordered
+/// @group prototype-border-box
////
/// Responsive breakpoints for border box.
--- /dev/null
+// Foundation for Sites by ZURB
+// foundation.zurb.com
+// Licensed under MIT Open Source
+
+////
+/// @group prototype-border-none
+////
+
+/// Responsive breakpoints for border none.
+/// @type Boolean
+$prototype-border-none-breakpoints: $global-prototype-breakpoints !default;
+
+/// Border none utility
+@mixin border-none {
+ border: none !important;
+}
+
+@mixin foundation-prototype-border-none {
+ .border-none {
+ @include border-none;
+ }
+
+ @if ($prototype-border-none-breakpoints) {
+ // Loop through Responsive Breakpoints
+ @each $size in $breakpoint-classes {
+ @include breakpoint($size) {
+ @if $size != $-zf-zero-breakpoint {
+ .#{$size}-border-none {
+ @include border-none;
+ }
+ }
+ }
+ }
+ }
+}
// Border box
@import 'border-box';
+// Border none Utilty
+@import 'border-none';
+
// Sizing Utilities
@import 'sizing';
@include foundation-prototype-display;
@include foundation-prototype-position;
@include foundation-prototype-border-box;
+ @include foundation-prototype-border-none;
@include foundation-prototype-sizing;
@include foundation-prototype-spacing;
}