debian-mirror-gitlab/app/assets/stylesheets/framework/mixins.scss

98 lines
1.4 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
/**
* Generic mixins
*/
2016-06-02 11:05:42 +05:30
@mixin box-shadow($shadow) {
2014-09-02 18:07:02 +05:30
box-shadow: $shadow;
}
@mixin border-radius($radius) {
border-radius: $radius;
}
/**
* Prefilled mixins
* Mixins with fixed values
*/
@mixin str-truncated($max_width: 82%) {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
white-space: nowrap;
max-width: $max_width;
}
2015-09-25 12:07:36 +05:30
/*
* Base mixin for lists in GitLab
*/
@mixin basic-list {
2016-06-02 11:05:42 +05:30
margin: 5px 0;
padding: 0;
2015-09-25 12:07:36 +05:30
list-style: none;
> li {
2015-11-26 14:37:03 +05:30
@include clearfix;
2015-09-25 12:07:36 +05:30
padding: 10px 0;
2016-06-02 11:05:42 +05:30
border-bottom: 1px solid #eee;
2015-09-25 12:07:36 +05:30
display: block;
2016-06-02 11:05:42 +05:30
margin: 0;
2015-09-25 12:07:36 +05:30
&:last-child {
border-bottom: none;
}
&.active {
2016-09-29 09:46:39 +05:30
background: $gray-light;
2015-09-25 12:07:36 +05:30
a {
2015-10-24 18:46:33 +05:30
font-weight: 600;
2015-09-25 12:07:36 +05:30
}
}
&.hide {
display: none;
}
&.light {
a {
color: $gl-gray;
}
}
}
}
2016-06-22 15:30:34 +05:30
@mixin bulleted-list {
> ul {
list-style-type: disc;
ul {
list-style-type: circle;
ul {
list-style-type: square;
}
}
}
2016-09-13 17:45:13 +05:30
}
@mixin dark-diff-match-line {
color: rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.1);
}
2016-09-29 09:46:39 +05:30
@mixin webkit-prefix($property, $value) {
#{'-webkit-' + $property}: $value;
#{$property}: $value;
}
@mixin keyframes($animation-name) {
@-webkit-keyframes #{$animation-name} {
@content;
}
@keyframes #{$animation-name} {
@content;
}
}