gitlab-org--gitlab-foss/app/assets/stylesheets/framework/mixins.scss

95 lines
1.4 KiB
SCSS
Raw Normal View History

/**
* Prefilled mixins
* Mixins with fixed values
*/
@mixin str-truncated($max_width: 82%) {
2014-05-26 16:26:41 -04:00
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
white-space: nowrap;
max-width: $max_width;
}
/*
* Base mixin for lists in GitLab
*/
@mixin basic-list {
margin: 5px 0;
padding: 0;
list-style: none;
> li {
@include clearfix;
padding: 10px 0;
2016-11-30 08:25:25 -05:00
border-bottom: 1px solid $list-border-light;
display: block;
margin: 0;
&:last-child {
border-bottom: none;
}
&.active {
background: $gray-light;
a {
2015-09-22 09:14:26 -04:00
font-weight: 600;
}
}
&.hide {
display: none;
}
&.light {
a {
2016-12-30 15:18:27 -05:00
color: $gl-text-color;
}
}
}
}
@mixin bulleted-list {
> ul {
list-style-type: disc;
ul {
list-style-type: circle;
ul {
list-style-type: square;
}
}
}
}
@mixin dark-diff-match-line {
2016-11-30 08:25:25 -05:00
color: $dark-diff-match-bg;
background: $dark-diff-match-color;
}
2016-08-03 23:20:08 -04:00
@mixin webkit-prefix($property, $value) {
#{'-webkit-' + $property}: $value;
#{$property}: $value;
}
@mixin keyframes($animation-name) {
@-webkit-keyframes #{$animation-name} {
@content;
}
@keyframes #{$animation-name} {
@content;
}
}
@mixin include-keyframes($animation-name) {
@include webkit-prefix(animation-name, $animation-name);
@include keyframes($animation-name) {
@content;
}
}