Browse Source

adding back in the deprecated classes

pull/362/head
connors 11 years ago
parent
commit
17ae73f987
  1. 26
      dist/ratchet.css
  2. 2
      dist/ratchet.min.css
  3. 26
      docs/dist/ratchet.css
  4. 2
      docs/dist/ratchet.min.css
  5. 25
      sass/push.scss

26
dist/ratchet.css vendored

@ -1230,6 +1230,32 @@ select {
content: '\e826';
}
.push-left:after,
.push-right:after {
position: absolute;
top: 50%;
display: inline-block;
color: #bbb;
font-family: Ratchicons;
font-size: inherit;
text-decoration: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.push-left:after {
left: 15px;
content: '\e822';
}
.push-right:after {
right: 15px;
content: '\e826';
}
@font-face {
font-family: Ratchicons;
src: url("ratchicons/ratchicons.eot");

2
dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

26
docs/dist/ratchet.css vendored

@ -1230,6 +1230,32 @@ select {
content: '\e826';
}
.push-left:after,
.push-right:after {
position: absolute;
top: 50%;
display: inline-block;
color: #bbb;
font-family: Ratchicons;
font-size: inherit;
text-decoration: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.push-left:after {
left: 15px;
content: '\e822';
}
.push-right:after {
right: 15px;
content: '\e826';
}
@font-face {
font-family: Ratchicons;
src: url("ratchicons/ratchicons.eot");

2
docs/dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

25
sass/push.scss

@ -57,3 +57,28 @@
right: 15px;
content: '\e826';
}
// Deprecated `push-left` and `push-right` as of 2.0.1
.push-left,
.push-right {
&:after {
position: absolute;
top: 50%;
display: inline-block;
color: #bbb;
font-family: Ratchicons;
font-size: inherit;
text-decoration: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
@include transform(translateY(-50%));
}
}
.push-left:after {
left: 15px;
content: '\e822';
}
.push-right:after {
right: 15px;
content: '\e826';
}

Loading…
Cancel
Save