2011-11-03 13:01:08 +00:00
|
|
|
@import "compass/css3";
|
|
|
|
@import "compass/css3/border-radius";
|
|
|
|
@import "compass/css3/images";
|
|
|
|
@import "compass/css3/text-shadow";
|
|
|
|
|
|
|
|
@mixin hover-link {
|
|
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2011-11-08 14:34:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin locomotive-link {
|
|
|
|
a {
|
|
|
|
@include hover-link;
|
|
|
|
color: #1F82BC;
|
|
|
|
}
|
2011-11-16 00:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin default-input-style {
|
|
|
|
padding: 4px 5px;
|
|
|
|
|
|
|
|
color: #17171B;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
border: 1px solid #b5b7c4;
|
|
|
|
@include background-image(linear-gradient(top, #f0f0f0, #f9f9f9 25%, #f9f9f9 25%, #ffffff 50%, #ffffff));
|
2011-11-29 01:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin path-input-style {
|
|
|
|
background: transparent;
|
|
|
|
outline: none;
|
|
|
|
|
|
|
|
margin: 0 5px;
|
|
|
|
|
|
|
|
width: 30%;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #B5B7C4;
|
|
|
|
|
|
|
|
color: #787A89;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin editable {
|
|
|
|
padding: 2px 25px 2px 6px;
|
|
|
|
color: #1e1f26;
|
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background: #fffbe5 image-url("locomotive/form/pen.png") no-repeat right 5px;
|
|
|
|
border-bottom: 1px dotted #efe4a5;
|
|
|
|
}
|
|
|
|
}
|