You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
812 B
Plaintext
49 lines
812 B
Plaintext
.no-select {
|
|
.user-select(none);
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
*cursor: hand;
|
|
}
|
|
|
|
.inline-block {
|
|
display: inline-block;
|
|
*display: inline;
|
|
zoom: 1;
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
|
|
.zebra {
|
|
&:nth-child(even) {
|
|
background: rgba(191,191,191,0.2);
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
background: rgba(223,223,223,0.2);
|
|
}
|
|
}
|
|
|
|
.opacity(@opacity: 1) {
|
|
-moz-opacity: @opacity;
|
|
opacity: @opacity;
|
|
-ms-filter: ~`"progid:DXImageTransform.Microsoft.Alpha(opacity=(" + "@{opacity}" * 100 + "))"`;
|
|
filter: ~`"alpha(opacity = (" + "@{opacity}" * 100 + "))"`;
|
|
}
|
|
|
|
.border-radius (@radius: 5px) {
|
|
-webkit-border-radius: @radius;
|
|
-moz-border-radius: @radius;
|
|
-ms-border-radius: @radius;
|
|
-o-border-radius: @radius;
|
|
border-radius: @radius;
|
|
}
|
|
|
|
.text-ellipsis {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
} |