Skip to content

Commit 65b9026

Browse files
committed
Drop mask alias
1 parent 12cd392 commit 65b9026

File tree

5 files changed

+2
-28
lines changed

5 files changed

+2
-28
lines changed

__tests__/fixtures/tailwind.css

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2228,10 +2228,6 @@ button,
22282228
overflow: hidden;
22292229
}
22302230

2231-
.mask {
2232-
overflow: hidden;
2233-
}
2234-
22352231
.overflow-visible {
22362232
overflow: visible;
22372233
}
@@ -5167,10 +5163,6 @@ button,
51675163
overflow: hidden;
51685164
}
51695165

5170-
.sm\:mask {
5171-
overflow: hidden;
5172-
}
5173-
51745166
.sm\:overflow-visible {
51755167
overflow: visible;
51765168
}
@@ -8107,10 +8099,6 @@ button,
81078099
overflow: hidden;
81088100
}
81098101

8110-
.md\:mask {
8111-
overflow: hidden;
8112-
}
8113-
81148102
.md\:overflow-visible {
81158103
overflow: visible;
81168104
}
@@ -11047,10 +11035,6 @@ button,
1104711035
overflow: hidden;
1104811036
}
1104911037

11050-
.lg\:mask {
11051-
overflow: hidden;
11052-
}
11053-
1105411038
.lg\:overflow-visible {
1105511039
overflow: visible;
1105611040
}
@@ -13987,10 +13971,6 @@ button,
1398713971
overflow: hidden;
1398813972
}
1398913973

13990-
.xl\:mask {
13991-
overflow: hidden;
13992-
}
13993-
1399413974
.xl\:overflow-visible {
1399513975
overflow: visible;
1399613976
}

docs/source/_assets/js/components/ResponsiveCodeSample.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<p class="text-xs">xl</p>
2323
</span>
2424
</div>
25-
<div class="rounded mask border-2 border-smoke mb-8">
25+
<div class="rounded overflow-hidden border-2 border-smoke mb-8">
2626
<div class="p-4 bg-smoke-lighter border-b-2 border-smoke">
2727
<div class="whitespace-pre font-mono text-slate-lighter text-sm overflow-x-scroll" v-html="highlightedCode"></div>
2828
</div>

docs/source/_partials/code-sample.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="rounded mask border-2 border-smoke mb-8 bg-white">
1+
<div class="rounded overflow-hidden border-2 border-smoke mb-8 bg-white">
22
<div class="border-b-2 border-smoke p-4 {{ $class ?? '' }}">
33
{{ $slot }}
44
</div>

docs/source/docs/overflow.blade.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ title: "Overflow"
4646
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: hidden;</td>
4747
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Clip any content that overflows the element.</td>
4848
</tr>
49-
<tr>
50-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.mask</td>
51-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: hidden;</td>
52-
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Clip any content that overflows the element. Alias of <code>.overflow-hidden</code>.</td>
53-
</tr>
5449
<tr>
5550
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.overflow-x-scroll</td>
5651
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow-x: auto;</td>

src/generators/overflow.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export default function() {
44
return defineClasses({
55
'overflow-auto': { overflow: 'auto' },
66
'overflow-hidden': { overflow: 'hidden' },
7-
'mask': { overflow: 'hidden' },
87
'overflow-visible': { overflow: 'visible' },
98
'overflow-scroll': { overflow: 'scroll' },
109
'overflow-x-scroll': { 'overflow-x': 'auto', '-ms-overflow-style': '-ms-autohiding-scrollbar' },

0 commit comments

Comments
 (0)