Commit 834a708a authored by George Tsiolis's avatar George Tsiolis

Replace snake case in SCSS for EE

parent 0e873bd3
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
a { a {
font-family: $monospace-font; font-family: $monospace-font;
display: block; display: block;
font-size: $code_font_size !important; font-size: $code-font-size !important;
min-height: 19px; min-height: 19px;
white-space: nowrap; white-space: nowrap;
......
...@@ -255,7 +255,7 @@ ...@@ -255,7 +255,7 @@
} }
} }
@mixin build-trace-top-bar($height, $top_position) { @mixin build-trace-top-bar($height, $top-position) {
height: $height; height: $height;
min-height: $height; min-height: $height;
background: $gray-light; background: $gray-light;
...@@ -263,21 +263,21 @@ ...@@ -263,21 +263,21 @@
color: $gl-text-color; color: $gl-text-color;
position: sticky; position: sticky;
position: -webkit-sticky; position: -webkit-sticky;
top: $top_position; top: $top-position;
padding: $grid-size; padding: $grid-size;
} }
/* /*
* Mixin that handles the position of the controls placed on the top bar * Mixin that handles the position of the controls placed on the top bar
*/ */
@mixin build-controllers($control_font_size, $flex_direction, $with_grow, $flex_grow_size) { @mixin build-controllers($control-font-size, $flex-direction, $with-grow, $flex-grow-size) {
display: flex; display: flex;
font-size: $control_font_size; font-size: $control-font-size;
justify-content: $flex_direction; justify-content: $flex-direction;
align-items: center; align-items: center;
align-self: baseline; align-self: baseline;
@if $with_grow { @if $with-grow {
flex-grow: $flex_grow_size; flex-grow: $flex-grow-size;
} }
svg { svg {
......
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
.template-type-selector { .template-type-selector {
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
font-family: $regular_font; font-family: $regular-font;
margin-top: -5px; margin-top: -5px;
@media(max-width: map-get($grid-breakpoints, md)-1) { @media(max-width: map-get($grid-breakpoints, md)-1) {
......
$token_spacing_bottom: 0.5em; $token-spacing-bottom: 0.5em;
.related-issues-block { .related-issues-block {
margin-top: 3 * $gl-vert-padding; margin-top: 3 * $gl-vert-padding;
...@@ -45,7 +45,7 @@ $token_spacing_bottom: 0.5em; ...@@ -45,7 +45,7 @@ $token_spacing_bottom: 0.5em;
} }
.related-issues-loading-icon { .related-issues-loading-icon {
margin-bottom: $token_spacing_bottom; margin-bottom: $token-spacing-bottom;
line-height: 1.75; line-height: 1.75;
} }
...@@ -59,7 +59,7 @@ $token_spacing_bottom: 0.5em; ...@@ -59,7 +59,7 @@ $token_spacing_bottom: 0.5em;
.related-issues-token-list-item { .related-issues-token-list-item {
max-width: 100%; max-width: 100%;
margin-bottom: $token_spacing_bottom; margin-bottom: $token-spacing-bottom;
margin-right: 5px; margin-right: 5px;
} }
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
} }
.known-hosts { .known-hosts {
font-family: $monospace_font; font-family: $monospace-font;
} }
.btn-show-advanced { .btn-show-advanced {
......
...@@ -51,7 +51,7 @@ $column-right-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(2 ...@@ -51,7 +51,7 @@ $column-right-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(2
&.label-dark { &.label-dark {
color: $theme-gray-900; color: $theme-gray-900;
} }
&.label-bold { &.label-bold {
font-weight: 600; font-weight: 600;
} }
...@@ -116,7 +116,7 @@ $column-right-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(2 ...@@ -116,7 +116,7 @@ $column-right-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(2
flex-grow: 1; flex-grow: 1;
flex-basis: 0; flex-basis: 0;
text-align: center; text-align: center;
font-size: $code_font_size; font-size: $code-font-size;
line-height: 1.5; line-height: 1.5;
padding: 2px 0; padding: 2px 0;
} }
...@@ -182,7 +182,7 @@ $column-right-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(2 ...@@ -182,7 +182,7 @@ $column-right-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(2
left: 0; left: 0;
width: $details-cell-width; width: $details-cell-width;
padding: $gl-padding-8 $gl-padding; padding: $gl-padding-8 $gl-padding;
font-size: $code_font_size; font-size: $code-font-size;
background-color: $white-light; background-color: $white-light;
z-index: 2; z-index: 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment