diff --git a/core/scss/ui/_buttons.scss b/core/scss/ui/_buttons.scss index 10b909b63..eb12616de 100644 --- a/core/scss/ui/_buttons.scss +++ b/core/scss/ui/_buttons.scss @@ -179,6 +179,10 @@ @include elements-list; } +.btn-list-nowrap { + flex-wrap: nowrap; +} + // // Button floating // diff --git a/core/scss/ui/_cards.scss b/core/scss/ui/_cards.scss index c5044a0f3..aa6a981d9 100644 --- a/core/scss/ui/_cards.scss +++ b/core/scss/ui/_cards.scss @@ -404,18 +404,19 @@ Card table */ .card-table { margin-bottom: 0 !important; + border-bottom-width: 0; tr { td, th { &:first-child { padding-left: $card-spacer-x; - border-left: 0; + border-left-width: 0; } &:last-child { padding-right: $card-spacer-x; - border-right: 0; + border-right-width: 0; } } } @@ -425,11 +426,20 @@ Card table tfoot { tr { &:first-child { - border-top: 0; + border-top-width: 0; td, th { - border-top: 0; + border-top-width: 0; + } + } + + &:last-child { + border-bottom-width: 0; + + td, + th { + border-bottom-width: 0; } } } diff --git a/preview/pages/_data/menu.json b/preview/pages/_data/menu.json index e15d97b67..afd07dfde 100644 --- a/preview/pages/_data/menu.json +++ b/preview/pages/_data/menu.json @@ -295,6 +295,11 @@ "title": "Music", "url": "music.html" }, + "orders": { + "title": "Orders", + "url": "orders.html", + "badge": "New" + }, "page-loader": { "title": "Page loader", "url": "page-loader.html" diff --git a/preview/pages/orders.html b/preview/pages/orders.html new file mode 100644 index 000000000..6da2787bc --- /dev/null +++ b/preview/pages/orders.html @@ -0,0 +1,43 @@ +--- +title: Orders +page-header: Orders +page-menu: extra.orders +layout: default +permalink: orders.html +--- + +
\ No newline at end of file