From 613036f609a24a55aa521a47f6e55d72a6ef17f0 Mon Sep 17 00:00:00 2001 From: Matt Stauffer Date: Tue, 7 Nov 2017 16:27:03 -0500 Subject: [PATCH] Move feature badges into yaml --- docs/source/_layouts/documentation.blade.php | 4 ++++ docs/source/docs/background-color.blade.md | 12 +++++------- docs/source/docs/background-position.blade.md | 12 +++++------- docs/source/docs/background-size.blade.md | 12 +++++------- docs/source/docs/border-color.blade.md | 12 +++++------- docs/source/docs/border-radius.blade.md | 12 +++++------- docs/source/docs/border-style.blade.md | 12 +++++------- docs/source/docs/border-width.blade.md | 12 +++++------- docs/source/docs/cursor.blade.md | 12 +++++------- docs/source/docs/display.blade.md | 12 +++++------- docs/source/docs/flexbox-align-content.blade.md | 12 +++++------- docs/source/docs/flexbox-align-items.blade.md | 12 +++++------- docs/source/docs/flexbox-align-self.blade.md | 12 +++++------- docs/source/docs/flexbox-direction.blade.md | 12 +++++------- docs/source/docs/flexbox-display.blade.md | 12 +++++------- docs/source/docs/flexbox-flex-grow-shrink.blade.md | 12 +++++------- docs/source/docs/flexbox-justify-content.blade.md | 12 +++++------- docs/source/docs/flexbox-wrapping.blade.md | 12 +++++------- docs/source/docs/floats.blade.md | 12 +++++------- docs/source/docs/font-weight.blade.md | 12 +++++------- docs/source/docs/fonts.blade.md | 12 +++++------- docs/source/docs/forms.blade.md | 12 +++++------- docs/source/docs/height.blade.md | 12 +++++------- docs/source/docs/letter-spacing.blade.md | 12 +++++------- docs/source/docs/line-height.blade.md | 12 +++++------- docs/source/docs/lists.blade.md | 12 +++++------- docs/source/docs/max-height.blade.md | 12 +++++------- docs/source/docs/max-width.blade.md | 12 +++++------- docs/source/docs/min-height.blade.md | 12 +++++------- docs/source/docs/min-width.blade.md | 12 +++++------- docs/source/docs/opacity.blade.md | 12 +++++------- docs/source/docs/overflow.blade.md | 12 +++++------- docs/source/docs/pointer-events.blade.md | 12 +++++------- docs/source/docs/positioning.blade.md | 12 +++++------- docs/source/docs/resize.blade.md | 12 +++++------- docs/source/docs/shadows.blade.md | 12 +++++------- docs/source/docs/spacing.blade.md | 12 +++++------- docs/source/docs/text-alignment.blade.md | 12 +++++------- docs/source/docs/text-color.blade.md | 12 +++++------- docs/source/docs/text-sizing.blade.md | 12 +++++------- docs/source/docs/text-style.blade.md | 12 +++++------- docs/source/docs/user-select.blade.md | 12 +++++------- docs/source/docs/vertical-alignment.blade.md | 12 +++++------- docs/source/docs/visibility.blade.md | 12 +++++------- docs/source/docs/whitespace-and-wrapping.blade.md | 12 +++++------- docs/source/docs/width.blade.md | 12 +++++------- docs/source/docs/z-index.blade.md | 12 +++++------- 47 files changed, 234 insertions(+), 322 deletions(-) diff --git a/docs/source/_layouts/documentation.blade.php b/docs/source/_layouts/documentation.blade.php index b6a76bb90886..bd99e61ffdcf 100644 --- a/docs/source/_layouts/documentation.blade.php +++ b/docs/source/_layouts/documentation.blade.php @@ -198,6 +198,10 @@ @endif + @if($page->features) + @include('_partials.feature-badges', $page->features->toArray()) + @endif + @yield('content') diff --git a/docs/source/docs/background-color.blade.md b/docs/source/docs/background-color.blade.md index 6f4ba1444847..7092bfed5a45 100644 --- a/docs/source/docs/background-color.blade.md +++ b/docs/source/docs/background-color.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Background Color" description: "Utilities for controlling an element's background color." +features: + responsive: true + customizable: true + hover: true + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => true, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/background-position.blade.md b/docs/source/docs/background-position.blade.md index 3f0255b5f74f..3769d81e41d9 100644 --- a/docs/source/docs/background-position.blade.md +++ b/docs/source/docs/background-position.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Background Position" description: "Utilities for controlling the position of an element's background image." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/background-size.blade.md b/docs/source/docs/background-size.blade.md index 87f36146aaeb..2f21095aebdc 100644 --- a/docs/source/docs/background-size.blade.md +++ b/docs/source/docs/background-size.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Background Size" description: "Utilities for controlling the background size of an element's background image." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/border-color.blade.md b/docs/source/docs/border-color.blade.md index 13e3825fe9d2..91eb3086d06b 100644 --- a/docs/source/docs/border-color.blade.md +++ b/docs/source/docs/border-color.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Border Color" description: "Utilities for controlling the color of an element's borders." +features: + responsive: true + customizable: true + hover: true + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => true, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/border-radius.blade.md b/docs/source/docs/border-radius.blade.md index bb7410eea62f..5a8ac7a1d355 100644 --- a/docs/source/docs/border-radius.blade.md +++ b/docs/source/docs/border-radius.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Border Radius" description: "Utilities for controlling the border radius of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/border-style.blade.md b/docs/source/docs/border-style.blade.md index 522a4d752e2d..a58ba904e243 100644 --- a/docs/source/docs/border-style.blade.md +++ b/docs/source/docs/border-style.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Border Style" description: "Utilities for controlling the style of an element's borders." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/border-width.blade.md b/docs/source/docs/border-width.blade.md index e4da829206b8..e2f7b415d193 100644 --- a/docs/source/docs/border-width.blade.md +++ b/docs/source/docs/border-width.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Border Width" description: "Utilities for controlling the width an element's borders." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress') Add borders to any element using the `.border{-side?}{-width?}` syntax. diff --git a/docs/source/docs/cursor.blade.md b/docs/source/docs/cursor.blade.md index cbb097220ba9..afb2b664d129 100644 --- a/docs/source/docs/cursor.blade.md +++ b/docs/source/docs/cursor.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Cursor" description: "Utilities for controlling the cursor style when hovering over an element." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/display.blade.md b/docs/source/docs/display.blade.md index 99bf1449eed6..7e569df81120 100644 --- a/docs/source/docs/display.blade.md +++ b/docs/source/docs/display.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Display" description: "Utilities for controlling the display box type of an element." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/flexbox-align-content.blade.md b/docs/source/docs/flexbox-align-content.blade.md index 207cb5b81f85..3a06eb0d7f53 100644 --- a/docs/source/docs/flexbox-align-content.blade.md +++ b/docs/source/docs/flexbox-align-content.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Align Content" description: "Utilities for controlling how lines are positioned in multi-line flex containers." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-align-items.blade.md b/docs/source/docs/flexbox-align-items.blade.md index 5fb291cc6ac0..c461464545d5 100644 --- a/docs/source/docs/flexbox-align-items.blade.md +++ b/docs/source/docs/flexbox-align-items.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Align Items" description: "Utilities for controlling how flex items are positioned along a container's cross axis." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-align-self.blade.md b/docs/source/docs/flexbox-align-self.blade.md index e3cb4007bd43..0a1a96c75e55 100644 --- a/docs/source/docs/flexbox-align-self.blade.md +++ b/docs/source/docs/flexbox-align-self.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Align Self" description: "Utilities for controlling how an individual flex item is positioned along its container's cross axis." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-direction.blade.md b/docs/source/docs/flexbox-direction.blade.md index f842c2c9453f..66338080aced 100644 --- a/docs/source/docs/flexbox-direction.blade.md +++ b/docs/source/docs/flexbox-direction.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Flex Direction" description: "Utilities for controlling the direction of flex items." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-display.blade.md b/docs/source/docs/flexbox-display.blade.md index 4ac0b7fdc346..7a3ac7931444 100644 --- a/docs/source/docs/flexbox-display.blade.md +++ b/docs/source/docs/flexbox-display.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Flex Display" description: "Utilities for creating flex containers." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-flex-grow-shrink.blade.md b/docs/source/docs/flexbox-flex-grow-shrink.blade.md index 59264703536a..d8422ca127c7 100644 --- a/docs/source/docs/flexbox-flex-grow-shrink.blade.md +++ b/docs/source/docs/flexbox-flex-grow-shrink.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Flex, Grow, & Shrink" description: "Utilities for controlling how flex items grow and shrink." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-justify-content.blade.md b/docs/source/docs/flexbox-justify-content.blade.md index 2caad06fb28f..e95361ad0bd6 100644 --- a/docs/source/docs/flexbox-justify-content.blade.md +++ b/docs/source/docs/flexbox-justify-content.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Justify Content" description: "Utilities for controlling flex items are positioned along a container's main axis." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/flexbox-wrapping.blade.md b/docs/source/docs/flexbox-wrapping.blade.md index a23ed3fc337d..da2c3e773526 100644 --- a/docs/source/docs/flexbox-wrapping.blade.md +++ b/docs/source/docs/flexbox-wrapping.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Flex Wrapping" description: "Utilities for controlling how flex items wrap." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/floats.blade.md b/docs/source/docs/floats.blade.md index 3d2bd4a108c8..1f1e39532c0c 100644 --- a/docs/source/docs/floats.blade.md +++ b/docs/source/docs/floats.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Floats" description: "Utilities for controlling the wrapping of content around an element." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/font-weight.blade.md b/docs/source/docs/font-weight.blade.md index 287e0b8d5a22..f1d775d7f7de 100644 --- a/docs/source/docs/font-weight.blade.md +++ b/docs/source/docs/font-weight.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Font Weight" description: "Utilities for controlling the font weight of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/fonts.blade.md b/docs/source/docs/fonts.blade.md index 7bbc35c5a72f..c5d69942e749 100644 --- a/docs/source/docs/fonts.blade.md +++ b/docs/source/docs/fonts.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Font Families" description: "Utilities for controlling the font family of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/forms.blade.md b/docs/source/docs/forms.blade.md index ca3c7a93fa19..f5907dd3b732 100644 --- a/docs/source/docs/forms.blade.md +++ b/docs/source/docs/forms.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Forms" description: "Utilities for styling form controls." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/height.blade.md b/docs/source/docs/height.blade.md index fadc7de6867a..37775f60e456 100644 --- a/docs/source/docs/height.blade.md +++ b/docs/source/docs/height.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Height" description: "Utilities for setting the height of an element" +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/letter-spacing.blade.md b/docs/source/docs/letter-spacing.blade.md index 260779d0a98d..9fc57eb58d43 100644 --- a/docs/source/docs/letter-spacing.blade.md +++ b/docs/source/docs/letter-spacing.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Letter Spacing" description: "Utilities for controlling the tracking (letter spacing) of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/line-height.blade.md b/docs/source/docs/line-height.blade.md index 2d79a1ccab1c..e48300032b36 100644 --- a/docs/source/docs/line-height.blade.md +++ b/docs/source/docs/line-height.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Line Height" description: "Utilities for controlling the leading (line height) of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/lists.blade.md b/docs/source/docs/lists.blade.md index 8c717c586d7c..4490e2b15052 100644 --- a/docs/source/docs/lists.blade.md +++ b/docs/source/docs/lists.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Lists" description: "Utilities for controlling list styles." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/max-height.blade.md b/docs/source/docs/max-height.blade.md index d3666260613c..27ba0ad3a441 100644 --- a/docs/source/docs/max-height.blade.md +++ b/docs/source/docs/max-height.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Max-Height" description: "Utilities for setting the maximum height of an element" +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/max-width.blade.md b/docs/source/docs/max-width.blade.md index e040484f9d5b..d3c975fa045c 100644 --- a/docs/source/docs/max-width.blade.md +++ b/docs/source/docs/max-width.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Max-Width" description: "Utilities for setting the maximum width of an element" +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/min-height.blade.md b/docs/source/docs/min-height.blade.md index 4f21a066be49..e0864fc18efa 100644 --- a/docs/source/docs/min-height.blade.md +++ b/docs/source/docs/min-height.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Min-Height" description: "Utilities for setting the minimum height of an element" +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/min-width.blade.md b/docs/source/docs/min-width.blade.md index 05afdfeb2a80..75db9924e398 100644 --- a/docs/source/docs/min-width.blade.md +++ b/docs/source/docs/min-width.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Min-Width" description: "Utilities for setting the minimum width of an element" +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/opacity.blade.md b/docs/source/docs/opacity.blade.md index c54ae505685d..23b08bca1c92 100644 --- a/docs/source/docs/opacity.blade.md +++ b/docs/source/docs/opacity.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Opacity" description: "Utilities for controlling the opacity of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/overflow.blade.md b/docs/source/docs/overflow.blade.md index 5f053661da13..2fa5936f20d6 100644 --- a/docs/source/docs/overflow.blade.md +++ b/docs/source/docs/overflow.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Overflow" description: "Utilities for controlling how an element handles content that is too large for the container." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/pointer-events.blade.md b/docs/source/docs/pointer-events.blade.md index 076f77837812..e82a33824c2c 100644 --- a/docs/source/docs/pointer-events.blade.md +++ b/docs/source/docs/pointer-events.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Pointer Events" description: "Utilities for controlling whether an element responds to pointer events." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/positioning.blade.md b/docs/source/docs/positioning.blade.md index 0a0f109c3ebf..55fcf2e8fa37 100644 --- a/docs/source/docs/positioning.blade.md +++ b/docs/source/docs/positioning.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Positioning" descriptioj: "Utilities for controlling how an element is positioned in the DOM." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/resize.blade.md b/docs/source/docs/resize.blade.md index 763a758ae9b3..53cca821baef 100644 --- a/docs/source/docs/resize.blade.md +++ b/docs/source/docs/resize.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Resize" description: "Utilities for controlling the how a textarea can be resized." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/shadows.blade.md b/docs/source/docs/shadows.blade.md index a01db0034124..79084d01545c 100644 --- a/docs/source/docs/shadows.blade.md +++ b/docs/source/docs/shadows.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Shadows" description: "Utilities for controlling the box shadow of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/spacing.blade.md b/docs/source/docs/spacing.blade.md index fff97323c351..d69e80af1ed2 100644 --- a/docs/source/docs/spacing.blade.md +++ b/docs/source/docs/spacing.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Spacing" description: "Utilities for controlling an element's padding and margin." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress') Control an element's padding and margin using the `.p{side?}-{size}`, `.m{side?}-{size}`, and `.-m{side?}-{size}` utilities. diff --git a/docs/source/docs/text-alignment.blade.md b/docs/source/docs/text-alignment.blade.md index d85aeb5f14fe..e8172d42d52c 100644 --- a/docs/source/docs/text-alignment.blade.md +++ b/docs/source/docs/text-alignment.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Text Alignment" description: "Utilities for controlling the alignment of text." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/text-color.blade.md b/docs/source/docs/text-color.blade.md index 439cb052f834..25ee9b781d54 100644 --- a/docs/source/docs/text-color.blade.md +++ b/docs/source/docs/text-color.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Text Color" description: "Utilities for controlling the text color of an element." +features: + responsive: true + customizable: true + hover: true + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => true, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/text-sizing.blade.md b/docs/source/docs/text-sizing.blade.md index 982821b3de32..14f83e435db5 100644 --- a/docs/source/docs/text-sizing.blade.md +++ b/docs/source/docs/text-sizing.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Text Sizing" description: "Utilities for controlling the text size of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/text-style.blade.md b/docs/source/docs/text-style.blade.md index 5b1701db94e9..cf59b5f34fdc 100644 --- a/docs/source/docs/text-style.blade.md +++ b/docs/source/docs/text-style.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Style & Decoration" description: "Utilities for controlling the style of text." +features: + responsive: true + customizable: true + hover: true + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => true, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/user-select.blade.md b/docs/source/docs/user-select.blade.md index 11bbdecf9f57..fdc4441db3ab 100644 --- a/docs/source/docs/user-select.blade.md +++ b/docs/source/docs/user-select.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "User Select" description: "Utilities for controlling whether the user can select text in an element." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/vertical-alignment.blade.md b/docs/source/docs/vertical-alignment.blade.md index baccfce7b4d0..b5ab5e07c78a 100644 --- a/docs/source/docs/vertical-alignment.blade.md +++ b/docs/source/docs/vertical-alignment.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Vertical Alignment" description: "Utilities for controlling the vertical alignment of an inline or table-cell box." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/visibility.blade.md b/docs/source/docs/visibility.blade.md index eb0b79b2fd90..39e65b2671d5 100644 --- a/docs/source/docs/visibility.blade.md +++ b/docs/source/docs/visibility.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Visibility" description: "Utilities for controlling the visible of an element." +features: + responsive: true + customizable: false + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => false, - 'hover' => false, - 'focus' => false -]) -
diff --git a/docs/source/docs/whitespace-and-wrapping.blade.md b/docs/source/docs/whitespace-and-wrapping.blade.md index 3f771d2380ee..1c29beec9826 100644 --- a/docs/source/docs/whitespace-and-wrapping.blade.md +++ b/docs/source/docs/whitespace-and-wrapping.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Whitespace & Wrapping" description: "Utilities for controlling the whitespace and wrapping of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/width.blade.md b/docs/source/docs/width.blade.md index ff01c5f07a24..50c882f0d06d 100644 --- a/docs/source/docs/width.blade.md +++ b/docs/source/docs/width.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Width" description: "Utilities for setting the width of an element" +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) - @include('_partials.work-in-progress')
diff --git a/docs/source/docs/z-index.blade.md b/docs/source/docs/z-index.blade.md index 31a4ffb50b2e..0f5ed23906ad 100644 --- a/docs/source/docs/z-index.blade.md +++ b/docs/source/docs/z-index.blade.md @@ -2,15 +2,13 @@ extends: _layouts.documentation title: "Z-Index" description: "Utilities for controlling the stack order of an element." +features: + responsive: true + customizable: true + hover: false + focus: false --- -@include('_partials.feature-badges', [ - 'responsive' => true, - 'customizable' => true, - 'hover' => false, - 'focus' => false -]) -