Last change
on this file since 90741 was
90741,
checked in by cedric@…, 6 years ago
|
BS 3.3.5 dans la place, work in progress
le plugin passe en v3 dev
On s'occupera de la couche de compat BSv2 dans un second temps
|
File size:
574 bytes
|
Line | |
---|
1 | // CSS image replacement |
---|
2 | // |
---|
3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for |
---|
4 | // mixins being reused as classes with the same name, this doesn't hold up. As |
---|
5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. |
---|
6 | // |
---|
7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 |
---|
8 | |
---|
9 | // Deprecated as of v3.0.1 (will be removed in v4) |
---|
10 | .hide-text() { |
---|
11 | font: ~"0/0" a; |
---|
12 | color: transparent; |
---|
13 | text-shadow: none; |
---|
14 | background-color: transparent; |
---|
15 | border: 0; |
---|
16 | } |
---|
17 | |
---|
18 | // New mixin to use as of v3.0.1 |
---|
19 | .text-hide() { |
---|
20 | .hide-text(); |
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.