From 6e140e1943f1eaa601422df3b09fb45e26adf1e8 Mon Sep 17 00:00:00 2001 From: Alison Joseph Date: Tue, 26 Feb 2019 11:25:48 -0600 Subject: [PATCH 1/7] fix(toggle): update color tokens and add check for mini version --- src/components/toggle/_toggle.scss | 31 +++++++++++++++++-------- src/components/toggle/toggle--small.hbs | 13 ++++------- src/globals/scss/_theme-tokens.scss | 3 --- 3 files changed, 26 insertions(+), 21 deletions(-) diff --git a/src/components/toggle/_toggle.scss b/src/components/toggle/_toggle.scss index f7637df94d86..c573f59fb8b3 100644 --- a/src/components/toggle/_toggle.scss +++ b/src/components/toggle/_toggle.scss @@ -251,7 +251,7 @@ position: absolute; display: block; content: ''; - background-color: $ui-03; + background-color: $ui-04; cursor: pointer; box-sizing: border-box; height: rem(24px); @@ -270,7 +270,7 @@ top: 3px; width: rem(18px); height: rem(18px); - background-color: $ui-02; + background-color: $ui-03; border-radius: 50%; content: ''; transition: $transition--base $carbon--standard-easing; @@ -297,6 +297,21 @@ } } + .#{$prefix}--toggle__check { + fill: $ui-03; + position: absolute; + left: 6px; + top: 6px; + z-index: 1; + transition: $transition--base $carbon--standard-easing; + transform: scale(0.2); + } + + .#{$prefix}--toggle--small:checked + .#{$prefix}--toggle__label .#{$prefix}--toggle__check { + fill: $support-02; + transform: scale(1) translateX(16px); + } + .#{$prefix}--toggle__text--left, .#{$prefix}--toggle__text--right { @include typescale('zeta'); @@ -325,18 +340,15 @@ .#{$prefix}--toggle:checked + .#{$prefix}--toggle__label .#{$prefix}--toggle__appearance { &:before { - background-color: $toggle-background-color; + background-color: $support-02; } &:after { + background-color: $icon-03; transform: translateX(24px); } } - .#{$prefix}--toggle__check { - @include hidden; - } - .#{$prefix}--toggle--small:checked + .#{$prefix}--toggle__label .#{$prefix}--toggle__appearance { &:after { margin-left: 0px; @@ -370,12 +382,11 @@ .#{$prefix}--toggle:disabled + .#{$prefix}--toggle__label .#{$prefix}--toggle__appearance { &:before { - background-color: $ibm-colors__gray-20; // TODO: Replace with role or add new color variable - border-color: $ibm-colors__gray-20; // TODO: Replace with role or add new color variable + background-color: $disabled-01; } &:after { - background-color: $disabled; + background-color: $disabled-02; } &:before, diff --git a/src/components/toggle/toggle--small.hbs b/src/components/toggle/toggle--small.hbs index b6232642c542..e5173f0b4adf 100644 --- a/src/components/toggle/toggle--small.hbs +++ b/src/components/toggle/toggle--small.hbs @@ -6,32 +6,29 @@ -->
- +
- + -
+ \ No newline at end of file diff --git a/src/globals/scss/_theme-tokens.scss b/src/globals/scss/_theme-tokens.scss index 7f084713c786..0ddd3aa21291 100644 --- a/src/globals/scss/_theme-tokens.scss +++ b/src/globals/scss/_theme-tokens.scss @@ -211,9 +211,6 @@ $tab-text-disabled: $ibm-color__gray-30 !default !global; $tab-underline-disabled: 3px solid $ibm-color__gray-10 !default !global; - // Toggle - $toggle-background-color: $ibm-color__green-50 !default !global; - // Skeleton Loading $skeleton: rgba($color__blue-51, 0.1) !default !global; //old $field-01 TODO: Define for experimental From ac25588849e46fd5618da72ffa1551f8dff1ca6b Mon Sep 17 00:00:00 2001 From: Alison Joseph Date: Wed, 22 Jul 2020 13:55:03 -0500 Subject: [PATCH 2/7] fix: update left and right gutter class names to start and end --- packages/grid/docs/sass.md | 26 +++++++++++++++++++++++--- packages/grid/scss/_mixins.scss | 26 +++++++++++++++++++++++--- 2 files changed, 46 insertions(+), 6 deletions(-) diff --git a/packages/grid/docs/sass.md b/packages/grid/docs/sass.md index 76c86cbc5e8f..3ff8512e708d 100644 --- a/packages/grid/docs/sass.md +++ b/packages/grid/docs/sass.md @@ -297,7 +297,7 @@ Define the properties for a selector assigned to a row in the grid system. ### ❌carbon--no-gutter [mixin] -Add `no-gutter` and `no-gutter--{left,right}` classes to the output CSS. These +Add `no-gutter` and `no-gutter--{start,end}` classes to the output CSS. These classes are useful for dropping the gutter in fluid situations.
@@ -311,6 +311,17 @@ classes are useful for dropping the gutter in fluid situations. padding-right: 0; } + .#{$prefix}--no-gutter--start, + .#{$prefix}--row.#{$prefix}--no-gutter--start [class*='#{$prefix}--col'] { + padding-left: 0; + } + + .#{$prefix}--no-gutter--end, + .#{$prefix}--row.#{$prefix}--no-gutter--end [class*='#{$prefix}--col'] { + padding-right: 0; + } + + // Deprecated ☠️ .#{$prefix}--no-gutter--left, .#{$prefix}--row.#{$prefix}--no-gutter--left [class*='#{$prefix}--col'] { padding-left: 0; @@ -333,14 +344,23 @@ classes are useful for dropping the gutter in fluid situations. ### ❌carbon--hang [mixin] -Add `hang--left` and `hang--right` classes for a given gutter. These classes are -used alongside `no-gutter--left` and `no-gutter--right` to "hang" type. +Add `hang--start` and `hang--end` classes for a given gutter. These classes are +used alongside `no-gutter--start` and `no-gutter--end` to "hang" type.
Source code ```scss @mixin carbon--hang($gutter: $carbon--grid-gutter) { + .#{$prefix}--hang--start { + padding-left: ($gutter / 2); + } + + .#{$prefix}--hang--end { + padding-right: ($gutter / 2); + } + + // Deprecated ☠️ .#{$prefix}--hang--left { padding-left: ($gutter / 2); } diff --git a/packages/grid/scss/_mixins.scss b/packages/grid/scss/_mixins.scss index 0b73e3b90982..fdab0c2ca6b3 100644 --- a/packages/grid/scss/_mixins.scss +++ b/packages/grid/scss/_mixins.scss @@ -159,7 +159,7 @@ // No gutter // ----------------------------------------------------------------------------- -/// Add `no-gutter` and `no-gutter--{left,right}` classes to the output CSS. These +/// Add `no-gutter` and `no-gutter--{start,end}` classes to the output CSS. These /// classes are useful for dropping the gutter in fluid situations. /// @access private /// @group @carbon/grid @@ -170,6 +170,17 @@ padding-right: 0; } + .#{$prefix}--no-gutter--start, + .#{$prefix}--row.#{$prefix}--no-gutter--start [class*='#{$prefix}--col'] { + padding-left: 0; + } + + .#{$prefix}--no-gutter--end, + .#{$prefix}--row.#{$prefix}--no-gutter--end [class*='#{$prefix}--col'] { + padding-right: 0; + } + + // Deprecated ☠️ .#{$prefix}--no-gutter--left, .#{$prefix}--row.#{$prefix}--no-gutter--left [class*='#{$prefix}--col'] { padding-left: 0; @@ -185,12 +196,21 @@ // Hang // ----------------------------------------------------------------------------- -/// Add `hang--left` and `hang--right` classes for a given gutter. These classes are -/// used alongside `no-gutter--left` and `no-gutter--right` to "hang" type. +/// Add `hang--start` and `hang--end` classes for a given gutter. These classes are +/// used alongside `no-gutter--start` and `no-gutter--end` to "hang" type. /// @param {Number} $gutter [$carbon--grid-gutter] - The gutter in the grid system /// @access private /// @group @carbon/grid @mixin carbon--hang($gutter: $carbon--grid-gutter) { + .#{$prefix}--hang--start { + padding-left: ($gutter / 2); + } + + .#{$prefix}--hang--end { + padding-right: ($gutter / 2); + } + + // Deprecated ☠️ .#{$prefix}--hang--left { padding-left: ($gutter / 2); } From 460278d8c9fb853bc725da135ebcec4e9139bae1 Mon Sep 17 00:00:00 2001 From: Alison Joseph Date: Wed, 22 Jul 2020 13:57:45 -0500 Subject: [PATCH 3/7] chore: delete extra files --- html/accordion/accordion--legacy.html | 57 -- html/accordion/accordion.html | 57 -- html/breadcrumb/breadcrumb.html | 18 - .../button--danger--primary--small.html | 45 -- html/button/button--danger--primary.html | 45 -- html/button/button--danger--small.html | 45 -- html/button/button--danger.html | 45 -- html/button/button--ghost--small.html | 45 -- html/button/button--ghost.html | 45 -- html/button/button--primary--small.html | 45 -- html/button/button--primary.html | 45 -- html/button/button--secondary--small.html | 45 -- html/button/button--secondary.html | 45 -- html/button/button--tertiary--small.html | 45 -- html/button/button--tertiary.html | 45 -- html/carousel/carousel.html | 65 -- html/checkbox/checkbox.html | 49 -- .../code-snippet--inline-light.html | 14 - html/code-snippet/code-snippet--inline.html | 14 - html/code-snippet/code-snippet--multi.html | 51 -- html/code-snippet/code-snippet.html | 41 -- html/combo-box/combo-box--disabled.html | 37 - html/combo-box/combo-box.html | 36 - .../content-switcher--disabled.html | 21 - .../content-switcher--with-icon.html | 33 - html/content-switcher/content-switcher.html | 21 - html/copy-button/copy-button.html | 14 - .../data-table-v2--editable.html | 105 --- .../data-table-v2--expandable.html | 155 ---- html/data-table-v2/data-table-v2--small.html | 76 -- .../data-table-v2--with-pager.html | 421 ----------- html/data-table-v2/data-table-v2.html | 370 ---------- html/data-table/data-table--simple.html | 162 ----- html/data-table/data-table.html | 504 ------------- html/date-picker/date-picker--light.html | 31 - .../date-picker/date-picker--range-light.html | 28 - html/date-picker/date-picker--range.html | 28 - .../date-picker--single-light-no-label.html | 41 -- .../date-picker--single-light.html | 43 -- .../date-picker--single-no-label.html | 41 -- html/date-picker/date-picker--single.html | 43 -- html/date-picker/date-picker.html | 31 - html/dropdown/dropdown--inline.html | 38 - html/dropdown/dropdown--light.html | 36 - html/dropdown/dropdown--up-light.html | 36 - html/dropdown/dropdown--up.html | 36 - html/dropdown/dropdown.html | 36 - html/fab/fab.html | 14 - .../file-uploader--example-upload-states.html | 39 - html/file-uploader/file-uploader.html | 20 - html/footer/footer.html | 22 - html/form/form--light.html | 38 - html/form/form.html | 38 - html/grid/grid--16.html | 33 - html/grid/grid.html | 33 - html/inline-loading/inline-loading.html | 23 - html/lightbox/lightbox.html | 58 -- html/link/link.html | 14 - html/list-box/list-box--inline.html | 35 - html/list-box/list-box--light.html | 35 - html/list-box/list-box.html | 35 - html/list/list--ordered.html | 17 - html/list/list.html | 17 - html/loading/loading--small.html | 14 - html/loading/loading--without-overlay.html | 14 - html/loading/loading.html | 15 - html/modal/modal--danger.html | 38 - html/modal/modal--input.html | 37 - html/modal/modal--nofooter.html | 35 - html/modal/modal.html | 37 - html/multi-select/multi-select--inline.html | 70 -- html/multi-select/multi-select.html | 70 -- html/notification/inline-notification.html | 79 --- html/notification/toast-notification.html | 63 -- html/number-input/number-input--light.html | 176 ----- html/number-input/number-input.html | 176 ----- html/overflow-menu/overflow-menu--up.html | 142 ---- html/overflow-menu/overflow-menu.html | 142 ---- .../pagination-nav--default--as-anchor.html | 85 --- .../pagination-nav--default--with-select.html | 129 ---- html/pagination-nav/pagination-nav.html | 78 -- ...ation--v2-disabled-pagination-buttons.html | 49 -- html/pagination/pagination--v2.html | 57 -- html/pagination/pagination.html | 44 -- .../progress-indicator--vertical.html | 53 -- .../progress-indicator.html | 53 -- html/radio-button/radio-button--vertical.html | 58 -- html/radio-button/radio-button.html | 58 -- html/search/search--extra-large.html | 24 - html/search/search--large-light.html | 24 - html/search/search--large.html | 24 - html/search/search--small-light.html | 24 - html/search/search--small.html | 24 - html/select/select--helpertext.html | 40 -- html/select/select--helpertextinline.html | 40 -- html/select/select--inline-invalid.html | 44 -- html/select/select--inline.html | 38 - html/select/select--invalid.html | 44 -- html/select/select--light-invalid.html | 44 -- html/select/select--light.html | 38 - html/select/select.html | 38 - html/skeleton/skeleton.html | 159 ----- html/slider/slider--disabled.html | 21 - html/slider/slider--light.html | 21 - html/slider/slider.html | 21 - .../structured-list--selection.html | 75 -- html/structured-list/structured-list.html | 32 - html/tabs/tabs.html | 44 -- html/tag/tag.html | 16 - html/text-area/text-area--light.html | 32 - html/text-area/text-area.html | 32 - html/text-input/text-input--light.html | 42 -- .../text-input--password--light.html | 90 --- html/text-input/text-input--password.html | 90 --- html/text-input/text-input.html | 42 -- html/tile/tile--clickable.html | 8 - html/tile/tile--expandable.html | 22 - html/tile/tile--grid.html | 119 ---- html/tile/tile--selectable.html | 19 - html/tile/tile.html | 8 - html/time-picker/time-picker--light.html | 40 -- html/time-picker/time-picker.html | 40 -- html/toggle/toggle--small.html | 34 - html/toggle/toggle.html | 36 - html/toolbar/toolbar.html | 101 --- html/tooltip/tooltip--definition.html | 16 - html/tooltip/tooltip--icon.html | 14 - html/tooltip/tooltip.html | 29 - .../ui-shell--navigation-with-no-icons.html | 640 ----------------- html/ui-shell/ui-shell--side-nav-fixed.html | 585 --------------- html/ui-shell/ui-shell.html | 671 ------------------ html/unified-header/unified-header.html | 507 ------------- 132 files changed, 9624 deletions(-) delete mode 100644 html/accordion/accordion--legacy.html delete mode 100644 html/accordion/accordion.html delete mode 100644 html/breadcrumb/breadcrumb.html delete mode 100644 html/button/button--danger--primary--small.html delete mode 100644 html/button/button--danger--primary.html delete mode 100644 html/button/button--danger--small.html delete mode 100644 html/button/button--danger.html delete mode 100644 html/button/button--ghost--small.html delete mode 100644 html/button/button--ghost.html delete mode 100644 html/button/button--primary--small.html delete mode 100644 html/button/button--primary.html delete mode 100644 html/button/button--secondary--small.html delete mode 100644 html/button/button--secondary.html delete mode 100644 html/button/button--tertiary--small.html delete mode 100644 html/button/button--tertiary.html delete mode 100644 html/carousel/carousel.html delete mode 100644 html/checkbox/checkbox.html delete mode 100644 html/code-snippet/code-snippet--inline-light.html delete mode 100644 html/code-snippet/code-snippet--inline.html delete mode 100644 html/code-snippet/code-snippet--multi.html delete mode 100644 html/code-snippet/code-snippet.html delete mode 100644 html/combo-box/combo-box--disabled.html delete mode 100644 html/combo-box/combo-box.html delete mode 100644 html/content-switcher/content-switcher--disabled.html delete mode 100644 html/content-switcher/content-switcher--with-icon.html delete mode 100644 html/content-switcher/content-switcher.html delete mode 100644 html/copy-button/copy-button.html delete mode 100644 html/data-table-v2/data-table-v2--editable.html delete mode 100644 html/data-table-v2/data-table-v2--expandable.html delete mode 100644 html/data-table-v2/data-table-v2--small.html delete mode 100644 html/data-table-v2/data-table-v2--with-pager.html delete mode 100644 html/data-table-v2/data-table-v2.html delete mode 100644 html/data-table/data-table--simple.html delete mode 100644 html/data-table/data-table.html delete mode 100644 html/date-picker/date-picker--light.html delete mode 100644 html/date-picker/date-picker--range-light.html delete mode 100644 html/date-picker/date-picker--range.html delete mode 100644 html/date-picker/date-picker--single-light-no-label.html delete mode 100644 html/date-picker/date-picker--single-light.html delete mode 100644 html/date-picker/date-picker--single-no-label.html delete mode 100644 html/date-picker/date-picker--single.html delete mode 100644 html/date-picker/date-picker.html delete mode 100644 html/dropdown/dropdown--inline.html delete mode 100644 html/dropdown/dropdown--light.html delete mode 100644 html/dropdown/dropdown--up-light.html delete mode 100644 html/dropdown/dropdown--up.html delete mode 100644 html/dropdown/dropdown.html delete mode 100644 html/fab/fab.html delete mode 100644 html/file-uploader/file-uploader--example-upload-states.html delete mode 100644 html/file-uploader/file-uploader.html delete mode 100644 html/footer/footer.html delete mode 100644 html/form/form--light.html delete mode 100644 html/form/form.html delete mode 100644 html/grid/grid--16.html delete mode 100644 html/grid/grid.html delete mode 100644 html/inline-loading/inline-loading.html delete mode 100644 html/lightbox/lightbox.html delete mode 100644 html/link/link.html delete mode 100644 html/list-box/list-box--inline.html delete mode 100644 html/list-box/list-box--light.html delete mode 100644 html/list-box/list-box.html delete mode 100644 html/list/list--ordered.html delete mode 100644 html/list/list.html delete mode 100644 html/loading/loading--small.html delete mode 100644 html/loading/loading--without-overlay.html delete mode 100644 html/loading/loading.html delete mode 100644 html/modal/modal--danger.html delete mode 100644 html/modal/modal--input.html delete mode 100644 html/modal/modal--nofooter.html delete mode 100644 html/modal/modal.html delete mode 100644 html/multi-select/multi-select--inline.html delete mode 100644 html/multi-select/multi-select.html delete mode 100644 html/notification/inline-notification.html delete mode 100644 html/notification/toast-notification.html delete mode 100644 html/number-input/number-input--light.html delete mode 100644 html/number-input/number-input.html delete mode 100644 html/overflow-menu/overflow-menu--up.html delete mode 100644 html/overflow-menu/overflow-menu.html delete mode 100644 html/pagination-nav/pagination-nav--default--as-anchor.html delete mode 100644 html/pagination-nav/pagination-nav--default--with-select.html delete mode 100644 html/pagination-nav/pagination-nav.html delete mode 100644 html/pagination/pagination--v2-disabled-pagination-buttons.html delete mode 100644 html/pagination/pagination--v2.html delete mode 100644 html/pagination/pagination.html delete mode 100644 html/progress-indicator/progress-indicator--vertical.html delete mode 100644 html/progress-indicator/progress-indicator.html delete mode 100644 html/radio-button/radio-button--vertical.html delete mode 100644 html/radio-button/radio-button.html delete mode 100644 html/search/search--extra-large.html delete mode 100644 html/search/search--large-light.html delete mode 100644 html/search/search--large.html delete mode 100644 html/search/search--small-light.html delete mode 100644 html/search/search--small.html delete mode 100644 html/select/select--helpertext.html delete mode 100644 html/select/select--helpertextinline.html delete mode 100644 html/select/select--inline-invalid.html delete mode 100644 html/select/select--inline.html delete mode 100644 html/select/select--invalid.html delete mode 100644 html/select/select--light-invalid.html delete mode 100644 html/select/select--light.html delete mode 100644 html/select/select.html delete mode 100644 html/skeleton/skeleton.html delete mode 100644 html/slider/slider--disabled.html delete mode 100644 html/slider/slider--light.html delete mode 100644 html/slider/slider.html delete mode 100644 html/structured-list/structured-list--selection.html delete mode 100644 html/structured-list/structured-list.html delete mode 100644 html/tabs/tabs.html delete mode 100644 html/tag/tag.html delete mode 100644 html/text-area/text-area--light.html delete mode 100644 html/text-area/text-area.html delete mode 100644 html/text-input/text-input--light.html delete mode 100644 html/text-input/text-input--password--light.html delete mode 100644 html/text-input/text-input--password.html delete mode 100644 html/text-input/text-input.html delete mode 100644 html/tile/tile--clickable.html delete mode 100644 html/tile/tile--expandable.html delete mode 100644 html/tile/tile--grid.html delete mode 100644 html/tile/tile--selectable.html delete mode 100644 html/tile/tile.html delete mode 100644 html/time-picker/time-picker--light.html delete mode 100644 html/time-picker/time-picker.html delete mode 100644 html/toggle/toggle--small.html delete mode 100644 html/toggle/toggle.html delete mode 100644 html/toolbar/toolbar.html delete mode 100644 html/tooltip/tooltip--definition.html delete mode 100644 html/tooltip/tooltip--icon.html delete mode 100644 html/tooltip/tooltip.html delete mode 100644 html/ui-shell/ui-shell--navigation-with-no-icons.html delete mode 100644 html/ui-shell/ui-shell--side-nav-fixed.html delete mode 100644 html/ui-shell/ui-shell.html delete mode 100644 html/unified-header/unified-header.html diff --git a/html/accordion/accordion--legacy.html b/html/accordion/accordion--legacy.html deleted file mode 100644 index 82a0c54dee2e..000000000000 --- a/html/accordion/accordion--legacy.html +++ /dev/null @@ -1,57 +0,0 @@ - - -
    -
  • -
    - - - -

    Section 1 title

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
  • -
    - - - -

    Section 2 title

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
  • -
    - - - -

    Section 3 title

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
  • -
    - - - -

    Section 4 title

    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
diff --git a/html/accordion/accordion.html b/html/accordion/accordion.html deleted file mode 100644 index b16f5aa20f07..000000000000 --- a/html/accordion/accordion.html +++ /dev/null @@ -1,57 +0,0 @@ - - -
    -
  • - -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
  • - -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
  • - -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
  • - -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    -
    -
  • -
diff --git a/html/breadcrumb/breadcrumb.html b/html/breadcrumb/breadcrumb.html deleted file mode 100644 index cde70ea6a9aa..000000000000 --- a/html/breadcrumb/breadcrumb.html +++ /dev/null @@ -1,18 +0,0 @@ - - - diff --git a/html/button/button--danger--primary--small.html b/html/button/button--danger--primary--small.html deleted file mode 100644 index 9e8531f6e787..000000000000 --- a/html/button/button--danger--primary--small.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--danger--primary.html b/html/button/button--danger--primary.html deleted file mode 100644 index e57fb9db704c..000000000000 --- a/html/button/button--danger--primary.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--danger--small.html b/html/button/button--danger--small.html deleted file mode 100644 index 9ed5fec8709b..000000000000 --- a/html/button/button--danger--small.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--danger.html b/html/button/button--danger.html deleted file mode 100644 index 0630ab8f41b3..000000000000 --- a/html/button/button--danger.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--ghost--small.html b/html/button/button--ghost--small.html deleted file mode 100644 index 7c6222f2588f..000000000000 --- a/html/button/button--ghost--small.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--ghost.html b/html/button/button--ghost.html deleted file mode 100644 index e0d5ad28aecd..000000000000 --- a/html/button/button--ghost.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--primary--small.html b/html/button/button--primary--small.html deleted file mode 100644 index c0f038848344..000000000000 --- a/html/button/button--primary--small.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--primary.html b/html/button/button--primary.html deleted file mode 100644 index 78d0cb23d0a0..000000000000 --- a/html/button/button--primary.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--secondary--small.html b/html/button/button--secondary--small.html deleted file mode 100644 index 25ab1679115a..000000000000 --- a/html/button/button--secondary--small.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--secondary.html b/html/button/button--secondary.html deleted file mode 100644 index ce85c8a5bdc2..000000000000 --- a/html/button/button--secondary.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--tertiary--small.html b/html/button/button--tertiary--small.html deleted file mode 100644 index b5380f8e4140..000000000000 --- a/html/button/button--tertiary--small.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/button/button--tertiary.html b/html/button/button--tertiary.html deleted file mode 100644 index 999fd2ae5595..000000000000 --- a/html/button/button--tertiary.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/html/carousel/carousel.html b/html/carousel/carousel.html deleted file mode 100644 index 4b07eb794658..000000000000 --- a/html/carousel/carousel.html +++ /dev/null @@ -1,65 +0,0 @@ - - -
Carousel Title
- - - diff --git a/html/checkbox/checkbox.html b/html/checkbox/checkbox.html deleted file mode 100644 index 71011e9a3934..000000000000 --- a/html/checkbox/checkbox.html +++ /dev/null @@ -1,49 +0,0 @@ - - -
- Checkbox (input + label) - -
- - -
- -
- - -
- -
- - -
-
-
- Checkbox (input > label) - -
- -
- -
- -
- -
- -
-
\ No newline at end of file diff --git a/html/code-snippet/code-snippet--inline-light.html b/html/code-snippet/code-snippet--inline-light.html deleted file mode 100644 index 3aed645258d7..000000000000 --- a/html/code-snippet/code-snippet--inline-light.html +++ /dev/null @@ -1,14 +0,0 @@ - - -

Here is an example of a text that a user would be reading. In this paragraph would be - - that the user could look at and copy in to their code editor.

diff --git a/html/code-snippet/code-snippet--inline.html b/html/code-snippet/code-snippet--inline.html deleted file mode 100644 index 4cbaf32a90fe..000000000000 --- a/html/code-snippet/code-snippet--inline.html +++ /dev/null @@ -1,14 +0,0 @@ - - -

Here is an example of a text that a user would be reading. In this paragraph would be - - that the user could look at and copy in to their code editor.

diff --git a/html/code-snippet/code-snippet--multi.html b/html/code-snippet/code-snippet--multi.html deleted file mode 100644 index 043486adabe5..000000000000 --- a/html/code-snippet/code-snippet--multi.html +++ /dev/null @@ -1,51 +0,0 @@ - - - -
-
-@mixin grid-container {
-    width: 100%;
-    padding-right: padding(mobile);
-    padding-left: padding(mobile);
-
-    @include breakpoint(bp--xs--major) {
-      padding-right: padding(xs);
-      padding-left: padding(xs);
-    }
-  }
-
-  $z-indexes: (
-    modal : 9000,
-    overlay : 8000,
-    dropdown : 7000,
-    header : 6000,
-    footer : 5000,
-    hidden : - 1,
-    overflowHidden: - 1,
-    floating: 10000
-  );
-    
-
- - -
diff --git a/html/code-snippet/code-snippet.html b/html/code-snippet/code-snippet.html deleted file mode 100644 index 5dbfe32d9a5e..000000000000 --- a/html/code-snippet/code-snippet.html +++ /dev/null @@ -1,41 +0,0 @@ - - - -
-
-@mixin grid-container {
-    width: 100%;
-    padding-right: padding(mobile);
-    padding-left: padding(mobile);
-
-    @include breakpoint(bp--xs--major) {
-      padding-right: padding(xs);
-      padding-left: padding(xs);
-    }
-  }
-
-  $z-indexes: (
-    modal : 9000,
-    overlay : 8000,
-    dropdown : 7000,
-    header : 6000,
-    footer : 5000,
-    hidden : - 1,
-    overflowHidden: - 1,
-    floating: 10000
-  );
-    
-
- -
diff --git a/html/combo-box/combo-box--disabled.html b/html/combo-box/combo-box--disabled.html deleted file mode 100644 index 1e67e76f7cf7..000000000000 --- a/html/combo-box/combo-box--disabled.html +++ /dev/null @@ -1,37 +0,0 @@ - - -
- -
-
-
- - Close menu - - -
-
-
-
Option 1
-
Option 2
-
Option 3
-
Option 4
-
-
diff --git a/html/combo-box/combo-box.html b/html/combo-box/combo-box.html deleted file mode 100644 index 032b3cab5b92..000000000000 --- a/html/combo-box/combo-box.html +++ /dev/null @@ -1,36 +0,0 @@ - - -
- -
-
-
- - Close menu - - -
-
-
-
Option 1
-
Option 2
-
Option 3
-
Option 4
-
-
diff --git a/html/content-switcher/content-switcher--disabled.html b/html/content-switcher/content-switcher--disabled.html deleted file mode 100644 index 21bde092505d..000000000000 --- a/html/content-switcher/content-switcher--disabled.html +++ /dev/null @@ -1,21 +0,0 @@ - - -
- - - -
diff --git a/html/content-switcher/content-switcher--with-icon.html b/html/content-switcher/content-switcher--with-icon.html deleted file mode 100644 index b1ed66e1d986..000000000000 --- a/html/content-switcher/content-switcher--with-icon.html +++ /dev/null @@ -1,33 +0,0 @@ - - -
- - - -
diff --git a/html/content-switcher/content-switcher.html b/html/content-switcher/content-switcher.html deleted file mode 100644 index 92dc3a04af90..000000000000 --- a/html/content-switcher/content-switcher.html +++ /dev/null @@ -1,21 +0,0 @@ - - -
- - - -
diff --git a/html/copy-button/copy-button.html b/html/copy-button/copy-button.html deleted file mode 100644 index e2fa57ed3fc4..000000000000 --- a/html/copy-button/copy-button.html +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/html/data-table-v2/data-table-v2--editable.html b/html/data-table-v2/data-table-v2--editable.html deleted file mode 100644 index 606731081083..000000000000 --- a/html/data-table-v2/data-table-v2--editable.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - -
-
- - -
-
- - -
-
HTTP3000Round RobinKevins VM GroupsDisabled
Load Balancer 1HTTP443Round RobinMaureens VM GroupsStarting
Load Balancer 2HTTP80DNS delegationAndrews VM GroupsActive
- - diff --git a/html/data-table-v2/data-table-v2--expandable.html b/html/data-table-v2/data-table-v2--expandable.html deleted file mode 100644 index 8c397c2e833a..000000000000 --- a/html/data-table-v2/data-table-v2--expandable.html +++ /dev/null @@ -1,155 +0,0 @@ - - -
-

Table title

-
- -
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
- - Load Balancer 1HTTP80Round RobinMaureen's VM GroupsActive
- -

- Harry Potter -

-

Harry James Potter (b. 31 July, 1980) was a half-blood wizard, the only child and son of the late James and Lily - Potter (née Evans), and one of the most famous and powerful wizards of modern times. In what proved to be a vain - attempt to circumvent a prophecy that stated that a boy born at the end of July of 1980 could be able to defeat - him, Lord Voldemort tried to murder him when he was a year and three months old. Voldemort murdered Harry's parents - as they tried to protect him, shortly before attacking Harry.

- -
- - Load Balancer 1HTTP80Round RobinMaureen's VM GroupsActive
- -

- Harry Potter -

-

Harry James Potter (b. 31 July, 1980) was a half-blood wizard, the only child and son of the late James and Lily - Potter (née Evans), and one of the most famous and powerful wizards of modern times. In what proved to be a vain - attempt to circumvent a prophecy that stated that a boy born at the end of July of 1980 could be able to defeat - him, Lord Voldemort tried to murder him when he was a year and three months old. Voldemort murdered Harry's parents - as they tried to protect him, shortly before attacking Harry.

- -
- -
diff --git a/html/data-table-v2/data-table-v2--small.html b/html/data-table-v2/data-table-v2--small.html deleted file mode 100644 index c091980f1619..000000000000 --- a/html/data-table-v2/data-table-v2--small.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Name - - Protocol - - Port - - Rule - - Attached Groups - - Status -
Load Balancer 1HTTP80Round RobinMaureen's VM GroupsActive
Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive
Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive
Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive
Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive
- - diff --git a/html/data-table-v2/data-table-v2--with-pager.html b/html/data-table-v2/data-table-v2--with-pager.html deleted file mode 100644 index 3bd0bae05cae..000000000000 --- a/html/data-table-v2/data-table-v2--with-pager.html +++ /dev/null @@ -1,421 +0,0 @@ - - -
-

Table title

-
-
-
- - - -
-
-

- 3 items selected -

- -
-
- -
- -
- -
- - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- - - Load Balancer 1HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -
-
-
- Items per page: -
- - - - - -
- - - 1-10 of - 40 items -
-
- - 1 of - 4 pages - - -
- - - - - -
- -
-
diff --git a/html/data-table-v2/data-table-v2.html b/html/data-table-v2/data-table-v2.html deleted file mode 100644 index 0d3544b567e4..000000000000 --- a/html/data-table-v2/data-table-v2.html +++ /dev/null @@ -1,370 +0,0 @@ - - -
-

Table title

-
-
-
- - - -
-
-

- 3 items selected -

- -
-
- -
- -
- -
- - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- - - Load Balancer 1HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - Load Balancer 5HTTP80Round RobinMaureen's VM GroupsActive -
- - - - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -
diff --git a/html/data-table/data-table--simple.html b/html/data-table/data-table--simple.html deleted file mode 100644 index dfaa87953732..000000000000 --- a/html/data-table/data-table--simple.html +++ /dev/null @@ -1,162 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- First Name - - - - - Last Name - - - - - House - - - -
HarryPotterGryffindor
- -

Harry Potter

-

Harry James Potter (b. 31 July, 1980) was a half-blood wizard, the only child and son of the late James and Lily - Potter (née Evans), and one of the most famous and powerful wizards of modern times. In what proved to be a vain - attempt to circumvent a prophecy that stated that a boy born at the end of July of 1980 could be able to defeat - him, Lord Voldemort tried to murder him when he was a year and three months old. Voldemort murdered Harry's parents - as they tried to protect him, shortly before attacking Harry.

- -
HermoineGrangerGryffindor
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
First NameLast NameHouseHelloColumn
GodricGryffindorOriginSomethingHooray
SalazarSlytherinOriginSomethingHooray
- -
RonWeasleyGryffindor
- - - -
DracoMalfoySlytherin
- -

Draco Malfoy is in Gryffindor House. He is in his fifth year.

- -
BlaiseZabiniSlytherin
- -

Blaise Zabini is in Gryffindor House. He is in his fifth year.

- -
CedricDiggoryHufflepuff
- -

Cedric Diggory is in Hufflepuff House. He is in his fifth year.

- -
LunaLovegoodRavenclaw
- -

Luna Lovegood is in Ravenclaw House. She is in her fifth year.

- -
ChoChangRavenclaw
- -

Cho Chang is in Gryffindor House. She is in her fifth year.

- -
-
\ No newline at end of file diff --git a/html/data-table/data-table.html b/html/data-table/data-table.html deleted file mode 100644 index 9d67028259dd..000000000000 --- a/html/data-table/data-table.html +++ /dev/null @@ -1,504 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - First Name - - - - - Last Name - - - - - House - - - - -
- - - - - - - HarryPotterGryffindor -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -

Harry Potter

-

Harry James Potter (b. 31 July, 1980) was a half-blood wizard, the only child and son of the late James and Lily - Potter (née Evans), and one of the most famous and powerful wizards of modern times. In what proved to be a vain - attempt to circumvent a prophecy that stated that a boy born at the end of July of 1980 could be able to defeat - him, Lord Voldemort tried to murder him when he was a year and three months old. Voldemort murdered Harry's parents - as they tried to protect him, shortly before attacking Harry.

- -
- - - - - - - HermoineGrangerGryffindor -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
First NameLast NameHouseHelloColumn
GodricGryffindorOriginSomethingHooray
SalazarSlytherinOriginSomethingHooray
- -
- - - - - - - RonWeasleyGryffindor -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- - - -
- - - - - - - DracoMalfoySlytherin -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -

Draco Malfoy is in Gryffindor House. He is in his fifth year.

- -
- - - - - - - BlaiseZabiniSlytherin -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -

Blaise Zabini is in Gryffindor House. He is in his fifth year.

- -
- - - - - - - CedricDiggoryHufflepuff -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -

Cedric Diggory is in Hufflepuff House. He is in his fifth year.

- -
- - - - - - - LunaLovegoodRavenclaw -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -

Luna Lovegood is in Ravenclaw House. She is in her fifth year.

- -
- - - - - - - ChoChangRavenclaw -
- - - - - -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
- -

Cho Chang is in Gryffindor House. She is in her fifth year.

- -
-
\ No newline at end of file diff --git a/html/date-picker/date-picker--light.html b/html/date-picker/date-picker--light.html deleted file mode 100644 index c935bc48ed30..000000000000 --- a/html/date-picker/date-picker--light.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
-
-
- - -
-
-
- - -
-
-
- - -
- Invalid date format. -
-
-
-
diff --git a/html/date-picker/date-picker--range-light.html b/html/date-picker/date-picker--range-light.html deleted file mode 100644 index c6109d0362ea..000000000000 --- a/html/date-picker/date-picker--range-light.html +++ /dev/null @@ -1,28 +0,0 @@ - - - -
-
-
- - -
-
- - -
- - - -
-
diff --git a/html/date-picker/date-picker--range.html b/html/date-picker/date-picker--range.html deleted file mode 100644 index a6ba3f903c0e..000000000000 --- a/html/date-picker/date-picker--range.html +++ /dev/null @@ -1,28 +0,0 @@ - - - -
-
-
- - -
-
- - -
- - - -
-
diff --git a/html/date-picker/date-picker--single-light-no-label.html b/html/date-picker/date-picker--single-light-no-label.html deleted file mode 100644 index 04020ada7e36..000000000000 --- a/html/date-picker/date-picker--single-light-no-label.html +++ /dev/null @@ -1,41 +0,0 @@ - - - -
-
-
- - - - -
-
-
- - -
-
-
- - - - -
- Invalid date format. -
-
-
-
diff --git a/html/date-picker/date-picker--single-light.html b/html/date-picker/date-picker--single-light.html deleted file mode 100644 index 9fe3669b7025..000000000000 --- a/html/date-picker/date-picker--single-light.html +++ /dev/null @@ -1,43 +0,0 @@ - - - -
-
-
- - - - - -
-
-
- - -
-
-
- - - - - -
- Invalid date format. -
-
-
-
diff --git a/html/date-picker/date-picker--single-no-label.html b/html/date-picker/date-picker--single-no-label.html deleted file mode 100644 index 6977802dcf9a..000000000000 --- a/html/date-picker/date-picker--single-no-label.html +++ /dev/null @@ -1,41 +0,0 @@ - - - -
-
-
- - - - -
-
-
- - -
-
-
- - - - -
- Invalid date format. -
-
-
-
diff --git a/html/date-picker/date-picker--single.html b/html/date-picker/date-picker--single.html deleted file mode 100644 index 143ad714afe8..000000000000 --- a/html/date-picker/date-picker--single.html +++ /dev/null @@ -1,43 +0,0 @@ - - - -
-
-
- - - - - -
-
-
- - -
-
-
- - - - - -
- Invalid date format. -
-
-
-
diff --git a/html/date-picker/date-picker.html b/html/date-picker/date-picker.html deleted file mode 100644 index e062107b9290..000000000000 --- a/html/date-picker/date-picker.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
-
-
- - -
-
-
- - -
-
-
- - -
- Invalid date format. -
-
-
-
diff --git a/html/dropdown/dropdown--inline.html b/html/dropdown/dropdown--inline.html deleted file mode 100644 index dbdd79183d0f..000000000000 --- a/html/dropdown/dropdown--inline.html +++ /dev/null @@ -1,38 +0,0 @@ - - - -
diff --git a/html/dropdown/dropdown--light.html b/html/dropdown/dropdown--light.html deleted file mode 100644 index cd4084df0374..000000000000 --- a/html/dropdown/dropdown--light.html +++ /dev/null @@ -1,36 +0,0 @@ - - - -
diff --git a/html/dropdown/dropdown--up-light.html b/html/dropdown/dropdown--up-light.html deleted file mode 100644 index 57efa0508702..000000000000 --- a/html/dropdown/dropdown--up-light.html +++ /dev/null @@ -1,36 +0,0 @@ - - - -
diff --git a/html/dropdown/dropdown--up.html b/html/dropdown/dropdown--up.html deleted file mode 100644 index a5be1358222f..000000000000 --- a/html/dropdown/dropdown--up.html +++ /dev/null @@ -1,36 +0,0 @@ - - - -
diff --git a/html/dropdown/dropdown.html b/html/dropdown/dropdown.html deleted file mode 100644 index 9c265cdc6214..000000000000 --- a/html/dropdown/dropdown.html +++ /dev/null @@ -1,36 +0,0 @@ - - - -
diff --git a/html/fab/fab.html b/html/fab/fab.html deleted file mode 100644 index de3d8fe13c20..000000000000 --- a/html/fab/fab.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - show content - diff --git a/html/file-uploader/file-uploader--example-upload-states.html b/html/file-uploader/file-uploader--example-upload-states.html deleted file mode 100644 index 5f2e0e4bed71..000000000000 --- a/html/file-uploader/file-uploader--example-upload-states.html +++ /dev/null @@ -1,39 +0,0 @@ - - -
- Account - photo -

only .jpg and .png files. 500kb max file size.

-
- - - -
-

Lorem ipsum dolor sit amet consectetur adipisicing elit. Libero vero - sapiente illum reprehenderit molestiae perferendis voluptatem temporibus laudantium ducimus magni voluptatum - veniam, odit nesciunt corporis numquam maxime sunt excepturi sint!

- - -
-
-
-

color.jpeg

- - -
-
-
-

color.jpeg

- - -
-
-
diff --git a/html/file-uploader/file-uploader.html b/html/file-uploader/file-uploader.html deleted file mode 100644 index 58768d9acffc..000000000000 --- a/html/file-uploader/file-uploader.html +++ /dev/null @@ -1,20 +0,0 @@ - - -
- Account - photo -

only .jpg and .png files. 500kb max file size.

-
- - - -
-
diff --git a/html/footer/footer.html b/html/footer/footer.html deleted file mode 100644 index 201239aee6e9..000000000000 --- a/html/footer/footer.html +++ /dev/null @@ -1,22 +0,0 @@ - - - diff --git a/html/form/form--light.html b/html/form/form--light.html deleted file mode 100644 index e00229d54fa7..000000000000 --- a/html/form/form--light.html +++ /dev/null @@ -1,38 +0,0 @@ - - -
- - -
-
- - -
-
-
- - - - - -
-
-
- -
diff --git a/html/form/form.html b/html/form/form.html deleted file mode 100644 index f5fd7efedb97..000000000000 --- a/html/form/form.html +++ /dev/null @@ -1,38 +0,0 @@ - - -
- - -
-
- - -
-
-
- - - - - -
-
-
- -
diff --git a/html/grid/grid--16.html b/html/grid/grid--16.html deleted file mode 100644 index 965b471af6ee..000000000000 --- a/html/grid/grid--16.html +++ /dev/null @@ -1,33 +0,0 @@ - - -
-
-
-
-
-
-

Content space for bx--col-xs-12 bx--col-sm-6

-
-
-
-

Full space for bx--col-xs-12 bx--col-sm-6 (columns naturally have padding on them, adding a background color to - the column directly will effect the entire column, as opposed to using a child element in the example to the - left).

-
-
- -

Columns also expand to match the vertical size of the rest of the row (see red column)

-
-
-

Background color over entire column, not just content space

-
-
-
This content is offset. Offset adds a left-margin for x columns.
-
-
-
diff --git a/html/grid/grid.html b/html/grid/grid.html deleted file mode 100644 index 965b471af6ee..000000000000 --- a/html/grid/grid.html +++ /dev/null @@ -1,33 +0,0 @@ - - -
-
-
-
-
-
-

Content space for bx--col-xs-12 bx--col-sm-6

-
-
-
-

Full space for bx--col-xs-12 bx--col-sm-6 (columns naturally have padding on them, adding a background color to - the column directly will effect the entire column, as opposed to using a child element in the example to the - left).

-
-
- -

Columns also expand to match the vertical size of the rest of the row (see red column)

-
-
-

Background color over entire column, not just content space

-
-
-
This content is offset. Offset adds a left-margin for x columns.
-
-
-
diff --git a/html/inline-loading/inline-loading.html b/html/inline-loading/inline-loading.html deleted file mode 100644 index a76fb0b402b2..000000000000 --- a/html/inline-loading/inline-loading.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - diff --git a/html/lightbox/lightbox.html b/html/lightbox/lightbox.html deleted file mode 100644 index 4647918ea339..000000000000 --- a/html/lightbox/lightbox.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - diff --git a/html/link/link.html b/html/link/link.html deleted file mode 100644 index 8651ead090c6..000000000000 --- a/html/link/link.html +++ /dev/null @@ -1,14 +0,0 @@ - - -Link -Placeholder link - -
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti explicabo - nobis consequatur quod qui quam laboriosam placeat repudiandae. Ducimus ea aut omnis asperiores mollitia - necessitatibus architecto temporibus provident quo? Repellat! diff --git a/html/list-box/list-box--inline.html b/html/list-box/list-box--inline.html deleted file mode 100644 index 8b9c758c6504..000000000000 --- a/html/list-box/list-box--inline.html +++ /dev/null @@ -1,35 +0,0 @@ - - -
- -
-
-
- Label -
- - Close menu - - -
-
-
-
Option 1
-
Option 2
-
Option 3
-
Option 4
-
-
diff --git a/html/list-box/list-box--light.html b/html/list-box/list-box--light.html deleted file mode 100644 index 4eec2f8630d8..000000000000 --- a/html/list-box/list-box--light.html +++ /dev/null @@ -1,35 +0,0 @@ - - -
- -
-
-
- Label -
- - Close menu - - -
-
-
-
Option 1
-
Option 2
-
Option 3
-
Option 4
-
-
diff --git a/html/list-box/list-box.html b/html/list-box/list-box.html deleted file mode 100644 index 51eca5e0c820..000000000000 --- a/html/list-box/list-box.html +++ /dev/null @@ -1,35 +0,0 @@ - - -
- -
-
-
- Label -
- - Close menu - - -
-
-
-
Option 1
-
Option 2
-
Option 3
-
Option 4
-
-
diff --git a/html/list/list--ordered.html b/html/list/list--ordered.html deleted file mode 100644 index 9df5f7c14dbf..000000000000 --- a/html/list/list--ordered.html +++ /dev/null @@ -1,17 +0,0 @@ - - -
    -
  1. Ordered List level 1 -
      -
    1. Ordered List level 2
    2. -
    3. Ordered List level 2
    4. -
    -
  2. -
  3. Ordered List level 1
  4. -
  5. Ordered List level 1
  6. -
diff --git a/html/list/list.html b/html/list/list.html deleted file mode 100644 index 0e425c83c475..000000000000 --- a/html/list/list.html +++ /dev/null @@ -1,17 +0,0 @@ - - -
    -
  • Unordered List level 1 -
      -
    • Unordered List level 2
    • -
    • Unordered List level 2
    • -
    -
  • -
  • Unordered List level 1
  • -
  • Unordered List level 1
  • -
diff --git a/html/loading/loading--small.html b/html/loading/loading--small.html deleted file mode 100644 index f9199209311d..000000000000 --- a/html/loading/loading--small.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -
- - Loading - - -
diff --git a/html/loading/loading--without-overlay.html b/html/loading/loading--without-overlay.html deleted file mode 100644 index 3a86b6305795..000000000000 --- a/html/loading/loading--without-overlay.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -
- - Loading - - -
diff --git a/html/loading/loading.html b/html/loading/loading.html deleted file mode 100644 index 52b07c353587..000000000000 --- a/html/loading/loading.html +++ /dev/null @@ -1,15 +0,0 @@ - - -
-
- - Loading - - -
-
\ No newline at end of file diff --git a/html/modal/modal--danger.html b/html/modal/modal--danger.html deleted file mode 100644 index ae29ac64e21a..000000000000 --- a/html/modal/modal--danger.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - diff --git a/html/modal/modal--input.html b/html/modal/modal--input.html deleted file mode 100644 index 83afc5f38382..000000000000 --- a/html/modal/modal--input.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - diff --git a/html/modal/modal--nofooter.html b/html/modal/modal--nofooter.html deleted file mode 100644 index 0832744eda05..000000000000 --- a/html/modal/modal--nofooter.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - diff --git a/html/modal/modal.html b/html/modal/modal.html deleted file mode 100644 index 3801e0325f1c..000000000000 --- a/html/modal/modal.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - diff --git a/html/multi-select/multi-select--inline.html b/html/multi-select/multi-select--inline.html deleted file mode 100644 index b179ec64857a..000000000000 --- a/html/multi-select/multi-select--inline.html +++ /dev/null @@ -1,70 +0,0 @@ - - -
- -
-
-
- Label -
- - Close menu - - -
-
-
- Description of form elements within the fieldset -
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
diff --git a/html/multi-select/multi-select.html b/html/multi-select/multi-select.html deleted file mode 100644 index a519c016c33d..000000000000 --- a/html/multi-select/multi-select.html +++ /dev/null @@ -1,70 +0,0 @@ - - -
- -
-
-
- Label -
- - Close menu - - -
-
-
- Description of form elements within the fieldset -
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
diff --git a/html/notification/inline-notification.html b/html/notification/inline-notification.html deleted file mode 100644 index 6a7a92fe55ca..000000000000 --- a/html/notification/inline-notification.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - diff --git a/html/notification/toast-notification.html b/html/notification/toast-notification.html deleted file mode 100644 index 4faca79fc041..000000000000 --- a/html/notification/toast-notification.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - diff --git a/html/number-input/number-input--light.html b/html/number-input/number-input--light.html deleted file mode 100644 index c5ddba37e17f..000000000000 --- a/html/number-input/number-input--light.html +++ /dev/null @@ -1,176 +0,0 @@ - - -
-
- -
- -
- - -
-
-
-
- -
-
- - -
- - -
-
- Invalid number -
-
-
- -
-
- -
- - -
-
- Invalid number -
-
-
- -
-
- - -
- - -
-
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
-
-
- -
-
- - -
- - -
-
- Invalid number -
-
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
-
-
- -
-
- - -
- - -
-
- Invalid number -
-
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
-
-
diff --git a/html/number-input/number-input.html b/html/number-input/number-input.html deleted file mode 100644 index d428a3feec3a..000000000000 --- a/html/number-input/number-input.html +++ /dev/null @@ -1,176 +0,0 @@ - - -
-
- -
- -
- - -
-
-
-
- -
-
- - -
- - -
-
- Invalid number -
-
-
- -
-
- -
- - -
-
- Invalid number -
-
-
- -
-
- - -
- - -
-
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
-
-
- -
-
- - -
- - -
-
- Invalid number -
-
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
-
-
- -
-
- - -
- - -
-
- Invalid number -
-
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
-
-
diff --git a/html/overflow-menu/overflow-menu--up.html b/html/overflow-menu/overflow-menu--up.html deleted file mode 100644 index efff78f66171..000000000000 --- a/html/overflow-menu/overflow-menu--up.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/html/overflow-menu/overflow-menu.html b/html/overflow-menu/overflow-menu.html deleted file mode 100644 index 21542c2e13ed..000000000000 --- a/html/overflow-menu/overflow-menu.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/html/pagination-nav/pagination-nav--default--as-anchor.html b/html/pagination-nav/pagination-nav--default--as-anchor.html deleted file mode 100644 index 488ebad5566b..000000000000 --- a/html/pagination-nav/pagination-nav--default--as-anchor.html +++ /dev/null @@ -1,85 +0,0 @@ - - - diff --git a/html/pagination-nav/pagination-nav--default--with-select.html b/html/pagination-nav/pagination-nav--default--with-select.html deleted file mode 100644 index 9e640999dfeb..000000000000 --- a/html/pagination-nav/pagination-nav--default--with-select.html +++ /dev/null @@ -1,129 +0,0 @@ - - - diff --git a/html/pagination-nav/pagination-nav.html b/html/pagination-nav/pagination-nav.html deleted file mode 100644 index 2a3e230b7ac2..000000000000 --- a/html/pagination-nav/pagination-nav.html +++ /dev/null @@ -1,78 +0,0 @@ - - - diff --git a/html/pagination/pagination--v2-disabled-pagination-buttons.html b/html/pagination/pagination--v2-disabled-pagination-buttons.html deleted file mode 100644 index 8d548fb4b864..000000000000 --- a/html/pagination/pagination--v2-disabled-pagination-buttons.html +++ /dev/null @@ -1,49 +0,0 @@ - - -
-
-
- - - - - -
- - - 1-10 of - 40 items -
-
- - 1 of - 4 pages - - -
- - - - - -
- -
-
diff --git a/html/pagination/pagination--v2.html b/html/pagination/pagination--v2.html deleted file mode 100644 index 438aa6ac1fb3..000000000000 --- a/html/pagination/pagination--v2.html +++ /dev/null @@ -1,57 +0,0 @@ - - -
-
-
- - - - - -
- - - 1-10 of - 40 items -
-
- - 1 of - 4 pages - - -
- - - - - -
- -
-
diff --git a/html/pagination/pagination.html b/html/pagination/pagination.html deleted file mode 100644 index 9f2c1678d719..000000000000 --- a/html/pagination/pagination.html +++ /dev/null @@ -1,44 +0,0 @@ - - -
-
-
- - - - -
- Items per page  |   - - 1-10 of - 40 items -
-
- - 1 of - 4 pages - - - - -
-
diff --git a/html/progress-indicator/progress-indicator--vertical.html b/html/progress-indicator/progress-indicator--vertical.html deleted file mode 100644 index fecabc9698cc..000000000000 --- a/html/progress-indicator/progress-indicator--vertical.html +++ /dev/null @@ -1,53 +0,0 @@ - - -
    -
  • - -

    - First step -

    - -
  • -
  • - - - - -

    - Second Step -

    - -
  • -
  • - - - -

    - Third Step -

    - -
  • -
  • - - - -

    - Fourth step -

    - -
  • -
  • - - - -

    - Fifth step -

    - -
  • -
diff --git a/html/progress-indicator/progress-indicator.html b/html/progress-indicator/progress-indicator.html deleted file mode 100644 index 95c63ea97a7e..000000000000 --- a/html/progress-indicator/progress-indicator.html +++ /dev/null @@ -1,53 +0,0 @@ - - -
    -
  • - -

    - First step -

    - -
  • -
  • - - - - -

    - Second Step -

    - -
  • -
  • - - - -

    - Third Step -

    - -
  • -
  • - - - -

    - Fourth step -

    - -
  • -
  • - - - -

    - Fifth step -

    - -
  • -
diff --git a/html/radio-button/radio-button--vertical.html b/html/radio-button/radio-button--vertical.html deleted file mode 100644 index 2ef4f51110fb..000000000000 --- a/html/radio-button/radio-button--vertical.html +++ /dev/null @@ -1,58 +0,0 @@ - - -
- Radio Button heading -
-
- - - - - - -
-
-
- -
- Radio Button heading -
-
-
- - -
-
- - -
-
- - -
-
-
-
diff --git a/html/radio-button/radio-button.html b/html/radio-button/radio-button.html deleted file mode 100644 index c35fd25d2dda..000000000000 --- a/html/radio-button/radio-button.html +++ /dev/null @@ -1,58 +0,0 @@ - - -
- Radio Button heading -
-
- - - - - - -
-
-
- -
- Radio Button heading -
-
-
- - -
-
- - -
-
- - -
-
-
-
diff --git a/html/search/search--extra-large.html b/html/search/search--extra-large.html deleted file mode 100644 index 84ae03abcb40..000000000000 --- a/html/search/search--extra-large.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/html/search/search--large-light.html b/html/search/search--large-light.html deleted file mode 100644 index 3c74bdc5eb00..000000000000 --- a/html/search/search--large-light.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/html/search/search--large.html b/html/search/search--large.html deleted file mode 100644 index 8488cd92271e..000000000000 --- a/html/search/search--large.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/html/search/search--small-light.html b/html/search/search--small-light.html deleted file mode 100644 index eb6d06a8dd25..000000000000 --- a/html/search/search--small-light.html +++ /dev/null @@ -1,24 +0,0 @@ - - -
- -
diff --git a/html/search/search--small.html b/html/search/search--small.html deleted file mode 100644 index 1c6bf54b9629..000000000000 --- a/html/search/search--small.html +++ /dev/null @@ -1,24 +0,0 @@ - - -
- -
diff --git a/html/select/select--helpertext.html b/html/select/select--helpertext.html deleted file mode 100644 index 564cd52cff6b..000000000000 --- a/html/select/select--helpertext.html +++ /dev/null @@ -1,40 +0,0 @@ - - -
-
- -
Optional helper text.
- - - - -
-
- -
-
- -
Optional helper text.
- - - - -
-
diff --git a/html/select/select--helpertextinline.html b/html/select/select--helpertextinline.html deleted file mode 100644 index da5dc4759fbd..000000000000 --- a/html/select/select--helpertextinline.html +++ /dev/null @@ -1,40 +0,0 @@ - - -
-
- - - - - -
Optional helper text.
-
-
- -
-
- - - - - -
Optional helper text.
-
-
diff --git a/html/select/select--inline-invalid.html b/html/select/select--inline-invalid.html deleted file mode 100644 index 68925be718ed..000000000000 --- a/html/select/select--inline-invalid.html +++ /dev/null @@ -1,44 +0,0 @@ - - -
-
- - - - - -
- Validation message here -
-
-
- -
-
- - - - - -
- Validation message here -
-
-
diff --git a/html/select/select--inline.html b/html/select/select--inline.html deleted file mode 100644 index e04357787eac..000000000000 --- a/html/select/select--inline.html +++ /dev/null @@ -1,38 +0,0 @@ - - -
-
- - - - - -
-
- -
-
- - - - - -
-
diff --git a/html/select/select--invalid.html b/html/select/select--invalid.html deleted file mode 100644 index 4fac049e1e0d..000000000000 --- a/html/select/select--invalid.html +++ /dev/null @@ -1,44 +0,0 @@ - - -
-
- - - - - -
- Validation message here -
-
-
- -
-
- - - - - -
- Validation message here -
-
-
diff --git a/html/select/select--light-invalid.html b/html/select/select--light-invalid.html deleted file mode 100644 index bf51530fc972..000000000000 --- a/html/select/select--light-invalid.html +++ /dev/null @@ -1,44 +0,0 @@ - - -
-
- - - - - -
- Validation message here -
-
-
- -
-
- - - - - -
- Validation message here -
-
-
diff --git a/html/select/select--light.html b/html/select/select--light.html deleted file mode 100644 index 6a8275f6c867..000000000000 --- a/html/select/select--light.html +++ /dev/null @@ -1,38 +0,0 @@ - - -
-
- - - - - -
-
- -
-
- - - - - -
-
diff --git a/html/select/select.html b/html/select/select.html deleted file mode 100644 index d6269841d175..000000000000 --- a/html/select/select.html +++ /dev/null @@ -1,38 +0,0 @@ - - -
-
- - - - - -
-
- -
-
- - - - - -
-
diff --git a/html/skeleton/skeleton.html b/html/skeleton/skeleton.html deleted file mode 100644 index 58d4c9a50be6..000000000000 --- a/html/skeleton/skeleton.html +++ /dev/null @@ -1,159 +0,0 @@ - - - -

Skeleton Text

-
-
- -

Button

- - -

Code Snippet

-
-
-
-
-
-
- -

Label

- - -

Breadcrumb

-
-
-   -
-
-   -
-
-   -
-
- -

Dropdown

-
-
- -
-
- -

Progress Indicator

-
    -
- -

Toggle

-
- - -
- -

Small Toggle

-
- - -
- -

Slider

-
- -
-
-
-
-
-
-
-
- -

Tag

- - -

Tabs

- - -

Icon

-
- -

Select

-
- -
- -
-
- -

Data Table

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/html/slider/slider--disabled.html b/html/slider/slider--disabled.html deleted file mode 100644 index 178365fb9a9d..000000000000 --- a/html/slider/slider--disabled.html +++ /dev/null @@ -1,21 +0,0 @@ - - -
-
- -
-
-
-
- -
- - - -
-
diff --git a/html/slider/slider--light.html b/html/slider/slider--light.html deleted file mode 100644 index 708436c7ec45..000000000000 --- a/html/slider/slider--light.html +++ /dev/null @@ -1,21 +0,0 @@ - - -
-
- -
-
-
-
- -
- - - -
-
diff --git a/html/slider/slider.html b/html/slider/slider.html deleted file mode 100644 index b584db7770b4..000000000000 --- a/html/slider/slider.html +++ /dev/null @@ -1,21 +0,0 @@ - - -
-
- -
-
-
-
- -
- - - -
-
diff --git a/html/structured-list/structured-list--selection.html b/html/structured-list/structured-list--selection.html deleted file mode 100644 index 7f0b69696893..000000000000 --- a/html/structured-list/structured-list--selection.html +++ /dev/null @@ -1,75 +0,0 @@ - - -
-
-
-
-
Column1
-
Column2
-
Column3
-
-
-
- - - - -
-
diff --git a/html/structured-list/structured-list.html b/html/structured-list/structured-list.html deleted file mode 100644 index bcc76249a27b..000000000000 --- a/html/structured-list/structured-list.html +++ /dev/null @@ -1,32 +0,0 @@ - - -
-
-
-
Column1
-
Column2
-
Column3
-
-
-
-
-
Row 1
-
Row 1
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dui magna, finibus id tortor sed, aliquet bibendum augue. Aenean posuere sem vel euismod dignissim. Nulla ut cursus dolor. Pellentesque vulputate nisl a porttitor interdum. -
-
-
-
Row 2
-
Row 2
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dui magna, finibus id tortor sed, aliquet bibendum augue. Aenean posuere sem vel euismod dignissim. Nulla ut cursus dolor. Pellentesque vulputate nisl a porttitor interdum. -
-
-
-
diff --git a/html/tabs/tabs.html b/html/tabs/tabs.html deleted file mode 100644 index 654ebb8e5c1a..000000000000 --- a/html/tabs/tabs.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - -
-
-

Content for first tab goes here.

-
- - - -
diff --git a/html/tag/tag.html b/html/tag/tag.html deleted file mode 100644 index 1acd4d732236..000000000000 --- a/html/tag/tag.html +++ /dev/null @@ -1,16 +0,0 @@ - - -IBM -Beta -Third-Party -Local -Dedicated -Custom -Experimental -Community -Private diff --git a/html/text-area/text-area--light.html b/html/text-area/text-area--light.html deleted file mode 100644 index 63b7a419a3b2..000000000000 --- a/html/text-area/text-area--light.html +++ /dev/null @@ -1,32 +0,0 @@ - - -
- - -
- -
- - -
- Validation message here -
-
- -
- - -
- Optional helper text goes here -
-
- -
- - -
diff --git a/html/text-area/text-area.html b/html/text-area/text-area.html deleted file mode 100644 index afaedc0a3b5e..000000000000 --- a/html/text-area/text-area.html +++ /dev/null @@ -1,32 +0,0 @@ - - -
- - -
- -
- - -
- Validation message here -
-
- -
- - -
- Optional helper text goes here -
-
- -
- - -
diff --git a/html/text-input/text-input--light.html b/html/text-input/text-input--light.html deleted file mode 100644 index 8c04dd0e7e01..000000000000 --- a/html/text-input/text-input--light.html +++ /dev/null @@ -1,42 +0,0 @@ - - -
- - -
- -
- - -
- Validation message here -
-
- -
- -
- Optional helper text goes here -
- -
- -
- -
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
- -
- -
- - -
diff --git a/html/text-input/text-input--password--light.html b/html/text-input/text-input--password--light.html deleted file mode 100644 index f9d68ce16a16..000000000000 --- a/html/text-input/text-input--password--light.html +++ /dev/null @@ -1,90 +0,0 @@ - - -
- - - -
- -
- - - -
- Validation message here -
-
- -
- -
- Optional helper text goes here -
- - -
- -
- -
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
- - -
- -
- - - -
diff --git a/html/text-input/text-input--password.html b/html/text-input/text-input--password.html deleted file mode 100644 index d955546f70e9..000000000000 --- a/html/text-input/text-input--password.html +++ /dev/null @@ -1,90 +0,0 @@ - - -
- - - -
- -
- - - -
- Validation message here -
-
- -
- -
- Optional helper text goes here -
- - -
- -
- -
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
- - -
- -
- - - -
diff --git a/html/text-input/text-input.html b/html/text-input/text-input.html deleted file mode 100644 index 549eea4078a3..000000000000 --- a/html/text-input/text-input.html +++ /dev/null @@ -1,42 +0,0 @@ - - -
- - -
- -
- - -
- Validation message here -
-
- -
- -
- Optional helper text goes here -
- -
- -
- -
- Optional helper text here; if message is more than one line text should wrap (~100 character count maximum) -
- -
- -
- - -
diff --git a/html/tile/tile--clickable.html b/html/tile/tile--clickable.html deleted file mode 100644 index 4b1202239cfc..000000000000 --- a/html/tile/tile--clickable.html +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/html/tile/tile--expandable.html b/html/tile/tile--expandable.html deleted file mode 100644 index 345d8d1f8606..000000000000 --- a/html/tile/tile--expandable.html +++ /dev/null @@ -1,22 +0,0 @@ - - -
- -
- - - - - - -
-
diff --git a/html/tile/tile--grid.html b/html/tile/tile--grid.html deleted file mode 100644 index 41eef22f8a7d..000000000000 --- a/html/tile/tile--grid.html +++ /dev/null @@ -1,119 +0,0 @@ - - -
- -
-
-
-
- -
- - -

Above the fold content here

-
- - -

Below the fold content here

-
-
-
-
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
diff --git a/html/tile/tile--selectable.html b/html/tile/tile--selectable.html deleted file mode 100644 index 61a9156e2ce0..000000000000 --- a/html/tile/tile--selectable.html +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/html/tile/tile.html b/html/tile/tile.html deleted file mode 100644 index 08b660b9086b..000000000000 --- a/html/tile/tile.html +++ /dev/null @@ -1,8 +0,0 @@ - - -
diff --git a/html/time-picker/time-picker--light.html b/html/time-picker/time-picker--light.html deleted file mode 100644 index 1b6690c78d85..000000000000 --- a/html/time-picker/time-picker--light.html +++ /dev/null @@ -1,40 +0,0 @@ - - -
-
-
- -
- Invalid time. -
- -
-
- - - - - -
-
- - - - - -
-
-
diff --git a/html/time-picker/time-picker.html b/html/time-picker/time-picker.html deleted file mode 100644 index 3667437ae49d..000000000000 --- a/html/time-picker/time-picker.html +++ /dev/null @@ -1,40 +0,0 @@ - - -
-
-
- - -
- Invalid time. -
-
-
- - - - - -
-
- - - - - -
-
-
diff --git a/html/toggle/toggle--small.html b/html/toggle/toggle--small.html deleted file mode 100644 index b396e6e35243..000000000000 --- a/html/toggle/toggle--small.html +++ /dev/null @@ -1,34 +0,0 @@ - - -
- - -
- -
- - -
\ No newline at end of file diff --git a/html/toggle/toggle.html b/html/toggle/toggle.html deleted file mode 100644 index c387b6a41409..000000000000 --- a/html/toggle/toggle.html +++ /dev/null @@ -1,36 +0,0 @@ - - -
- - -
- -
- Toggle w/ Label -
- - -
-
- -
- - -
diff --git a/html/toolbar/toolbar.html b/html/toolbar/toolbar.html deleted file mode 100644 index 702349f1e8d9..000000000000 --- a/html/toolbar/toolbar.html +++ /dev/null @@ -1,101 +0,0 @@ - - -
- -
- - - - - -
    -
  • FILTER BY
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
-
-
- - - - - -
    -
  • - -
  • -
    -
  • ROW HEIGHT
  • -
    - Select table row height -
  • - - -
  • -
  • - - -
  • -
    -
-
-
diff --git a/html/tooltip/tooltip--definition.html b/html/tooltip/tooltip--definition.html deleted file mode 100644 index 0add5f6acb33..000000000000 --- a/html/tooltip/tooltip--definition.html +++ /dev/null @@ -1,16 +0,0 @@ - - -
- - -
diff --git a/html/tooltip/tooltip--icon.html b/html/tooltip/tooltip--icon.html deleted file mode 100644 index 0f3026e32fc7..000000000000 --- a/html/tooltip/tooltip--icon.html +++ /dev/null @@ -1,14 +0,0 @@ - - -
- -
diff --git a/html/tooltip/tooltip.html b/html/tooltip/tooltip.html deleted file mode 100644 index f6b27fa02f42..000000000000 --- a/html/tooltip/tooltip.html +++ /dev/null @@ -1,29 +0,0 @@ - - -
- Tooltip label - -
-
- -

This is some tooltip text. This box shows the maximum amount of text that should appear inside. If more room is - needed - please use a modal instead.

- -
diff --git a/html/ui-shell/ui-shell--navigation-with-no-icons.html b/html/ui-shell/ui-shell--navigation-with-no-icons.html deleted file mode 100644 index 047ec6fc9f76..000000000000 --- a/html/ui-shell/ui-shell--navigation-with-no-icons.html +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - - - - - - - -
-

Heading

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-
diff --git a/html/ui-shell/ui-shell--side-nav-fixed.html b/html/ui-shell/ui-shell--side-nav-fixed.html deleted file mode 100644 index 94768385a9c9..000000000000 --- a/html/ui-shell/ui-shell--side-nav-fixed.html +++ /dev/null @@ -1,585 +0,0 @@ - - - - - - - - - - - - - - -
-

Heading

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-
diff --git a/html/ui-shell/ui-shell.html b/html/ui-shell/ui-shell.html deleted file mode 100644 index dc1909e77892..000000000000 --- a/html/ui-shell/ui-shell.html +++ /dev/null @@ -1,671 +0,0 @@ - - - - - - - - - - - - - - -
-

Heading

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-

Sub-section

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

- Elit odit veritatis repudiandae laboriosam amet. Dolore doloribus ut obcaecati harum ad Expedita hic atque quas - repellat et sed Tempore similique laudantium autem quam commodi, temporibus. Minus voluptates reiciendis adipisci. -

-

Tertiary section

-

- Adipisicing eius ea est ducimus nihil Sit modi quisquam tempore asperiores at Culpa omnis quasi a rem sapiente, - illo Omnis aut maiores magnam perspiciatis at, rerum? Esse ullam veritatis debitis. -

-
diff --git a/html/unified-header/unified-header.html b/html/unified-header/unified-header.html deleted file mode 100644 index 9014be935543..000000000000 --- a/html/unified-header/unified-header.html +++ /dev/null @@ -1,507 +0,0 @@ - - - -
- - - - - - - - - -
- From 20d9760b910a1627094675ca6e659c68662c5323 Mon Sep 17 00:00:00 2001 From: Alison Joseph Date: Wed, 22 Jul 2020 13:58:39 -0500 Subject: [PATCH 4/7] chore: delete extra files --- scss/components/accordion/_accordion.scss | 308 ------ scss/components/breadcrumb/_breadcrumb.scss | 128 --- scss/components/button/_button.scss | 315 ------ scss/components/button/_mixins.scss | 173 ---- scss/components/carousel/_carousel.scss | 101 -- scss/components/checkbox/_checkbox.scss | 349 ------- .../code-snippet/_code-snippet.scss | 596 ------------ scss/components/code-snippet/_mixins.scss | 28 - scss/components/combo-box/_combo-box.scss | 44 - .../content-switcher/_content-switcher.scss | 218 ----- scss/components/copy-button/_copy-button.scss | 73 -- .../data-table-v2/_data-table-v2-action.scss | 184 ---- .../data-table-v2/_data-table-v2-core.scss | 172 ---- .../_data-table-v2-expandable.scss | 108 --- .../_data-table-v2-inline-edit-cell.scss | 363 ------- .../_data-table-v2-inline-edit.scss | 78 -- .../_data-table-v2-skeleton.scss | 54 -- .../data-table-v2/_data-table-v2-sort.scss | 68 -- .../data-table-v2/_data-table-v2.scss | 13 - scss/components/data-table/_data-table.scss | 257 ----- scss/components/date-picker/_date-picker.scss | 914 ------------------ scss/components/date-picker/_flatpickr.scss | 835 ---------------- scss/components/dropdown/_dropdown.scss | 507 ---------- scss/components/fab/_fab.scss | 69 -- .../file-uploader/_file-uploader.scss | 235 ----- scss/components/footer/_footer.scss | 71 -- scss/components/form/_form.scss | 202 ---- .../inline-loading/_inline-loading.scss | 149 --- .../components/inline-loading/_keyframes.scss | 12 - .../interior-left-nav/interior-left-nav.scss | 387 -------- scss/components/lightbox/_lightbox.scss | 70 -- scss/components/link/_link.scss | 113 --- scss/components/list-box/_list-box.scss | 628 ------------ scss/components/list/_list.scss | 126 --- scss/components/loading/_keyframes.scss | 48 - scss/components/loading/_loading.scss | 132 --- scss/components/loading/_mixins.scss | 41 - scss/components/loading/_vars.scss | 9 - scss/components/modal/_mixins.scss | 16 - scss/components/modal/_modal.scss | 300 ------ .../multi-select/_multi-select.scss | 25 - .../notification/_inline-notification.scss | 224 ----- scss/components/notification/_mixins.scss | 37 - .../notification/_toast-notification.scss | 211 ---- .../number-input/_number-input.scss | 369 ------- .../overflow-menu/_overflow-menu.scss | 395 -------- .../pagination-nav/_pagination-nav.scss | 226 ----- scss/components/pagination/_pagination.scss | 364 ------- .../_progress-indicator.scss | 400 -------- .../radio-button/_radio-button.scss | 241 ----- scss/components/search/_search.scss | 336 ------- scss/components/select/_select.scss | 417 -------- scss/components/skeleton/_skeleton-icon.scss | 19 - .../skeleton/_skeleton-placeholder.scss | 18 - scss/components/skeleton/_skeleton-text.scss | 23 - scss/components/skeleton/_skeleton.scss | 10 - scss/components/slider/_slider.scss | 342 ------- scss/components/structured-list/_mixins.scss | 86 -- .../structured-list/_structured-list.scss | 354 ------- scss/components/tabs/_tabs.scss | 523 ---------- scss/components/tag/_mixins.scss | 16 - scss/components/tag/_tag.scss | 159 --- scss/components/text-area/_text-area.scss | 187 ---- scss/components/text-input/_text-input.scss | 240 ----- scss/components/tile/_tile.scss | 330 ------- scss/components/time-picker/_time-picker.scss | 204 ---- scss/components/toggle/_toggle.scss | 415 -------- scss/components/toolbar/_toolbar.scss | 148 --- scss/components/tooltip/_tooltip.scss | 696 ------------- scss/components/ui-shell/_content.scss | 35 - scss/components/ui-shell/_functions.scss | 15 - scss/components/ui-shell/_header.scss | 248 ----- .../components/ui-shell/_navigation-menu.scss | 210 ---- .../ui-shell/_product-switcher.scss | 185 ---- scss/components/ui-shell/_side-nav.scss | 433 --------- scss/components/ui-shell/_theme.scss | 80 -- scss/components/ui-shell/_ui-shell.scss | 15 - scss/components/ui-shell/_variables.scss | 11 - .../unified-header/_account-switcher.scss | 312 ------ .../unified-header/_global-header.scss | 245 ----- .../unified-header/_left-nav-trigger.scss | 231 ----- scss/components/unified-header/_left-nav.scss | 617 ------------ scss/components/unified-header/_mixins.scss | 40 - scss/components/unified-header/_topnav.scss | 437 --------- .../unified-header/_unified-header.scss | 38 - scss/globals/grid/_experimental.scss | 69 -- scss/globals/grid/_grid.scss | 20 - scss/globals/grid/classic/_classic.scss | 145 --- scss/globals/scss/_colors.scss | 72 -- scss/globals/scss/_css--body.scss | 27 - scss/globals/scss/_css--font-face.scss | 86 -- scss/globals/scss/_css--helpers.scss | 41 - scss/globals/scss/_css--plex-core.scss | 77 -- scss/globals/scss/_css--reset.scss | 193 ---- scss/globals/scss/_css--typography.scss | 131 --- scss/globals/scss/_feature-flags.scss | 76 -- scss/globals/scss/_functions.scss | 16 - scss/globals/scss/_helper-classes.scss | 28 - scss/globals/scss/_helper-mixins.scss | 228 ----- scss/globals/scss/_import-once.scss | 23 - scss/globals/scss/_layer.scss | 52 - scss/globals/scss/_layout.scss | 114 --- scss/globals/scss/_mixins.scss | 15 - scss/globals/scss/_motion.scss | 75 -- scss/globals/scss/_spacing.scss | 58 -- scss/globals/scss/_theme-tokens.scss | 236 ----- scss/globals/scss/_theme.scss | 10 - scss/globals/scss/_typography.scss | 107 -- scss/globals/scss/_vars.scss | 14 - scss/globals/scss/styles.scss | 132 --- .../vendor/@carbon/colors/scss/colors.scss | 15 - .../vendor/@carbon/colors/scss/mixins.scss | 696 ------------- .../@carbon/elements/scss/colors/colors.scss | 8 - .../@carbon/elements/scss/colors/mixins.scss | 589 ----------- .../@carbon/elements/scss/elements.scss | 9 - .../vendor/@carbon/elements/scss/grid/12.scss | 51 - .../@carbon/elements/scss/grid/_col.scss | 124 --- .../elements/scss/grid/_container.scss | 59 -- .../@carbon/elements/scss/grid/_prefix.scss | 8 - .../@carbon/elements/scss/grid/_row.scss | 21 - .../elements/scss/grid/aspect-ratio.scss | 45 - .../@carbon/elements/scss/grid/grid.scss | 35 - .../scss/import-once/import-once.scss | 25 - .../vendor/@carbon/elements/scss/index.scss | 7 - .../elements/scss/layout/_breakpoint.scss | 168 ---- .../elements/scss/layout/_convert.scss | 23 - .../elements/scss/layout/_key-height.scss | 87 -- .../elements/scss/layout/_mini-unit.scss | 18 - .../elements/scss/layout/_spacing.scss | 39 - .../elements/scss/layout/_utilities.scss | 39 - .../@carbon/elements/scss/layout/layout.scss | 12 - .../@carbon/elements/scss/motion/motion.scss | 48 - .../@carbon/elements/scss/themes/g10.scss | 4 - .../@carbon/elements/scss/themes/g100.scss | 4 - .../@carbon/elements/scss/themes/g90.scss | 4 - .../@carbon/elements/scss/themes/mixins.scss | 210 ---- .../@carbon/elements/scss/themes/themes.scss | 4 - .../@carbon/elements/scss/themes/white.scss | 4 - .../@carbon/elements/scss/type/_classes.scss | 38 - .../elements/scss/type/_font-family.scss | 50 - .../@carbon/elements/scss/type/_prefix.scss | 8 - .../@carbon/elements/scss/type/_reset.scss | 30 - .../@carbon/elements/scss/type/_scale.scss | 45 - .../@carbon/elements/scss/type/_styles.scss | 537 ---------- .../elements/scss/type/font-face/_mono.scss | 329 ------- .../elements/scss/type/font-face/_sans.scss | 329 ------- .../elements/scss/type/font-face/_serif.scss | 329 ------- .../@carbon/elements/scss/type/type.scss | 11 - .../scss/vendor/@carbon/grid/scss/12.scss | 51 - .../scss/vendor/@carbon/grid/scss/_col.scss | 124 --- .../vendor/@carbon/grid/scss/_container.scss | 59 -- .../vendor/@carbon/grid/scss/_prefix.scss | 8 - .../scss/vendor/@carbon/grid/scss/_row.scss | 21 - .../@carbon/grid/scss/aspect-ratio.scss | 45 - .../scss/vendor/@carbon/grid/scss/grid.scss | 35 - .../@carbon/import-once/scss/import-once.scss | 25 - .../@carbon/layout/scss/_breakpoint.scss | 168 ---- .../vendor/@carbon/layout/scss/_convert.scss | 23 - .../@carbon/layout/scss/_key-height.scss | 87 -- .../@carbon/layout/scss/_mini-unit.scss | 18 - .../vendor/@carbon/layout/scss/_spacing.scss | 39 - .../@carbon/layout/scss/_utilities.scss | 39 - .../vendor/@carbon/layout/scss/layout.scss | 12 - .../vendor/@carbon/motion/scss/motion.scss | 48 - .../scss/vendor/@carbon/themes/scss/g10.scss | 4 - .../scss/vendor/@carbon/themes/scss/g100.scss | 4 - .../scss/vendor/@carbon/themes/scss/g90.scss | 4 - .../vendor/@carbon/themes/scss/mixins.scss | 210 ---- .../vendor/@carbon/themes/scss/themes.scss | 4 - .../vendor/@carbon/themes/scss/white.scss | 4 - .../vendor/@carbon/type/scss/_classes.scss | 38 - .../@carbon/type/scss/_font-family.scss | 50 - .../vendor/@carbon/type/scss/_prefix.scss | 8 - .../scss/vendor/@carbon/type/scss/_reset.scss | 30 - .../scss/vendor/@carbon/type/scss/_scale.scss | 45 - .../vendor/@carbon/type/scss/_styles.scss | 537 ---------- .../@carbon/type/scss/font-face/_mono.scss | 329 ------- .../@carbon/type/scss/font-face/_sans.scss | 329 ------- .../@carbon/type/scss/font-face/_serif.scss | 329 ------- .../scss/vendor/@carbon/type/scss/type.scss | 11 - src/components/toggle/_toggle.scss | 415 -------- src/components/toggle/toggle--small.hbs | 34 - src/globals/scss/_theme-tokens.scss | 236 ----- 183 files changed, 28191 deletions(-) delete mode 100644 scss/components/accordion/_accordion.scss delete mode 100644 scss/components/breadcrumb/_breadcrumb.scss delete mode 100644 scss/components/button/_button.scss delete mode 100644 scss/components/button/_mixins.scss delete mode 100644 scss/components/carousel/_carousel.scss delete mode 100644 scss/components/checkbox/_checkbox.scss delete mode 100644 scss/components/code-snippet/_code-snippet.scss delete mode 100644 scss/components/code-snippet/_mixins.scss delete mode 100644 scss/components/combo-box/_combo-box.scss delete mode 100644 scss/components/content-switcher/_content-switcher.scss delete mode 100644 scss/components/copy-button/_copy-button.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-action.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-core.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-expandable.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-inline-edit-cell.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-inline-edit.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-skeleton.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2-sort.scss delete mode 100644 scss/components/data-table-v2/_data-table-v2.scss delete mode 100644 scss/components/data-table/_data-table.scss delete mode 100644 scss/components/date-picker/_date-picker.scss delete mode 100644 scss/components/date-picker/_flatpickr.scss delete mode 100644 scss/components/dropdown/_dropdown.scss delete mode 100644 scss/components/fab/_fab.scss delete mode 100644 scss/components/file-uploader/_file-uploader.scss delete mode 100644 scss/components/footer/_footer.scss delete mode 100644 scss/components/form/_form.scss delete mode 100644 scss/components/inline-loading/_inline-loading.scss delete mode 100644 scss/components/inline-loading/_keyframes.scss delete mode 100644 scss/components/interior-left-nav/interior-left-nav.scss delete mode 100644 scss/components/lightbox/_lightbox.scss delete mode 100644 scss/components/link/_link.scss delete mode 100644 scss/components/list-box/_list-box.scss delete mode 100644 scss/components/list/_list.scss delete mode 100644 scss/components/loading/_keyframes.scss delete mode 100644 scss/components/loading/_loading.scss delete mode 100644 scss/components/loading/_mixins.scss delete mode 100644 scss/components/loading/_vars.scss delete mode 100644 scss/components/modal/_mixins.scss delete mode 100644 scss/components/modal/_modal.scss delete mode 100644 scss/components/multi-select/_multi-select.scss delete mode 100644 scss/components/notification/_inline-notification.scss delete mode 100644 scss/components/notification/_mixins.scss delete mode 100644 scss/components/notification/_toast-notification.scss delete mode 100644 scss/components/number-input/_number-input.scss delete mode 100644 scss/components/overflow-menu/_overflow-menu.scss delete mode 100644 scss/components/pagination-nav/_pagination-nav.scss delete mode 100644 scss/components/pagination/_pagination.scss delete mode 100644 scss/components/progress-indicator/_progress-indicator.scss delete mode 100644 scss/components/radio-button/_radio-button.scss delete mode 100644 scss/components/search/_search.scss delete mode 100644 scss/components/select/_select.scss delete mode 100644 scss/components/skeleton/_skeleton-icon.scss delete mode 100644 scss/components/skeleton/_skeleton-placeholder.scss delete mode 100644 scss/components/skeleton/_skeleton-text.scss delete mode 100644 scss/components/skeleton/_skeleton.scss delete mode 100644 scss/components/slider/_slider.scss delete mode 100644 scss/components/structured-list/_mixins.scss delete mode 100644 scss/components/structured-list/_structured-list.scss delete mode 100644 scss/components/tabs/_tabs.scss delete mode 100644 scss/components/tag/_mixins.scss delete mode 100644 scss/components/tag/_tag.scss delete mode 100644 scss/components/text-area/_text-area.scss delete mode 100644 scss/components/text-input/_text-input.scss delete mode 100644 scss/components/tile/_tile.scss delete mode 100644 scss/components/time-picker/_time-picker.scss delete mode 100644 scss/components/toggle/_toggle.scss delete mode 100644 scss/components/toolbar/_toolbar.scss delete mode 100644 scss/components/tooltip/_tooltip.scss delete mode 100644 scss/components/ui-shell/_content.scss delete mode 100644 scss/components/ui-shell/_functions.scss delete mode 100644 scss/components/ui-shell/_header.scss delete mode 100644 scss/components/ui-shell/_navigation-menu.scss delete mode 100644 scss/components/ui-shell/_product-switcher.scss delete mode 100644 scss/components/ui-shell/_side-nav.scss delete mode 100644 scss/components/ui-shell/_theme.scss delete mode 100644 scss/components/ui-shell/_ui-shell.scss delete mode 100644 scss/components/ui-shell/_variables.scss delete mode 100644 scss/components/unified-header/_account-switcher.scss delete mode 100644 scss/components/unified-header/_global-header.scss delete mode 100644 scss/components/unified-header/_left-nav-trigger.scss delete mode 100644 scss/components/unified-header/_left-nav.scss delete mode 100644 scss/components/unified-header/_mixins.scss delete mode 100644 scss/components/unified-header/_topnav.scss delete mode 100644 scss/components/unified-header/_unified-header.scss delete mode 100644 scss/globals/grid/_experimental.scss delete mode 100644 scss/globals/grid/_grid.scss delete mode 100644 scss/globals/grid/classic/_classic.scss delete mode 100644 scss/globals/scss/_colors.scss delete mode 100644 scss/globals/scss/_css--body.scss delete mode 100644 scss/globals/scss/_css--font-face.scss delete mode 100644 scss/globals/scss/_css--helpers.scss delete mode 100644 scss/globals/scss/_css--plex-core.scss delete mode 100644 scss/globals/scss/_css--reset.scss delete mode 100644 scss/globals/scss/_css--typography.scss delete mode 100644 scss/globals/scss/_feature-flags.scss delete mode 100644 scss/globals/scss/_functions.scss delete mode 100644 scss/globals/scss/_helper-classes.scss delete mode 100644 scss/globals/scss/_helper-mixins.scss delete mode 100644 scss/globals/scss/_import-once.scss delete mode 100644 scss/globals/scss/_layer.scss delete mode 100644 scss/globals/scss/_layout.scss delete mode 100644 scss/globals/scss/_mixins.scss delete mode 100644 scss/globals/scss/_motion.scss delete mode 100644 scss/globals/scss/_spacing.scss delete mode 100644 scss/globals/scss/_theme-tokens.scss delete mode 100644 scss/globals/scss/_theme.scss delete mode 100644 scss/globals/scss/_typography.scss delete mode 100644 scss/globals/scss/_vars.scss delete mode 100644 scss/globals/scss/styles.scss delete mode 100644 scss/globals/scss/vendor/@carbon/colors/scss/colors.scss delete mode 100644 scss/globals/scss/vendor/@carbon/colors/scss/mixins.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/colors/colors.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/colors/mixins.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/elements.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/12.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/_col.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/_container.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/_prefix.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/_row.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/aspect-ratio.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/grid/grid.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/import-once/import-once.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/index.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/_breakpoint.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/_convert.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/_key-height.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/_mini-unit.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/_spacing.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/_utilities.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/layout/layout.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/motion/motion.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/themes/g10.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/themes/g100.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/themes/g90.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/themes/mixins.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/themes/themes.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/themes/white.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/_classes.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/_font-family.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/_prefix.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/_reset.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/_scale.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/_styles.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/font-face/_mono.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/font-face/_sans.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/font-face/_serif.scss delete mode 100644 scss/globals/scss/vendor/@carbon/elements/scss/type/type.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/12.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/_col.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/_container.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/_prefix.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/_row.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/aspect-ratio.scss delete mode 100644 scss/globals/scss/vendor/@carbon/grid/scss/grid.scss delete mode 100644 scss/globals/scss/vendor/@carbon/import-once/scss/import-once.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/_breakpoint.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/_convert.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/_key-height.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/_mini-unit.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/_spacing.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/_utilities.scss delete mode 100644 scss/globals/scss/vendor/@carbon/layout/scss/layout.scss delete mode 100644 scss/globals/scss/vendor/@carbon/motion/scss/motion.scss delete mode 100644 scss/globals/scss/vendor/@carbon/themes/scss/g10.scss delete mode 100644 scss/globals/scss/vendor/@carbon/themes/scss/g100.scss delete mode 100644 scss/globals/scss/vendor/@carbon/themes/scss/g90.scss delete mode 100644 scss/globals/scss/vendor/@carbon/themes/scss/mixins.scss delete mode 100644 scss/globals/scss/vendor/@carbon/themes/scss/themes.scss delete mode 100644 scss/globals/scss/vendor/@carbon/themes/scss/white.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/_classes.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/_font-family.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/_prefix.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/_reset.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/_scale.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/_styles.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/font-face/_mono.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/font-face/_sans.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/font-face/_serif.scss delete mode 100644 scss/globals/scss/vendor/@carbon/type/scss/type.scss delete mode 100644 src/components/toggle/_toggle.scss delete mode 100644 src/components/toggle/toggle--small.hbs delete mode 100644 src/globals/scss/_theme-tokens.scss diff --git a/scss/components/accordion/_accordion.scss b/scss/components/accordion/_accordion.scss deleted file mode 100644 index 2c6b7f3b64b9..000000000000 --- a/scss/components/accordion/_accordion.scss +++ /dev/null @@ -1,308 +0,0 @@ -// -// Copyright IBM Corp. 2016, 2018 -// -// This source code is licensed under the Apache-2.0 license found in the -// LICENSE file in the root directory of this source tree. -// - -@import '../../globals/scss/vars'; -@import '../../globals/scss/helper-mixins'; -@import '../../globals/scss/functions'; -@import '../../globals/scss/import-once'; -@import '../../globals/scss/css--reset'; -@import '../../globals/scss/css--typography'; - -@mixin accordion { - .#{$prefix}--accordion { - @include reset; - @include font-family; - list-style: none; - width: 100%; - } - - .#{$prefix}--accordion__item { - transition: all $transition--base $carbon--standard-easing; - border-top: 1px solid $ui-03; - overflow: hidden; - - &:focus { - outline: none; - - .#{$prefix}--accordion__arrow { - @include focus-outline('border'); - overflow: visible; // safari fix - outline-offset: -0.5px; // safari fix - } - } - - &:last-child { - border-bottom: 1px solid $ui-03; - } - } - - .#{$prefix}--accordion__heading { - @include button-reset; - color: $text-01; - display: flex; - align-items: center; - justify-content: $accordion-justify-content; - flex-direction: $accordion-flex-direction; - cursor: pointer; - padding: $spacing-xs 0; - - // new version of markup uses focus on the heading, - // not the list element itself - &:focus { - outline: none; - - .#{$prefix}--accordion__arrow { - @include focus-outline('border'); - overflow: visible; // safari fix - outline-offset: -0.5px; // safari fix - } - } - } - - .#{$prefix}--accordion__arrow { - transition: all $transition--base $carbon--standard-easing; - height: 1.25rem; - width: 1.25rem; - padding: $spacing-2xs $spacing-3xs $spacing-2xs $spacing-2xs; - margin: $accordion-arrow-margin; - fill: $ui-05; - transform: rotate(0) /*rtl:rotate(180deg)*/; - } - - .#{$prefix}--accordion__title { - @include typescale('epsilon'); - @include line-height('body'); - margin: $accordion-title-margin; - font-weight: 400; - text-align: left; - } - - .#{$prefix}--accordion__content { - transition: all $transition--expansion $carbon--ease-out; - padding: $accordion-content-padding; - height: 0; - visibility: hidden; - opacity: 0; - - p { - @include typescale('zeta'); - } - } - - .#{$prefix}--accordion__item--active { - overflow: visible; - - > .#{$prefix}--accordion__content { - padding-top: $spacing-md; - padding-bottom: $spacing-lg; - height: auto; - visibility: visible; - opacity: 1; - transition: all $transition--expansion $carbon--ease-in; - } - - > .#{$prefix}--accordion__heading > .#{$prefix}--accordion__arrow { - /*rtl:ignore*/ - transform: rotate(90deg); - fill: $brand-01; - } - } - - // Skeleton state - .#{$prefix}--accordion.#{$prefix}--skeleton .#{$prefix}--accordion__heading, - .#{$prefix}--accordion.#{$prefix}--skeleton .#{$prefix}--accordion__button { - cursor: default; - } - - .#{$prefix}--accordion.#{$prefix}--skeleton .#{$prefix}--accordion__arrow { - pointer-events: none; - fill: $ui-05; - cursor: default; - - &:hover, - &:focus, - &:active { - border: none; - outline: none; - cursor: default; - } - } - - .#{$prefix}--skeleton .#{$prefix}--accordion__heading:focus .#{$prefix}--accordion__arrow { - border: none; - outline: none; - cursor: default; - } - - .#{$prefix}--accordion__title.#{$prefix}--skeleton__text { - margin-bottom: 0; - } -} - -@mixin accordion--x { - .#{$prefix}--accordion { - @include reset; - - list-style: none; - width: 100%; - } - - .#{$prefix}--accordion__item { - transition: all $transition--base $carbon--standard-easing; - border-top: 1px solid $ui-03; - overflow: visible; - - &:last-child { - border-bottom: 1px solid $ui-03; - } - } - - .#{$prefix}--accordion__heading { - @include button-reset; - color: $text-01; - display: flex; - align-items: center; - justify-content: $accordion-justify-content; - cursor: pointer; - padding: rem(6px) 0; - flex-direction: $accordion-flex-direction; - position: relative; - width: 100%; - margin: 0; - transition: background-color motion(standard, productive) 100ms; - - &:hover:before, - &:focus:before { - content: ''; - position: absolute; - top: -1px; - left: 0; - width: 100%; - height: calc(100% + 2px); - } - - &:hover:before { - background-color: $hover-ui; - } - - &:focus { - outline: none; - } - - &:focus:before { - @include focus-outline('outline'); - } - } - - .#{$prefix}--accordion__arrow { - @include focus-outline('reset'); - // Without flex basis and flex shrink being set here, our icon width can go - // <16px and cause the icon to render in the incorrect artboard size - flex: 0 0 1rem; - width: 1rem; - height: 1rem; - margin: $accordion-arrow-margin; - fill: $ui-05; - // TODO: RTL rotate(180deg); - transform: rotate(90deg); - transition: all $transition--base $carbon--standard-easing; - } - - .#{$prefix}--accordion__title { - @include type-style('body-long-01'); - - margin: $accordion-title-margin; - width: 100%; - text-align: left; - z-index: 0; - } - - .#{$prefix}--accordion__content { - // Transition property for when the accordion closes - transition: height motion(standard, productive) 120ms, padding motion(standard, productive) 120ms; - padding-left: $spacing-md; - padding-right: 25%; - height: 0; - visibility: hidden; - opacity: 0; - - @include max-breakpoint('bp--xs--major') { - padding-right: $spacing-3xl; - } - - p { - @include type-style('body-long-01'); - height: 0; - transition: height motion(standard, productive) 120ms; - } - } - - .#{$prefix}--accordion__item--active { - overflow: visible; - - .#{$prefix}--accordion__content { - padding-bottom: $spacing-lg; - padding-top: $spacing-xs; - height: auto; - visibility: visible; - opacity: 1; - // Transition property for when the accordion opens - transition: height motion(entrance, productive) 120ms, padding-top motion(entrance, productive) 120ms, - padding-bottom motion(entrance, productive) 120ms; - - p { - @include type-style('body-long-01'); - height: auto; - transition: height motion(entrance, productive) 120ms; - } - } - - .#{$prefix}--accordion__arrow { - /*rtl:ignore*/ - transform: rotate(-90deg); - fill: $ui-05; - } - } - - // Skeleton state - .#{$prefix}--accordion.#{$prefix}--skeleton .#{$prefix}--accordion__heading, - .#{$prefix}--accordion.#{$prefix}--skeleton .#{$prefix}--accordion__button { - cursor: default; - } - - .#{$prefix}--accordion.#{$prefix}--skeleton .#{$prefix}--accordion__arrow { - pointer-events: none; - fill: $ui-05; - cursor: default; - - &:hover, - &:focus, - &:active { - border: none; - outline: none; - cursor: default; - } - } - - .#{$prefix}--skeleton .#{$prefix}--accordion__heading:focus .#{$prefix}--accordion__arrow { - border: none; - outline: none; - cursor: default; - } - - .#{$prefix}--accordion__title.#{$prefix}--skeleton__text { - margin-bottom: 0; - } -} - -@include exports('accordion') { - @if feature-flag-enabled('components-x') { - @include accordion--x; - } @else { - @include accordion; - } -} diff --git a/scss/components/breadcrumb/_breadcrumb.scss b/scss/components/breadcrumb/_breadcrumb.scss deleted file mode 100644 index 1aa1004266e0..000000000000 --- a/scss/components/breadcrumb/_breadcrumb.scss +++ /dev/null @@ -1,128 +0,0 @@ -// -// Copyright IBM Corp. 2016, 2018 -// -// This source code is licensed under the Apache-2.0 license found in the -// LICENSE file in the root directory of this source tree. -// - -@import '../../globals/scss/vars'; -@import '../../globals/scss/helper-mixins'; -@import '../../globals/scss/import-once'; -@import '../../globals/scss/layout'; -@import '../../globals/scss/css--typography'; -@import '../link/link'; - -@mixin breadcrumb { - .#{$prefix}--breadcrumb { - @include typescale('zeta'); - @include font-family; - display: inline; - - @include breakpoint(bp--xs--major) { - display: flex; - flex-wrap: wrap; - } - } - - .#{$prefix}--breadcrumb-item { - margin-right: $spacing-md; - display: flex; - align-items: center; - } - - .#{$prefix}--breadcrumb-item::after { - content: '/'; - margin-left: $spacing-md; - color: $text-02; - } - - .#{$prefix}--breadcrumb--no-trailing-slash .#{$prefix}--breadcrumb-item:last-child::after { - content: ''; - } - - .#{$prefix}--breadcrumb-item:last-child { - margin-right: 0; - - &::after { - margin-right: 0; - } - } - - .#{$prefix}--breadcrumb .#{$prefix}--link { - white-space: nowrap; - font-weight: 400; - text-decoration: none; - border-bottom: 1px solid transparent; - - &:hover, - &:focus { - outline: none; - color: $hover-primary-text; - border-bottom: 1px solid $hover-primary-text; - } - } - - // Skeleton State - .#{$prefix}--breadcrumb.#{$prefix}--skeleton .#{$prefix}--link { - @include skeleton; - width: rem(100px); - height: 1rem; - } -} - -@mixin breadcrumb-experimental { - .#{$prefix}--breadcrumb { - @include typescale('zeta'); - @include font-family; - display: inline; - - @include breakpoint(bp--xs--major) { - display: flex; - flex-wrap: wrap; - } - } - - .#{$prefix}--breadcrumb-item { - margin-right: $spacing-xs; - display: flex; - align-items: center; - line-height: 1.25; //needed for correct spacing for underline hover - } - - .#{$prefix}--breadcrumb-item::after { - content: '/'; - margin-left: $spacing-xs; - color: $text-02; - } - - .#{$prefix}--breadcrumb--no-trailing-slash .#{$prefix}--breadcrumb-item:last-child::after { - content: ''; - } - - .#{$prefix}--breadcrumb-item:last-child { - margin-right: 0; - - &::after { - margin-right: 0; - } - } - - .#{$prefix}--breadcrumb .#{$prefix}--link { - white-space: nowrap; - } - - // Skeleton State - .#{$prefix}--breadcrumb.#{$prefix}--skeleton .#{$prefix}--link { - @include skeleton; - width: rem(100px); - height: 1rem; - } -} - -@include exports('breadcrumb') { - @if feature-flag-enabled('components-x') { - @include breadcrumb-experimental; - } @else { - @include breadcrumb; - } -} diff --git a/scss/components/button/_button.scss b/scss/components/button/_button.scss deleted file mode 100644 index 296cc57ca236..000000000000 --- a/scss/components/button/_button.scss +++ /dev/null @@ -1,315 +0,0 @@ -// -// Copyright IBM Corp. 2016, 2018 -// -// This source code is licensed under the Apache-2.0 license found in the -// LICENSE file in the root directory of this source tree. -// - -@import '../../globals/scss/vars'; -@import '../../globals/scss/typography'; -@import '../../globals/scss/helper-mixins'; -@import '../../globals/scss/import-once'; -@import 'mixins'; -@import '../../globals/scss/css--reset'; - -@mixin button { - //