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

422 lines
7.7 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
/**
* Prefilled mixins
* Mixins with fixed values
*/
2018-11-18 11:00:15 +05:30
@mixin str-truncated($max-width: 82%) {
2014-09-02 18:07:02 +05:30
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
white-space: nowrap;
2018-11-18 11:00:15 +05:30
max-width: $max-width;
2014-09-02 18:07:02 +05:30
}
2015-09-25 12:07:36 +05:30
2018-12-05 23:21:45 +05:30
/**
* Mixin for fixed width container
*/
@mixin fixed-width-container {
max-width: $limited-layout-width - ($gl-padding * 2);
margin-left: auto;
margin-right: 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;
2018-11-20 20:47:30 +05:30
border-bottom: 1px solid $gray-darker;
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 {
2018-03-17 18:26:18 +05:30
border-bottom: 0;
2015-09-25 12:07:36 +05:30
}
&.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 {
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-bold;
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;
2019-09-30 21:07:59 +05:30
color: $gl-text-color-secondary;
2017-08-17 22:00:37 +05:30
span {
margin-right: 15px;
}
}
}
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 {
2019-07-07 11:18:12 +05:30
/* stylelint-disable-next-line media-feature-name-no-vendor-prefix */
2018-11-18 11:00:15 +05:30
@media screen and (-webkit-min-device-pixel-ratio: 0) {
2017-08-17 22:00:37 +05:30
@content;
}
}
2016-09-29 09:46:39 +05:30
@mixin keyframes($animation-name) {
@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;
}
}
2017-09-10 17:25:29 +05:30
/*
* Mixin for status badges, as used for pipelines and commit signatures
*/
@mixin status-color($color-light, $color-main, $color-dark) {
color: $color-main;
border-color: $color-main;
&:not(span):hover {
background-color: $color-light;
color: $color-dark;
border-color: $color-dark;
2018-03-17 18:26:18 +05:30
}
}
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
@mixin green-status-color {
@include status-color($green-100, $green-500, $green-700);
}
@mixin fade($gradient-direction, $gradient-color) {
visibility: hidden;
opacity: 0;
z-index: 2;
position: absolute;
bottom: 12px;
width: 43px;
height: 30px;
2018-11-18 11:00:15 +05:30
transition-duration: 0.3s;
2019-07-07 11:18:12 +05:30
transform: translateZ(0);
background: linear-gradient(to $gradient-direction,
$gradient-color 45%,
rgba($gradient-color, 0.4));
2018-03-17 18:26:18 +05:30
&.scrolling {
visibility: visible;
opacity: 1;
2018-11-18 11:00:15 +05:30
transition-duration: 0.3s;
2017-09-10 17:25:29 +05:30
}
2018-03-17 18:26:18 +05:30
.fa {
position: relative;
top: 5px;
font-size: 18px;
2017-09-10 17:25:29 +05:30
}
}
2018-03-17 18:26:18 +05:30
@mixin scrolling-links() {
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
display: flex;
2018-11-08 19:23:39 +05:30
flex-wrap: nowrap;
2018-03-17 18:26:18 +05:30
&::-webkit-scrollbar {
display: none;
}
}
@mixin triangle($color, $border-color, $size, $border-size) {
&::before,
&::after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: '';
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
&::before {
border-color: transparent;
border-bottom-color: $border-color;
border-width: ($size + $border-size);
margin-left: -($size + $border-size);
}
&::after {
border-color: transparent;
border-bottom-color: $color;
border-width: $size;
margin-left: -$size;
}
2017-09-10 17:25:29 +05:30
}
2018-11-08 19:23:39 +05:30
/*
* Mixin that fixes wrapping issues with long strings (e.g. URLs)
*
* Note: the width needs to be set for it to work in Firefox
*/
@mixin overflow-break-word {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
}
2018-12-13 13:39:08 +05:30
/*
* Mixin that handles the container for the job logs (CI/CD and kubernetes pod logs)
*/
2020-04-22 19:07:51 +05:30
@mixin build-trace($background: $black) {
background: $background;
2018-12-13 13:39:08 +05:30
color: $gray-darkest;
white-space: pre;
overflow-x: auto;
font-size: 12px;
border-radius: 0;
border: 0;
padding: $grid-size;
.bash {
display: block;
}
&.build-trace-rounded {
border-radius: $border-radius-base;
}
}
2019-09-04 21:01:54 +05:30
// Used in EE for Web Terminal
@mixin build-trace-bar($height) {
2018-12-13 13:39:08 +05:30
height: $height;
min-height: $height;
background: $gray-light;
border: 1px solid $border-color;
color: $gl-text-color;
2019-09-04 21:01:54 +05:30
padding: $grid-size;
}
@mixin build-trace-top-bar($height) {
@include build-trace-bar($height);
2019-05-30 16:15:17 +05:30
position: -webkit-sticky;
2019-07-07 11:18:12 +05:30
position: sticky;
2018-12-13 13:39:08 +05:30
top: $header-height;
.with-performance-bar & {
top: $header-height + $performance-bar-height;
}
}
/*
* Mixin that handles the position of the controls placed on the top bar
*/
2020-04-22 19:07:51 +05:30
@mixin build-controllers($control-font-size, $flex-direction, $with-grow, $flex-grow-size, $svg-display: block, $svg-top: 2px) {
2018-12-13 13:39:08 +05:30
display: flex;
font-size: $control-font-size;
justify-content: $flex-direction;
align-items: center;
align-self: baseline;
@if $with-grow {
flex-grow: $flex-grow-size;
}
svg {
width: 15px;
height: 15px;
display: $svg-display;
top: $svg-top;
}
.controllers-buttons {
color: $gl-text-color;
margin: 0 $grid-size;
&:last-child {
margin-right: 0;
}
}
.btn-scroll.animate {
2020-03-13 15:44:24 +05:30
.scroll-arrow {
animation: blinking-scroll-button 1.5s ease-in-out infinite;
2018-12-13 13:39:08 +05:30
}
2020-03-13 15:44:24 +05:30
.scroll-dot {
animation: blinking-scroll-button 1.5s ease-in-out infinite;
animation-delay: 0.3s;
2018-12-13 13:39:08 +05:30
}
&:disabled {
opacity: 1;
}
}
.btn-scroll:disabled,
.btn-refresh:disabled {
opacity: 0.35;
cursor: not-allowed;
}
}
2018-11-18 11:00:15 +05:30
@mixin build-loader-animation {
position: relative;
white-space: initial;
.dot {
display: inline-block;
width: 6px;
height: 6px;
margin: auto auto 12px;
border-radius: 50%;
animation: blinking-dot 1s linear infinite;
2020-04-22 19:07:51 +05:30
background: $white;
2018-11-18 11:00:15 +05:30
&:nth-child(2) {
animation-delay: 0.33s;
}
&:nth-child(3) {
animation-delay: 0.66s;
}
}
}
2018-11-08 19:23:39 +05:30
@mixin borderless-status-icon($color) {
svg {
border: 1px solid $color;
border-radius: 50%;
}
}
2018-12-05 23:21:45 +05:30
@mixin emoji-menu-toggle-button {
line-height: 1;
padding: 0;
min-width: 16px;
2019-09-04 21:01:54 +05:30
color: $gray-600;
fill: $gray-600;
2018-12-05 23:21:45 +05:30
.fa {
position: relative;
font-size: 16px;
}
svg {
@include btn-svg;
margin: 0;
}
.award-control-icon-positive,
.award-control-icon-super-positive {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
&:hover,
&.is-active {
.danger-highlight {
color: $red-500;
}
.link-highlight {
color: $blue-600;
fill: $blue-600;
}
.award-control-icon-neutral {
opacity: 0;
}
.award-control-icon-positive {
opacity: 1;
}
}
&.is-active {
.award-control-icon-positive {
opacity: 0;
}
.award-control-icon-super-positive {
opacity: 1;
}
}
}
2019-09-04 21:01:54 +05:30
/*
* Mixin that handles the size and right margin of avatars.
*/
@mixin avatar-size($size, $margin-right) {
width: $size;
height: $size;
margin-right: $margin-right;
}
@mixin code-icon-size() {
width: $gl-font-size * $code-line-height * 0.9;
height: $gl-font-size * $code-line-height * 0.9;
}
@mixin avatar-counter($border-radius: 1em) {
background-color: $gray-darkest;
2020-04-22 19:07:51 +05:30
color: $white;
2019-09-04 21:01:54 +05:30
border: 1px solid $gray-normal;
border-radius: $border-radius;
font-family: $regular-font;
font-size: 9px;
line-height: 16px;
text-align: center;
}
2020-04-08 14:13:33 +05:30
@mixin middle-dot-divider {
&::after {
// Duplicate `content` property used as a fallback
// scss-lint:disable DuplicateProperty
content: '\00B7'; // middle dot fallback if browser does not support alternative content
content: '\00B7' / ''; // tell screen readers to ignore the content https://www.w3.org/TR/css-content-3/#accessibility
padding: 0 0.375rem;
font-weight: $gl-font-weight-bold;
}
&:last-child {
&::after {
content: '';
padding: 0;
}
}
}