Skip to content
Snippets Groups Projects
Commit 88cb02ba authored by Clement Ho's avatar Clement Ho
Browse files

Remove deprecated mixins

parent 36143d41
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,3 +11,6 @@ $border-radius-base: 3px !default;
$modal-body-bg: $white-light;
$input-border: $border-color;
$input-border-focus: $focus-border-color;
$padding-base-vertical: $gl-vert-padding;
$padding-base-horizontal: $gl-padding;
// Override variables from bs4
html {
font-size: 14px;
}
@import "framework/variables";
@import "framework/mixins";
@import "framework.bs4";
@import "../../../node_modules/bootstrap/scss/bootstrap";
@import "framework.bs3";
@import "framework/layout";
Loading
Loading
Loading
Loading
@@ -317,7 +317,7 @@
}
 
&.invalid {
@include status-color($gray-dark, $gray, $gray-darkest);
@include status-color($gray-dark, color("gray"), $gray-darkest);
border-color: $gray-darkest;
}
}
Loading
Loading
Loading
Loading
@@ -266,7 +266,9 @@
&.issue-title,
&.commit-title,
&.merge-merquest-title {
@include text-overflow();
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
display: block;
 
Loading
Loading
Loading
Loading
@@ -80,13 +80,13 @@
 
&.left-side-selected {
td.line_content.parallel.right-side {
@include user-select(none);
user-select: none;
}
}
 
&.right-side-selected {
td.line_content.parallel.left-side {
@include user-select(none);
user-select: none;
}
}
}
Loading
Loading
@@ -103,7 +103,7 @@
 
.old_line,
.new_line {
@include user-select(none);
user-select: none;
margin: 0;
border: 0;
padding: 0 5px;
Loading
Loading
Loading
Loading
@@ -29,7 +29,7 @@
 
.key {
@extend .badge.badge-pill;
@extend .badge.badge-pill-inverse;
background-color: $label-inverse-bg;
font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
padding: 3px 5px;
}
Loading
Loading
Loading
Loading
@@ -419,7 +419,7 @@ table.u2f-registrations {
}
 
&.unverified {
@include status-color($gray-dark, $gray, $common-gray-dark);
@include status-color($gray-dark, color("gray"), $common-gray-dark);
}
}
}
Loading
Loading
@@ -14,7 +14,9 @@
}
 
#contributors-master {
@include make-md-column(12);
@include media-breakpoint-up(md) {
@include make-col(12);
}
 
svg {
width: 100%;
Loading
Loading
@@ -33,7 +35,10 @@
}
 
.person {
@include make-md-column(6);
@include media-breakpoint-up(md) {
@include make-col(6);
}
margin-top: 10px;
 
@include media-breakpoint-down(xs) {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment