Skip to content
Prev Previous commit
Next Next commit
fix bad merge
  • Loading branch information
scottbedard committed Apr 4, 2025
commit abd5fc816fc08f132303ea03d8648c0cfa1207e6
58 changes: 27 additions & 31 deletions packages/tailwindcss/src/utilities.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10917,6 +10917,10 @@ test('bg', async () => {
}
}

.bg-blue-500 {
background-color: var(--background-color-blue-500);
}

.bg-current, .bg-current\\/50 {
background-color: currentColor;
}
Expand All @@ -10937,10 +10941,6 @@ test('bg', async () => {
}
}

.bg-blue-500 {
background-color: var(--background-color-blue-500);
}

.bg-current\\/\\[50\\%\\] {
background-color: currentColor;
}
Expand Down Expand Up @@ -19340,6 +19340,10 @@ test('stroke', async () => {
}
}

.stroke-blue-500 {
stroke: var(--stroke-blue-500);
}

.stroke-current, .stroke-current\\/50 {
stroke: currentColor;
}
Expand All @@ -19360,10 +19364,6 @@ test('stroke', async () => {
}
}

.stroke-blue-500 {
stroke: var(--stroke-blue-500);
}

.stroke-current\\/\\[50\\%\\] {
stroke: currentColor;
}
Expand Down Expand Up @@ -20694,6 +20694,12 @@ test('decoration', async () => {
}
}

.decoration-blue-500 {
-webkit-text-decoration-color: var(--text-decoration-color-blue-500);
-webkit-text-decoration-color: var(--text-decoration-color-blue-500);
text-decoration-color: var(--text-decoration-color-blue-500);
}

.decoration-current, .decoration-current\\/50 {
text-decoration-color: currentColor;
}
Expand All @@ -20718,12 +20724,6 @@ test('decoration', async () => {
}
}

.decoration-blue-500 {
-webkit-text-decoration-color: var(--text-decoration-color-blue-500);
-webkit-text-decoration-color: var(--text-decoration-color-blue-500);
text-decoration-color: var(--text-decoration-color-blue-500);
}

.decoration-current\\/\\[50\\%\\] {
text-decoration-color: currentColor;
}
Expand Down Expand Up @@ -22687,6 +22687,10 @@ test('outline', async () => {
}
}

.outline-blue-500 {
outline-color: var(--outline-color-blue-500);
}

.outline-current, .outline-current\\/50 {
outline-color: currentColor;
}
Expand All @@ -22707,10 +22711,6 @@ test('outline', async () => {
}
}

.outline-blue-500 {
outline-color: var(--outline-color-blue-500);
}

.outline-current\\/\\[50\\%\\] {
outline-color: currentColor;
}
Expand Down Expand Up @@ -23244,6 +23244,10 @@ test('text', async () => {
}
}

.text-blue-500 {
color: var(--text-color-blue-500);
}

.text-current, .text-current\\/50 {
color: currentColor;
}
Expand All @@ -23264,10 +23268,6 @@ test('text', async () => {
}
}

.text-blue-500 {
color: var(--text-color-blue-500);
}

.text-current\\/\\[50\\%\\] {
color: currentColor;
}
Expand Down Expand Up @@ -23988,7 +23988,7 @@ test('shadow', async () => {
}

.shadow-blue-500 {
--tw-shadow-color: color-mix(in srgb, #3b82f6 var(--tw-shadow-alpha), transparent);
--tw-shadow-color: #3b82f6;
}

@supports (color: color-mix(in lab, red, red)) {
Expand Down Expand Up @@ -25736,14 +25736,6 @@ test('ring-offset', async () => {
}
}

.ring-offset-blue-500 {
--tw-ring-offset-color: var(--ring-offset-color-blue-500);
}

.ring-offset-current {
--tw-ring-offset-color: currentColor;
}

.ring-offset-\\[color\\:var\\(--my-color\\)\\]\\/\\[50\\%\\] {
--tw-ring-offset-color: var(--my-color);
}
Expand Down Expand Up @@ -25784,6 +25776,10 @@ test('ring-offset', async () => {
}
}

.ring-offset-blue-500 {
--tw-ring-offset-color: var(--ring-offset-color-blue-500);
}

.ring-offset-current, .ring-offset-current\\/50 {
--tw-ring-offset-color: currentcolor;
}
Expand Down