Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
04baa075
Commit
04baa075
authored
Mar 28, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document .backface-visibility and update comments and initial value
parent
feccc6e7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
6 deletions
+18
-6
docs/assets/bootstrap.zip
docs/assets/bootstrap.zip
+0
-0
docs/less.html
docs/less.html
+5
-0
docs/templates/pages/less.mustache
docs/templates/pages/less.mustache
+5
-0
less/mixins.less
less/mixins.less
+8
-6
No files found.
docs/assets/bootstrap.zip
View file @
04baa075
No preview for this file type
docs/less.html
View file @
04baa075
...
@@ -870,6 +870,11 @@
...
@@ -870,6 +870,11 @@
<td><code>
@select
</code></td>
<td><code>
@select
</code></td>
<td>
Control cursor selection of text on a page
</td>
<td>
Control cursor selection of text on a page
</td>
</tr>
</tr>
<tr>
<td><code>
.backface-visibility()
</code></td>
<td><code>
@visibility: visible
</code></td>
<td>
Prevent flickering of content when using CSS 3D transforms
</td>
</tr>
<tr>
<tr>
<td><code>
.resizable()
</code></td>
<td><code>
.resizable()
</code></td>
<td><code>
@direction: both
</code></td>
<td><code>
@direction: both
</code></td>
...
...
docs/templates/pages/less.mustache
View file @
04baa075
...
@@ -793,6 +793,11 @@
...
@@ -793,6 +793,11 @@
<td><code>
@select
</code></td>
<td><code>
@select
</code></td>
<td>
{{
_i
}}
Control cursor selection of text on a page
{{/
i
}}
</td>
<td>
{{
_i
}}
Control cursor selection of text on a page
{{/
i
}}
</td>
</tr>
</tr>
<tr>
<td><code>
.backface-visibility()
</code></td>
<td><code>
@visibility: visible
</code></td>
<td>
{{
_i
}}
Prevent flickering of content when using CSS 3D transforms
{{/
i
}}
</td>
</tr>
<tr>
<tr>
<td><code>
.resizable()
</code></td>
<td><code>
.resizable()
</code></td>
<td><code>
@direction: both
</code></td>
<td><code>
@direction: both
</code></td>
...
...
less/mixins.less
View file @
04baa075
...
@@ -251,13 +251,15 @@
...
@@ -251,13 +251,15 @@
transform: translate(@x, @y, @z);
transform: translate(@x, @y, @z);
}
}
// Back-face Visibility
// Backface visibility
// This prevents the browser flickering when using to CSS transformations
// Prevent browsers from flickering when using CSS 3D transforms.
.backface-visibility(@visibility){
// Default value is `visible`, but can be changed to `hidden
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
.backface-visibility(@visibility: visible){
-webkit-backface-visibility: @visibility;
-webkit-backface-visibility: @visibility;
-moz-backface-visibility: @visibility;
-moz-backface-visibility: @visibility;
-ms-backface-visibility: @visibility;
-ms-backface-visibility: @visibility;
backface-visibility: @visibility;
backface-visibility: @visibility;
}
}
// Background clipping
// Background clipping
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment