mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* ensure we use `npm@7` for older versions of Node.js This is important so that we can guarantee that `workspaces` are supported which we depend on right now (just for install purposes). * tmp: trigger CI build (GitHub is doing funky things and not working right now) * drop Node.js 12 from Node.js CI workflow * focus on Node.js 16 for now * Revert "tmp: trigger CI build (GitHub is doing funky things and not working right now)" This reverts commit a3deed472da498f8a52404b2e8ccbc16f0e93101. * WIP * Add support for logical properties in inline direction * Add scroll-margin/scroll-padding utilities * Update CHANGELOG * Rename inset-s/e to start/end * Update sort order in test * Use logical properties for space/divide in Oxide * run non-oxide and OXIDE tests + fix oxide version tests * drop oxide specific test job The normal `npm run test` will already include the non-oxide and oxide version when running tests. Co-authored-by: Robin Malfait <malfait.robin@gmail.com> Co-authored-by: Adam Wathan <4323180+adamwathan@users.noreply.github.com>
110 lines
3.2 KiB
JavaScript
110 lines
3.2 KiB
JavaScript
import { run, html, css, defaults } from '../util/run'
|
|
import { env } from '../../src/lib/sharedState'
|
|
|
|
it('should add the divide styles for divide-y and a default border color', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="divide-y"></div>` }],
|
|
corePlugins: { preflight: false },
|
|
}
|
|
|
|
return run('@tailwind base; @tailwind utilities;', config).then((result) => {
|
|
expect(result.css).toMatchCss(css`
|
|
${defaults}
|
|
|
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
--tw-divide-y-reverse: 0;
|
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
it('should add the divide styles for divide-x and a default border color', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="divide-x"></div>` }],
|
|
corePlugins: { preflight: false },
|
|
}
|
|
|
|
let expected = env.OXIDE
|
|
? css`
|
|
${defaults}
|
|
|
|
.divide-x > :not([hidden]) ~ :not([hidden]) {
|
|
--tw-divide-x-reverse: 0;
|
|
border-inline-end-width: calc(1px * var(--tw-divide-x-reverse));
|
|
border-inline-start-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
|
|
}
|
|
`
|
|
: css`
|
|
${defaults}
|
|
|
|
.divide-x > :not([hidden]) ~ :not([hidden]) {
|
|
--tw-divide-x-reverse: 0;
|
|
border-right-width: calc(1px * var(--tw-divide-x-reverse));
|
|
border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
|
|
}
|
|
`
|
|
|
|
return run('@tailwind base; @tailwind utilities;', config).then((result) => {
|
|
expect(result.css).toMatchCss(expected)
|
|
})
|
|
})
|
|
|
|
it('should add the divide styles for divide-y-reverse and a default border color', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="divide-y-reverse"></div>` }],
|
|
corePlugins: { preflight: false },
|
|
}
|
|
|
|
return run('@tailwind base; @tailwind utilities;', config).then((result) => {
|
|
expect(result.css).toMatchCss(css`
|
|
${defaults}
|
|
|
|
.divide-y-reverse > :not([hidden]) ~ :not([hidden]) {
|
|
--tw-divide-y-reverse: 1;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
it('should add the divide styles for divide-x-reverse and a default border color', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="divide-x-reverse"></div>` }],
|
|
corePlugins: { preflight: false },
|
|
}
|
|
|
|
return run('@tailwind base; @tailwind utilities;', config).then((result) => {
|
|
expect(result.css).toMatchCss(css`
|
|
${defaults}
|
|
|
|
.divide-x-reverse > :not([hidden]) ~ :not([hidden]) {
|
|
--tw-divide-x-reverse: 1;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
it('should only inject the base styles once if we use divide and border at the same time', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="divide-y border-r"></div>` }],
|
|
corePlugins: { preflight: false },
|
|
}
|
|
|
|
return run('@tailwind base; @tailwind utilities;', config).then((result) => {
|
|
expect(result.css).toMatchCss(css`
|
|
${defaults}
|
|
|
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
--tw-divide-y-reverse: 0;
|
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
}
|
|
|
|
.border-r {
|
|
border-right-width: 1px;
|
|
}
|
|
`)
|
|
})
|
|
})
|