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

121 lines
1.8 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
/**
* 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
2017-08-17 22:00:37 +05:30
/*
* Mixin for markdown tables
*/
@mixin markdown-table {
width: auto;
}
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;
2017-08-17 22:00:37 +05:30
border-bottom: 1px solid $list-border-light;
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;
2016-11-03 12:29:30 +05:30
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 {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2015-09-25 12:07:36 +05:30
}
}
}
}
2017-08-17 22:00:37 +05:30
@mixin basic-list-stats {
.stats {
float: right;
line-height: $list-text-height;
color: $gl-text-color;
span {
margin-right: 15px;
}
}
}
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 {
2017-08-17 22:00:37 +05:30
color: $dark-diff-match-bg;
background: $dark-diff-match-color;
2016-09-13 17:45:13 +05:30
}
2016-09-29 09:46:39 +05:30
@mixin webkit-prefix($property, $value) {
#{'-webkit-' + $property}: $value;
#{$property}: $value;
}
2017-08-17 22:00:37 +05:30
/* http://phrappe.com/css/conditional-css-for-webkit-based-browsers/ */
@mixin on-webkit-only {
@media screen and (-webkit-min-device-pixel-ratio:0) {
@content;
}
}
2016-09-29 09:46:39 +05:30
@mixin keyframes($animation-name) {
@-webkit-keyframes #{$animation-name} {
@content;
}
@keyframes #{$animation-name} {
@content;
}
}
2016-11-03 12:29:30 +05:30
@mixin include-keyframes($animation-name) {
@include webkit-prefix(animation-name, $animation-name);
@include keyframes($animation-name) {
@content;
}
}