Plugin Tabs noticias

This commit is contained in:
root
2026-04-14 13:50:04 -06:00
parent 299099d006
commit 19d08e5694
2334 changed files with 628926 additions and 113 deletions

View File

@@ -0,0 +1,269 @@
<?php
/*
Name: Components
Slug: components
Description: Define common padding and border radius sizes and more.
Position: 10
Theme:
*/
$slug = AREOI__PREPEND . ( !empty( $section ) ? '-' . $section : '' ) . '-components-';
return array(
array(
'label' => 'Borders',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$border-width',
'name' => $slug . 'border-width',
'variable' => '$border-width',
'row' => 'default',
'input' => 'text',
'default' => '1px',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$border-color',
'name' => $slug . 'border-color',
'variable' => '$border-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$gray-300',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$border-radius',
'name' => $slug . 'border-radius',
'variable' => '$border-radius',
'row' => 'default',
'input' => 'text',
'default' => '.25rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$border-radius-sm',
'name' => $slug . 'border-radius-sm',
'variable' => '$border-radius-sm',
'row' => 'default',
'input' => 'text',
'default' => '.2rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$border-radius-lg',
'name' => $slug . 'border-radius-lg',
'variable' => '$border-radius-lg',
'row' => 'default',
'input' => 'text',
'default' => '.3rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$border-radius-pill',
'name' => $slug . 'border-radius-pill',
'variable' => '$border-radius-pill',
'row' => 'default',
'input' => 'text',
'default' => '50rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Box Shadow',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$box-shadow',
'name' => $slug . 'box-shadow',
'variable' => '$box-shadow',
'row' => 'default',
'input' => 'text',
'default' => '0 .5rem 1rem rgba($black, .15)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$box-shadow-sm',
'name' => $slug . 'box-shadow-sm',
'variable' => '$box-shadow-sm',
'row' => 'default',
'input' => 'text',
'default' => '0 .125rem .25rem rgba($black, .075)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$box-shadow-lg',
'name' => $slug . 'box-shadow-lg',
'variable' => '$box-shadow-lg',
'row' => 'default',
'input' => 'text',
'default' => '0 1rem 3rem rgba($black, .175)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$box-shadow-inset',
'name' => $slug . 'box-shadow-inset',
'variable' => '$box-shadow-inset',
'row' => 'default',
'input' => 'text',
'default' => 'inset 0 1px 2px rgba($black, .075)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Colors',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$component-active-color',
'name' => $slug . 'component-active-color',
'variable' => '$component-active-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$white',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$component-active-bg',
'name' => $slug . 'component-active-bg',
'variable' => '$component-active-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => '$primary',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Caret',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$caret-width',
'name' => $slug . 'caret-width',
'variable' => '$caret-width',
'row' => 'default',
'input' => 'text',
'default' => '.3em',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$caret-vertical-align',
'name' => $slug . 'caret-vertical-align',
'variable' => '$caret-vertical-align',
'row' => 'default',
'input' => 'text',
'default' => '$caret-width * .85',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$caret-spacing',
'name' => $slug . 'caret-spacing',
'variable' => '$caret-spacing',
'row' => 'default',
'input' => 'text',
'default' => '$caret-width * .85',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Transition',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$transition-base',
'name' => $slug . 'transition-base',
'variable' => '$transition-base',
'row' => 'default',
'input' => 'text',
'default' => 'all .2s ease-in-out',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$transition-fade',
'name' => $slug . 'transition-fade',
'variable' => '$transition-fade',
'row' => 'default',
'input' => 'text',
'default' => 'opacity .15s linear',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$transition-collapse',
'name' => $slug . 'transition-collapse',
'variable' => '$transition-collapse',
'row' => 'default',
'input' => 'text',
'default' => 'height .35s ease',
'description' => '',
'allow_reset' => true,
'options' => array()
),
);

View File

@@ -0,0 +1,45 @@
<?php
/*
Name: Figures
Slug: figures
Description:
Position: 50
Theme:
*/
$slug = AREOI__PREPEND . ( !empty( $section ) ? '-' . $section : '' ) . '-figures-';
return array(
array(
'label' => '$figure-caption-font-size',
'name' => $slug . 'figure-caption-font-size',
'variable' => '$figure-caption-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$small-font-size',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$figure-caption-color',
'name' => $slug . 'figure-caption-color',
'variable' => '$figure-caption-color',
'row' => 'default',
'input' => 'text',
'default' => '$gray-600',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$figure-margin',
'name' => $slug . 'figure-margin',
'variable' => '$figure-margin',
'row' => 'default',
'input' => 'text',
'default' => '0 0 1rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
);

View File

@@ -0,0 +1,78 @@
<?php
/*
Name: Images
Slug: images
Description:
Position: 40
Theme:
*/
$slug = AREOI__PREPEND . ( !empty( $section ) ? '-' . $section : '' ) . '-images-';
return array(
array(
'label' => '$thumbnail-padding',
'name' => $slug . 'thumbnail-padding',
'variable' => '$thumbnail-padding',
'row' => 'default',
'input' => 'text',
'default' => '.25rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$thumbnail-bg',
'name' => $slug . 'thumbnail-bg',
'variable' => '$thumbnail-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => '$body-bg',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$thumbnail-border-width',
'name' => $slug . 'thumbnail-border-width',
'variable' => '$thumbnail-border-width',
'row' => 'default',
'input' => 'text',
'default' => '$border-width',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$thumbnail-border-color',
'name' => $slug . 'thumbnail-border-color',
'variable' => '$thumbnail-border-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$gray-300',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$thumbnail-border-radius',
'name' => $slug . 'thumbnail-border-radius',
'variable' => '$thumbnail-border-radius',
'row' => 'default',
'input' => 'text',
'default' => '$border-radius',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$thumbnail-box-shadow',
'name' => $slug . 'thumbnail-box-shadow',
'variable' => '$thumbnail-box-shadow',
'row' => 'default',
'input' => 'text',
'default' => '$box-shadow-sm',
'description' => '',
'allow_reset' => true,
'options' => array()
),
);

View File

@@ -0,0 +1,287 @@
<?php
/*
Name: Tables
Slug: tables
Description: Customizes the `.table` component with basic values, each used across all table variations.
Position: 30
Theme:
*/
$slug = AREOI__PREPEND . ( !empty( $section ) ? '-' . $section : '' ) . '-tables-';
return array(
array(
'label' => '$table-cell-padding-y',
'name' => $slug . 'table-cell-padding-y',
'variable' => '$table-cell-padding-y',
'row' => 'default',
'input' => 'text',
'default' => '.5rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-cell-padding-x',
'name' => $slug . 'table-cell-padding-x',
'variable' => '$table-cell-padding-x',
'row' => 'default',
'input' => 'text',
'default' => '.5rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-cell-padding-y-sm',
'name' => $slug . 'table-cell-padding-y-sm',
'variable' => '$table-cell-padding-y-sm',
'row' => 'default',
'input' => 'text',
'default' => '.25rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-cell-padding-x-sm',
'name' => $slug . 'table-cell-padding-x-sm',
'variable' => '$table-cell-padding-x-sm',
'row' => 'default',
'input' => 'text',
'default' => '.25rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-cell-vertical-align',
'name' => $slug . 'table-cell-vertical-align',
'variable' => '$table-cell-vertical-align',
'row' => 'default',
'input' => 'text',
'default' => 'top',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-color',
'name' => $slug . 'table-color',
'variable' => '$table-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$body-color',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-bg',
'name' => $slug . 'table-bg',
'variable' => '$table-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => 'transparent',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-accent-bg',
'name' => $slug . 'table-accent-bg',
'variable' => '$table-accent-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => 'transparent',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-th-font-weight',
'name' => $slug . 'table-th-font-weight',
'variable' => '$table-th-font-weight',
'row' => 'default',
'input' => 'text',
'default' => 'null',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-striped-color',
'name' => $slug . 'table-striped-color',
'variable' => '$table-striped-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$table-color',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-striped-bg-factor',
'name' => $slug . 'table-striped-bg-factor',
'variable' => '$table-striped-bg-factor',
'row' => 'default',
'input' => 'text',
'default' => '.05',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-striped-bg',
'name' => $slug . 'table-striped-bg',
'variable' => '$table-striped-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => 'rgba($black, $table-striped-bg-factor)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-active-color',
'name' => $slug . 'table-active-color',
'variable' => '$table-active-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$table-color',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-active-bg-factor',
'name' => $slug . 'table-active-bg-factor',
'variable' => '$table-active-bg-factor',
'row' => 'default',
'input' => 'text',
'default' => '.1',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-active-bg',
'name' => $slug . 'table-active-bg',
'variable' => '$table-active-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => 'rgba($black, $table-active-bg-factor)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-hover-color',
'name' => $slug . 'table-hover-color',
'variable' => '$table-hover-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$table-color',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-hover-bg-factor',
'name' => $slug . 'table-hover-bg-factor',
'variable' => '$table-hover-bg-factor',
'row' => 'default',
'input' => 'text',
'default' => '.075',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-hover-bg',
'name' => $slug . 'table-hover-bg',
'variable' => '$table-hover-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => 'rgba($black, $table-hover-bg-factor)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-border-factor',
'name' => $slug . 'table-border-factor',
'variable' => '$table-border-factor',
'row' => 'default',
'input' => 'text',
'default' => '.1',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-border-width',
'name' => $slug . 'table-border-width',
'variable' => '$table-border-width',
'row' => 'default',
'input' => 'text',
'default' => '$border-width',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-border-color',
'name' => $slug . 'table-border-color',
'variable' => '$table-border-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$border-color',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-striped-order',
'name' => $slug . 'table-striped-order',
'variable' => '$table-striped-order',
'row' => 'default',
'input' => 'text',
'default' => 'odd',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-group-separator-color',
'name' => $slug . 'table-group-separator-color',
'variable' => '$table-group-separator-color',
'row' => 'default',
'input' => 'color-picker',
'default' => 'currentColor',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-caption-color',
'name' => $slug . 'table-caption-color',
'variable' => '$table-caption-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$text-muted',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$table-bg-scale',
'name' => $slug . 'table-bg-scale',
'variable' => '$table-bg-scale',
'row' => 'default',
'input' => 'text',
'default' => '-80%',
'description' => '',
'allow_reset' => true,
'options' => array()
),
);

View File

@@ -0,0 +1,726 @@
<?php
/*
Name: Typography
Slug: typography
Description: Font, line-height, and color for body text, headings, and more.
Position: 20
Theme:
*/
$slug = AREOI__PREPEND . ( !empty( $section ) ? '-' . $section : '' ) . '-typography-';
return array(
array(
'label' => 'Base',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-family-sans-serif',
'name' => $slug . 'font-family-sans-serif',
'variable' => '$font-family-sans-serif',
'row' => 'default',
'input' => 'font',
'default' => 'system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-family-monospace',
'name' => $slug . 'font-family-monospace',
'variable' => '$font-family-monospace',
'row' => 'default',
'input' => 'font',
'default' => 'SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-family-base',
'name' => $slug . 'font-family-base',
'variable' => '$font-family-base',
'row' => 'default',
'input' => 'font',
'default' => 'var(--#{$variable-prefix}font-sans-serif)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-family-code',
'name' => $slug . 'font-family-code',
'variable' => '$font-family-code',
'row' => 'default',
'input' => 'font',
'default' => 'var(--#{$variable-prefix}font-monospace)',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Size',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-size-root',
'name' => $slug . 'font-size-root',
'variable' => '$font-size-root',
'row' => 'default',
'input' => 'text',
'default' => 'null',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-size-base',
'name' => $slug . 'font-size-base',
'variable' => '$font-size-base',
'row' => 'default',
'input' => 'text',
'default' => '1rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-size-sm',
'name' => $slug . 'font-size-sm',
'variable' => '$font-size-sm',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * .875',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-size-lg',
'name' => $slug . 'font-size-lg',
'variable' => '$font-size-lg',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 1.25',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Weight',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-weight-lighter',
'name' => $slug . 'font-weight-lighter',
'variable' => '$font-weight-lighter',
'row' => 'default',
'input' => 'text',
'default' => 'lighter',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-weight-light',
'name' => $slug . 'font-weight-light',
'variable' => '$font-weight-light',
'row' => 'default',
'input' => 'text',
'default' => '300',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-weight-normal',
'name' => $slug . 'font-weight-normal',
'variable' => '$font-weight-normal',
'row' => 'default',
'input' => 'text',
'default' => '400',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-weight-bold',
'name' => $slug . 'font-weight-bold',
'variable' => '$font-weight-bold',
'row' => 'default',
'input' => 'text',
'default' => '700',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-weight-bolder',
'name' => $slug . 'font-weight-bolder',
'variable' => '$font-weight-bolder',
'row' => 'default',
'input' => 'text',
'default' => 'bolder',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$font-weight-base',
'name' => $slug . 'font-weight-base',
'variable' => '$font-weight-base',
'row' => 'default',
'input' => 'text',
'default' => '$font-weight-normal',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Line Height',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$line-height-base',
'name' => $slug . 'line-height-base',
'variable' => '$line-height-base',
'row' => 'default',
'input' => 'text',
'default' => '1.5',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$line-height-sm',
'name' => $slug . 'line-height-sm',
'variable' => '$line-height-sm',
'row' => 'default',
'input' => 'text',
'default' => '1.25',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$line-height-lg',
'name' => $slug . 'line-height-lg',
'variable' => '$line-height-lg',
'row' => 'default',
'input' => 'text',
'default' => '2',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Heading Size',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$h1-font-size',
'name' => $slug . 'h1-font-size',
'variable' => '$h1-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 2.5',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$h2-font-size',
'name' => $slug . 'h2-font-size',
'variable' => '$h2-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 2',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$h3-font-size',
'name' => $slug . 'h3-font-size',
'variable' => '$h3-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 1.75',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$h4-font-size',
'name' => $slug . 'h4-font-size',
'variable' => '$h4-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 1.5',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$h5-font-size',
'name' => $slug . 'h5-font-size',
'variable' => '$h5-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 1.25',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$h6-font-size',
'name' => $slug . 'h6-font-size',
'variable' => '$h6-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Headings',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$headings-margin-bottom',
'name' => $slug . 'headings-margin-bottom',
'variable' => '$headings-margin-bottom',
'row' => 'default',
'input' => 'text',
'default' => '$spacer * .5',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$headings-font-family',
'name' => $slug . 'headings-font-family',
'variable' => '$headings-font-family',
'row' => 'default',
'input' => 'text',
'default' => 'null',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$headings-font-style',
'name' => $slug . 'headings-font-style',
'variable' => '$headings-font-style',
'row' => 'default',
'input' => 'text',
'default' => 'null',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$headings-font-weight',
'name' => $slug . 'headings-font-weight',
'variable' => '$headings-font-weight',
'row' => 'default',
'input' => 'text',
'default' => '500',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$headings-line-height',
'name' => $slug . 'headings-line-height',
'variable' => '$headings-line-height',
'row' => 'default',
'input' => 'text',
'default' => '1.2',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$headings-color',
'name' => $slug . 'headings-color',
'variable' => '$headings-color',
'row' => 'default',
'input' => 'color-picker',
'default' => 'null',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Display',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$display-font-weight',
'name' => $slug . 'display-font-weight',
'variable' => '$display-font-weight',
'row' => 'default',
'input' => 'text',
'default' => '300',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$display-line-height',
'name' => $slug . 'display-line-height',
'variable' => '$display-line-height',
'row' => 'default',
'input' => 'text',
'default' => '$headings-line-height',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Blockquote',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$blockquote-margin-y',
'name' => $slug . 'blockquote-margin-y',
'variable' => '$blockquote-margin-y',
'row' => 'default',
'input' => 'text',
'default' => '$spacer',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$blockquote-font-size',
'name' => $slug . 'blockquote-font-size',
'variable' => '$blockquote-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 1.25',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$blockquote-footer-color',
'name' => $slug . 'blockquote-footer-color',
'variable' => '$blockquote-footer-color',
'row' => 'default',
'input' => 'color-picker',
'default' => '$gray-600',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$blockquote-footer-font-size',
'name' => $slug . 'blockquote-footer-font-size',
'variable' => '$blockquote-footer-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$small-font-size',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'HR',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$hr-margin-y',
'name' => $slug . 'hr-margin-y',
'variable' => '$hr-margin-y',
'row' => 'default',
'input' => 'text',
'default' => '$spacer',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$hr-color',
'name' => $slug . 'hr-color',
'variable' => '$hr-color',
'row' => 'default',
'input' => 'color-picker',
'default' => 'inherit',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$hr-height',
'name' => $slug . 'hr-height',
'variable' => '$hr-height',
'row' => 'default',
'input' => 'text',
'default' => '$border-width',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$hr-opacity',
'name' => $slug . 'hr-opacity',
'variable' => '$hr-opacity',
'row' => 'default',
'input' => 'text',
'default' => '.25',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Legend',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$legend-margin-bottom',
'name' => $slug . 'legend-margin-bottom',
'variable' => '$legend-margin-bottom',
'row' => 'default',
'input' => 'text',
'default' => '.5rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$legend-font-size',
'name' => $slug . 'legend-font-size',
'variable' => '$legend-font-size',
'row' => 'default',
'input' => 'text',
'default' => '1.5rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$legend-font-weight',
'name' => $slug . 'legend-font-weight',
'variable' => '$legend-font-weight',
'row' => 'default',
'input' => 'text',
'default' => 'null',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => 'Miscallaneous',
'name' => '',
'variable' => '',
'row' => 'default',
'input' => 'header',
'default' => '',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$lead-font-size',
'name' => $slug . 'lead-font-size',
'variable' => '$lead-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$font-size-base * 1.25',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$lead-font-weight',
'name' => $slug . 'lead-font-weight',
'variable' => '$lead-font-weight',
'row' => 'default',
'input' => 'text',
'default' => '300',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$small-font-size',
'name' => $slug . 'small-font-size',
'variable' => '$small-font-size',
'row' => 'default',
'input' => 'text',
'default' => '.875em',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$sub-sup-font-size',
'name' => $slug . 'sub-sup-font-size',
'variable' => '$sub-sup-font-size',
'row' => 'default',
'input' => 'text',
'default' => '.75em',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$text-muted',
'name' => $slug . 'text-muted',
'variable' => '$text-muted',
'row' => 'default',
'input' => 'text',
'default' => '$gray-600',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$initialism-font-size',
'name' => $slug . 'initialism-font-size',
'variable' => '$initialism-font-size',
'row' => 'default',
'input' => 'text',
'default' => '$small-font-size',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$mark-padding',
'name' => $slug . 'mark-padding',
'variable' => '$mark-padding',
'row' => 'default',
'input' => 'text',
'default' => '.2em',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$dt-font-weight',
'name' => $slug . 'dt-font-weight',
'variable' => '$dt-font-weight',
'row' => 'default',
'input' => 'text',
'default' => '$font-weight-bold',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$nested-kbd-font-weight',
'name' => $slug . 'nested-kbd-font-weight',
'variable' => '$nested-kbd-font-weight',
'row' => 'default',
'input' => 'text',
'default' => '$font-weight-bold',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$list-inline-padding',
'name' => $slug . 'list-inline-padding',
'variable' => '$list-inline-padding',
'row' => 'default',
'input' => 'text',
'default' => '.5rem',
'description' => '',
'allow_reset' => true,
'options' => array()
),
array(
'label' => '$mark-bg',
'name' => $slug . 'mark-bg',
'variable' => '$mark-bg',
'row' => 'default',
'input' => 'color-picker',
'default' => '#fcf8e3',
'description' => '',
'allow_reset' => true,
'options' => array()
),
);