diff --git a/docs/source/docs/background-size.blade.md b/docs/source/docs/background-size.blade.md index d8c591b93..521ff8913 100644 --- a/docs/source/docs/background-size.blade.md +++ b/docs/source/docs/background-size.blade.md @@ -11,31 +11,17 @@ features: @include('_partials.work-in-progress') -
| Class | -Properties | -Description | -
|---|---|---|
| .bg-cover | -background-size: cover; | -Scale the image until it fills the background layer. | -
| .bg-contain | -background-size: contain; | -Scale the image to the outer edges without cropping or stretching. | -
| Class | -Properties | -Description | -
|---|---|---|
| .border-{{ $name }} | -border-color: {{ $value }}; | -Set the border color of an element to {{ implode(' ', array_reverse(explode('-', $name))) }}. | -
| Class | -Properties | -Description | -
|---|---|---|
| .border-solid | -border-style: solid; | -Sets the border style on an element to solid. | -
| .border-dashed | -border-style: dashed; | -Sets the border style on an element to dashed. | -
| .border-dotted | -border-style: dotted; | -Sets the border style on an element to dotted. | -
| .border-none | -border-style: none; | -Disables the border on an element. | -
| Class | -Properties | -Description | -
|---|---|---|
| .cursor-auto | -cursor: auto; | -Set the mouse cursor to the default browser behavior. | -
| .cursor-pointer | -cursor: pointer; | -Set the mouse cursor to a pointer and indicate a link. | -
| .cursor-not-allowed | -cursor: not-allowed; | -Set the mouse cursor to indicate that the action will not be executed. | -
| Class | -Properties | -Description | -
|---|---|---|
| .content-start | -align-content: flex-start; | -Pack lines against the start of the cross axis. | -
| .content-center | -align-content: center; | -Pack lines in the center of the cross axis. | -
| .content-end | -align-content: flex-end; | -Pack lines against the end of the cross axis. | -
| .content-between | -align-content: space-between; | -Distribute lines along the cross axis by adding an equal amount of space between each line. | -
| .content-around | -align-content: space-around; | -Distribute lines along the cross axis by adding an equal amount of space around each line. | -
| Class | -Properties | -Description | -
|---|---|---|
| .items-stretch | -align-items: flex-stretch; | -Stretch items to fill the cross axis. | -
| .items-start | -align-items: flex-start; | -Align items against the start of the cross axis. | -
| .items-center | -align-items: center; | -Align items along the center of the cross axis. | -
| .items-end | -align-items: flex-end; | -Align items against the end of the cross axis. | -
| .items-baseline | -align-items: baseline; | -Align the baselines of each item. | -
| Class | -Properties | -Description | -
|---|---|---|
| .self-auto | -align-self: auto; | -Align item based on the container's align-items property. |
-
| .self-start | -align-self: flex-start; | -Align item against the start of the cross axis. | -
| .self-center | -align-self: center; | -Align item along the center of the cross axis. | -
| .self-end | -align-self: flex-end; | -Align item against the end of the cross axis. | -
| .self-stretch | -align-self: stretch; | -Stretch item to fill the cross axis. | -
align-items property.",
+ ],
+ [
+ '.self-start',
+ 'align-self: flex-start;',
+ "Align item against the start of the cross axis.",
+ ],
+ [
+ '.self-center',
+ 'align-self: center;',
+ "Align item along the center of the cross axis.",
+ ],
+ [
+ '.self-end',
+ 'align-self: flex-end;',
+ "Align item against the end of the cross axis.",
+ ],
+ [
+ '.self-stretch',
+ 'align-self: stretch;',
+ "Stretch item to fill the cross axis.",
+ ],
+ ]
+])
### Auto Default
diff --git a/docs/source/docs/flexbox-direction.blade.md b/docs/source/docs/flexbox-direction.blade.md
index 2df29a466..a449cfe0c 100644
--- a/docs/source/docs/flexbox-direction.blade.md
+++ b/docs/source/docs/flexbox-direction.blade.md
@@ -9,39 +9,30 @@ features:
focus: false
---
-| Class | -Properties | -Description | -
|---|---|---|
| .flex-row | -flex-direction: row; | -Position flex items in the normal horizontal direction. | -
| .flex-row-reverse | -flex-direction: row-reverse; | -Position flex items in the reverse horizontal direction. | -
| .flex-col | -flex-direction: column; | -Position flex items vertically. | -
| .flex-col-reverse | -flex-direction: column-reverse; | -Position flex items vertically in the reverse direction. | -
| Class | -Properties | -Description | -
|---|---|---|
| .flex | -display: flex; | -Create a block-level flex container. | -
| .inline-flex | -display: inline-flex; | -Create an inline flex container. | -
| Class | -Properties | -Description | -
|---|---|---|
| .flex-initial | -flex: initial; | -Allow a flex item to shrink but not grow, taking into account its initial size. | -
| .flex-1 | -flex: 1; | -Allow a flex item to grow and shrink as needed, ignoring its initial size. | -
| .flex-auto | -flex: auto; | -Allow a flex item to grow and shrink, taking into account its initial size. | -
| .flex-none | -flex: none; | -Prevent a flex item from growing or shrinking. | -
| .flex-grow | -flex-grow: 1; | -Allow a flex item to grow to fill any available space. | -
| .flex-shrink | -flex-shrink: 1; | -Allow a flex item to shrink if needed. | -
| .flex-no-grow | -flex-grow: 0; | -Prevent a flex item from growing. | -
| .flex-no-shrink | -flex-shrink: 0; | -Prevent a flex item from shrinking. | -
| Class | -Properties | -Description | -
|---|---|---|
| .justify-start | -justify-content: flex-start; | -Justify items against the start of the container. | -
| .justify-center | -justify-content: center; | -Justify items in the center of the container. | -
| .justify-end | -justify-content: flex-end; | -Justify items against the end of the container. | -
| .justify-between | -justify-content: space-between; | -Justify items by adding an equal amount of space between each one. | -
| .justify-around | -justify-content: space-around; | -Justify items by adding an equal amount of space around each one. | -
| Class | -Properties | -Description | -
|---|---|---|
| .flex-no-wrap | -flex-wrap: nowrap; | -Don't allow flex items to wrap. | -
| .flex-wrap | -flex-wrap: wrap; | -Allow flex items to wrap in the normal direction. | -
| .flex-wrap-reverse | -flex-wrap: wrap-reverse; | -Allow flex items to wrap in the reverse direction. | -
| Class | -Properties | -Description | -
|---|---|---|
| .appearance-none | -appearance: none; | -Remove any special styling applied to an element by the browser. | -
| Class | -Properties | -Description | -
|---|---|---|
| .list-reset | -
- list-style: none; - margin: 0; - padding: 0; - |
- Disable default browser styling for list elements. | -
| Class | -Properties | -Description | -
|---|---|---|
| .opacity-100 | -opacity: 1; | -Set the opacity of an element to 100%. | -
| .opacity-75 | -opacity: .75; | -Set the opacity of an element to 75%. | -
| .opacity-50 | -opacity: .5; | -Set the opacity of an element to 50%. | -
| .opacity-25 | -opacity: .25; | -Set the opacity of an element to 25%. | -
| .opacity-0 | -opacity: 0; | -Set the opacity of an element to 0%. | -
| Class | -Properties | -Description | -
|---|---|---|
| .overflow-visible | -overflow: visible; | -Don't clip content that overflows the element. | -
| .overflow-auto | -overflow: auto; | -Add scrollbars to an element if needed. | -
| .overflow-hidden | -overflow: hidden; | -Clip any content that overflows the element. | -
| .overflow-x-scroll | -overflow-x: auto; | -Allow horizontal scrolling if needed. | -
| .overflow-y-scroll | -overflow-y: auto; | -Allow vertical scrolling if needed. | -
| .overflow-scroll | -overflow: scroll; | -Add scrollbars to an element. | -
| .scrolling-touch | --webkit-overflow-scrolling: touch; | -Use momentum-based scrolling on touch devices. | -
| .scrolling-auto | --webkit-overflow-scrolling: auto; | -Use "regular" scrolling on touch devices. | -
| Class | -Properties | -Description | -
|---|---|---|
| .pointer-events-none | -pointer-events: none; | -Make element not react to pointer events, like :hover or click. |
-
| .pointer-events-auto | -pointer-events: auto; | -Make element react to pointer events, like :hover or click. |
-
:hover or click.",
+ ],
+ [
+ '.pointer-events-auto',
+ 'pointer-events: auto;',
+ "Make element react to pointer events, like :hover or click.",
+ ],
+ ]
+])
diff --git a/docs/source/docs/positioning.blade.md b/docs/source/docs/positioning.blade.md
index d8784c09f..554434052 100644
--- a/docs/source/docs/positioning.blade.md
+++ b/docs/source/docs/positioning.blade.md
@@ -9,87 +9,65 @@ features:
focus: false
---
-| Class | -Properties | -Description | -
|---|---|---|
| .static | -position: static; | -Position an element according to the normal flow of the document. | -
| .fixed | -position: fixed; | -Position an element relative to the browser window. | -
| .absolute | -position: absolute; | -Position an element outside of the normal flow of the document, causing neighboring elements to act as if the element doesn't exist. | -
| .relative | -position: relative; | -Position an element according to the normal flow of the document. | -
| .pin-t | -top: 0; | -Anchor absolutely positioned element to the top edge of the nearest positioned parent. | -
| .pin-r | -right: 0; | -Anchor absolutely positioned element to the right edge of the nearest positioned parent. | -
| .pin-b | -bottom: 0; | -Anchor absolutely positioned element to the bottom edge of the nearest positioned parent. | -
| .pin-l | -left: 0; | -Anchor absolutely positioned element to the left edge of the nearest positioned parent. | -
| .pin-y | -
- top: 0; - bottom: 0; - |
- Anchor absolutely positioned element to the top and bottom edges of the nearest positioned parent. | -
| .pin-x | -
- right: 0; - left: 0; - |
- Anchor absolutely positioned element to the left and right edges of the nearest positioned parent. | -
| .pin | -
- top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - |
- Anchor absolutely positioned element to all the edges of the nearest positioned parent. | -
| Class | -Properties | -Description | -
|---|---|---|
| .resize-none | -resize: none; | -Make a textarea not resizable. | -
| .resize-y | -resize: vertical; | -Make a textarea resizable vertically. | -
| .resize-x | -resize: horizontal; | -Make a textarea resizable horizontally. | -
| Class | -Properties | -Description | -
|---|---|---|
| .shadow | -box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10); | -Apply a small box shadow to an element. | -
| .shadow-md | -box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08); | -Apply a medium box shadow to an element. | -
| .shadow-lg | -box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08); | -Apply a large box shadow to an element. | -
| .shadow-inner | -box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06); | -Apply a small inner box shadow to an element. | -
| .shadow-none | -box-shadow: none; | -Remove a box shadow from an element. | -
| Class | -Properties | -Description | -
|---|---|---|
| .select-none | -user-select: none; | -Disable selecting text in an element. | -
| .select-text | -user-select: text; | -Allow selecting text in an element. | -