mirror of
https://github.com/clearleft/clearless.git
synced 2026-01-09 13:47:55 -05:00
286 lines
7.9 KiB
Plaintext
286 lines
7.9 KiB
Plaintext
// ==============================================
|
|
// Generated content icon helpers
|
|
// ----------------------------------------------
|
|
// These can only be used on block or inline-block elements.
|
|
// ==============================================
|
|
|
|
// Non-sprited icons --------------------------------
|
|
|
|
.prepend-icon( @icon-image, @width, @height, @nudge-left:0, @nudge-top:0, @pad:10px ) when (@using-modernizr) {
|
|
.generatedcontent & {
|
|
position: relative;
|
|
padding-left: @width + @pad;
|
|
}
|
|
.generatedcontent &:before {
|
|
._generated-icon( @width, @height, @icon-image );
|
|
top: @nudge-top;
|
|
left: @nudge-left;
|
|
}
|
|
}
|
|
|
|
.prepend-icon( @icon-image, @width, @height, @nudge-left:0, @nudge-top:0, @pad:10px ) when not (@using-modernizr) {
|
|
position: relative;
|
|
padding-left: @width + @pad;
|
|
&:before {
|
|
._generated-icon( @width, @height, @icon-image );
|
|
top: @nudge-top;
|
|
left: @nudge-left;
|
|
}
|
|
}
|
|
|
|
.append-icon( @icon-image, @width, @height, @nudge-right:0, @nudge-top:0, @pad:10px ) when (@using-modernizr) {
|
|
.generatedcontent & {
|
|
position: relative;
|
|
padding-right: @width + @pad;
|
|
}
|
|
.generatedcontent &:after {
|
|
._generated-icon( @width, @height, @icon-image );
|
|
top: @nudge-top;
|
|
right: @nudge-right;
|
|
}
|
|
}
|
|
|
|
.append-icon( @icon-image, @width, @height, @nudge-right:0, @nudge-top:0, @pad:10px ) when not (@using-modernizr) {
|
|
position: relative;
|
|
padding-right: @width + @pad;
|
|
.generatedcontent &:after {
|
|
._generated-icon( @width, @height, @icon-image );
|
|
top: @nudge-top;
|
|
right: @nudge-right;
|
|
}
|
|
}
|
|
|
|
// Sprited icons --------------------------------
|
|
|
|
.prepend-sprite-icon(@x, @y, @width, @height, @nudge-left:0, @nudge-top:0, @pad:10px, @sprite-image:@sprite-image, @sprite-grid:@sprite-grid) when (@using-modernizr) {
|
|
.generatedcontent & {
|
|
position: relative;
|
|
padding-left: @width + @pad;
|
|
}
|
|
.generatedcontent &:before {
|
|
._generated-sprite-icon( @x, @y, @width, @height, @sprite-image, @sprite-grid );
|
|
top: @nudge-top;
|
|
left: @nudge-left;
|
|
}
|
|
}
|
|
|
|
.prepend-sprite-icon(@x, @y, @width, @height, @nudge-left:0, @nudge-top:0, @pad:10px, @sprite-image:@sprite-image, @sprite-grid:@sprite-grid) when not (@using-modernizr) {
|
|
position: relative;
|
|
padding-left: @width + @pad;
|
|
&:before {
|
|
._generated-sprite-icon( @x, @y, @width, @height, @sprite-image, @sprite-grid );
|
|
top: @nudge-top;
|
|
left: @nudge-left;
|
|
}
|
|
}
|
|
|
|
.append-sprite-icon(@x, @y, @width, @height, @nudge-right:0, @nudge-top:0, @pad:10px, @sprite-image:@sprite-image, @sprite-grid:@sprite-grid) when (@using-modernizr) {
|
|
.generatedcontent & {
|
|
padding-right: @width + @pad;
|
|
position: relative;
|
|
}
|
|
.generatedcontent &:after {
|
|
._generated-sprite-icon( @x, @y, @width, @height, @sprite-image, @sprite-grid );
|
|
top: @nudge-top;
|
|
right: @nudge-right;
|
|
}
|
|
}
|
|
|
|
.append-sprite-icon(@x, @y, @width, @height, @nudge-right:0, @nudge-top:0, @pad:10px, @sprite-image:@sprite-image, @sprite-grid:@sprite-grid) when not (@using-modernizr) {
|
|
position: relative;
|
|
padding-right: @width + @pad;
|
|
&:after {
|
|
._generated-sprite-icon( @x, @y, @width, @height, @sprite-image, @sprite-grid );
|
|
top: @nudge-top;
|
|
right: @nudge-right;
|
|
}
|
|
}
|
|
|
|
.prepend-sprite-icon-pos(@x, @y, @nudge-left:0, @nudge-top:0, @sprite-grid:@sprite-grid) when (@using-modernizr) {
|
|
.generatedcontent &:before {
|
|
.sprite-pos(@x, @y, @sprite-grid);
|
|
.nudge-l(@nudge-left);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
.prepend-sprite-icon-pos(@x, @y, @nudge-left:0, @nudge-top:0, @sprite-grid:@sprite-grid) when not (@using-modernizr) {
|
|
&:before {
|
|
.sprite-pos(@x, @y, @sprite-grid);
|
|
.nudge-l(@nudge-left);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
.append-sprite-icon-pos(@x, @y, @nudge-right:0, @nudge-top:0, @sprite-grid:@sprite-grid) when (@using-modernizr) {
|
|
.generatedcontent &:after {
|
|
.sprite-pos(@x, @y, @sprite-grid);
|
|
.nudge-r(@nudge-right);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
.append-sprite-icon-pos(@x, @y, @nudge-right:0, @nudge-top:0, @sprite-grid:@sprite-grid) when not (@using-modernizr) {
|
|
&:after {
|
|
.sprite-pos(@x, @y, @sprite-grid);
|
|
.nudge-r(@nudge-right);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
// ---- Partials -----------------------
|
|
|
|
.prepend-icon-setup(@width:0, @height:0, @nudge-left:0, @nudge-top:0, @pad:10px) when (@using-modernizr) {
|
|
.generatedcontent & {
|
|
position: relative;
|
|
._pad-left(@width, @pad);
|
|
}
|
|
.generatedcontent &:before {
|
|
position: absolute;
|
|
display: block;
|
|
content: ' ';
|
|
top: 0;
|
|
left: 0;
|
|
._size(@width, @height);
|
|
}
|
|
}
|
|
|
|
.prepend-icon-setup(@width:0, @height:0, @nudge-left:0, @nudge-top:0, @pad:10px) when not (@using-modernizr) {
|
|
position: relative;
|
|
._pad-left(@width, @pad);
|
|
&:before {
|
|
position: absolute;
|
|
display: block;
|
|
content: ' ';
|
|
top: 0;
|
|
left: 0;
|
|
._size(@width, @height);
|
|
}
|
|
}
|
|
|
|
.append-icon-setup(@width:0, @height:0, @nudge-left:0, @nudge-top:0, @pad:10px) when (@using-modernizr) {
|
|
.generatedcontent & {
|
|
position: relative;
|
|
._pad-right(@width, @pad);
|
|
}
|
|
.generatedcontent &:after {
|
|
position: absolute;
|
|
display: block;
|
|
content: ' ';
|
|
top: 0;
|
|
right: 0;
|
|
._size(@width, @height);
|
|
}
|
|
}
|
|
|
|
.append-icon-setup(@width:0, @height:0, @nudge-left:0, @nudge-top:0, @pad:10px) when not (@using-modernizr) {
|
|
position: relative;
|
|
._pad-right(@width, @pad);
|
|
&:after {
|
|
position: absolute;
|
|
display: block;
|
|
content: ' ';
|
|
top: 0;
|
|
right: 0;
|
|
._size(@width, @height);
|
|
}
|
|
}
|
|
|
|
.prepend-icon-image(@icon-image, @width:0, @height:0, @nudge-left:0, @nudge-top:0, @pad:10px) when (@using-modernizr) {
|
|
._gc-pad-left(@width, @pad);
|
|
.generatedcontent &:before {
|
|
background: url(@icon-image) no-repeat 0 0;
|
|
._size(@width, @height);
|
|
.nudge-l(@nudge-left);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
.prepend-icon-image(@icon-image, @width:0, @height:0, @nudge-left:0, @nudge-top:0, @pad:10px) when not (@using-modernizr) {
|
|
._pad-left(@width, @pad);
|
|
&:before {
|
|
background: url(@icon-image) no-repeat 0 0;
|
|
._size(@width, @height);
|
|
.nudge-l(@nudge-left);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
.append-icon-image(@icon-image, @width:0, @height:0, @nudge-right:0, @nudge-top:0, @pad:10px) when (@using-modernizr) {
|
|
._gc-pad-right(@width, @pad);
|
|
.generatedcontent &:after {
|
|
background: url(@icon-image) no-repeat 0 0;
|
|
._size(@width, @height);
|
|
.nudge-r(@nudge-right);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
.append-icon-image(@icon-image, @width:0, @height:0, @nudge-right:0, @nudge-top:0, @pad:10px) when not (@using-modernizr) {
|
|
._pad-right(@width, @pad);
|
|
&:after {
|
|
background: url(@icon-image) no-repeat 0 0;
|
|
._size(@width, @height);
|
|
.nudge-r(@nudge-right);
|
|
.nudge-t(@nudge-top);
|
|
}
|
|
}
|
|
|
|
|
|
// ---- internal use mixins -----------------------
|
|
|
|
._generated-icon(@width, @height, @icon-image) {
|
|
position: absolute;
|
|
display: block;
|
|
content: ' ';
|
|
background: url(@icon-image) no-repeat 0 0;
|
|
.size(@width, @height);
|
|
}
|
|
|
|
._generated-sprite-icon(@x, @y, @width, @height, @sprite-image:@sprite-image, @sprite-grid:@sprite-grid) {
|
|
position: absolute;
|
|
display: block;
|
|
content: ' ';
|
|
.sprite-sized(@x, @y, @width, @height, @sprite-image, @sprite-grid);
|
|
}
|
|
|
|
._pad-left(@width, @pad) when (@width = 0) {}
|
|
._pad-left(@width, @pad) when not (@width = 0) { padding-left: @width + @pad; }
|
|
._pad-right(@width, @pad) when (@width = 0) {}
|
|
._pad-right(@width, @pad) when not (@width = 0) { padding-right: @width + @pad; }
|
|
|
|
._gc-pad-left(@width, @pad) when (@width = 0) {}
|
|
._gc-pad-right(@width, @pad) when (@width = 0) {}
|
|
|
|
._gc-pad-left(@width, @pad) when not (@width = 0) and (@using-modernizr) {
|
|
.generatedcontent & {
|
|
._pad-left(@width, @pad);
|
|
}
|
|
}
|
|
._gc-pad-left(@width, @pad) when not (@width = 0) and not (@using-modernizr) {
|
|
._pad-left(@width, @pad);
|
|
}
|
|
._gc-pad-right(@width, @pad) when not (@width = 0) {
|
|
.generatedcontent & {
|
|
._pad-right(@width, @pad);
|
|
}
|
|
}
|
|
._gc-pad-right(@width, @pad) when not (@width = 0) and not (@using-modernizr) {
|
|
._pad-right(@width, @pad);
|
|
}
|
|
|
|
._size(@width, @height) when (@width = 0) and (@height = 0) {}
|
|
._size(@width, @height) when (@width = 0) and not (@height = 0) {
|
|
height: @height;
|
|
}
|
|
._size(@width, @height) when not (@width = 0) and (@height = 0) {
|
|
width: @width;
|
|
}
|
|
._size(@width, @height) when not (@width = 0) and not (@height = 0) {
|
|
width: @width;
|
|
height: @height;
|
|
}
|
|
|
|
|
|
|