900 lines
20 KiB
SCSS
900 lines
20 KiB
SCSS
/*
|
|
* Layout
|
|
*/
|
|
$grid-size: 8px;
|
|
$gutter-collapsed-width: 62px;
|
|
$gutter-width: 290px;
|
|
$gutter-inner-width: 250px;
|
|
$sidebar-transition-duration: 0.3s;
|
|
$sidebar-breakpoint: 1024px;
|
|
$default-transition-duration: 0.15s;
|
|
$contextual-sidebar-width: 220px;
|
|
$contextual-sidebar-collapsed-width: 50px;
|
|
$toggle-sidebar-height: 48px;
|
|
|
|
/**
|
|
🚨 Do not use this spacing scale — it is deprecated and being removed. 🚨
|
|
See https://gitlab.com/gitlab-org/gitlab/issues/36857 for more details.
|
|
|
|
Instead, if you need a spacing class, add it to app/assets/stylesheets/framework/common.scss,
|
|
using the following values.
|
|
|
|
$gl-spacing-scale-0: 0;
|
|
$gl-spacing-scale-1: 2px;
|
|
$gl-spacing-scale-2: 4px;
|
|
$gl-spacing-scale-3: 8px;
|
|
$gl-spacing-scale-4: 12px;
|
|
$gl-spacing-scale-5: 16px;
|
|
$gl-spacing-scale-6: 24px;
|
|
$gl-spacing-scale-7: 32px;
|
|
$gl-spacing-scale-8: 40px;
|
|
$gl-spacing-scale-9: 48px;
|
|
$gl-spacing-scale-10: 56px;
|
|
$gl-spacing-scale-11: 64px;
|
|
$gl-spacing-scale-12: 80px;
|
|
$gl-spacing-scale-13: 96px;
|
|
|
|
E.g., a padding top of 96px can be added using:
|
|
.gl-shim-pt-13 {
|
|
padding-top: 96px;
|
|
}
|
|
|
|
Please use -shim- so it can be differentiated from the old scale classes.
|
|
|
|
These will be replaced when the Gitlab UI utilities are included.
|
|
**/
|
|
$spacing-scale: (
|
|
0: 0,
|
|
1: #{0.5 * $grid-size},
|
|
2: $grid-size,
|
|
3: #{2 * $grid-size},
|
|
4: #{3 * $grid-size},
|
|
5: #{4 * $grid-size}
|
|
);
|
|
|
|
/*
|
|
* Why another sizing scale???
|
|
* Great question, friend!
|
|
* This size scale is a "backport" of the equivalent set of "named" sizes
|
|
* (e.g. `xl` versus `70`) that came from the following design document as of 2019-10-23:
|
|
*
|
|
* https://gitlab-org.gitlab.io/gitlab-design/hosted/design-gitlab-specs/forms-spec-previews/
|
|
*
|
|
* (See `input-` items at the bottom)
|
|
*
|
|
* The presumption here is that these sizes will be standardized in GitLab UI and thus will be
|
|
* broadly useful here in the GitLab product when not using the GitLab UI components.
|
|
*/
|
|
$size-scale: (
|
|
'xs': #{10 * $grid-size},
|
|
's': #{20 * $grid-size},
|
|
'm': #{30 * $grid-size},
|
|
'l': #{40 * $grid-size},
|
|
'xl': #{70 * $grid-size}
|
|
);
|
|
|
|
// Color schema
|
|
$darken-normal-factor: 7% !default;
|
|
$darken-dark-factor: 10% !default;
|
|
$darken-border-factor: 5% !default;
|
|
$darken-border-dashed-factor: 25% !default;
|
|
|
|
$white: #fff !default;
|
|
$white-normal: #f0f0f0 !default;
|
|
$white-dark: #eaeaea !default;
|
|
$white-transparent: rgba(255, 255, 255, 0.8) !default;
|
|
|
|
$gray-lightest: #fdfdfd !default;
|
|
$gray-light: #fafafa !default;
|
|
$gray-lighter: #f9f9f9 !default;
|
|
$gray-normal: #f5f5f5 !default;
|
|
$gray-dark: darken($gray-light, $darken-dark-factor) !default;
|
|
$gray-darker: #eee !default;
|
|
$gray-darkest: #c4c4c4 !default;
|
|
|
|
$purple: #6d49cb !default;
|
|
$purple-light: #ede8fb !default;
|
|
|
|
$black: #000 !default;
|
|
$black-transparent: rgba(0, 0, 0, 0.3) !default;
|
|
$almost-black: #242424 !default;
|
|
|
|
$t-gray-a-02: rgba($black, 0.02) !default;
|
|
$t-gray-a-04: rgba($black, 0.04) !default;
|
|
$t-gray-a-06: rgba($black, 0.06) !default;
|
|
$t-gray-a-08: rgba($black, 0.08) !default;
|
|
|
|
$gl-gray-100: #ddd !default;
|
|
$gl-gray-200: #ccc !default;
|
|
$gl-gray-350: #aaa !default;
|
|
$gl-gray-400: #999 !default;
|
|
$gl-gray-500: #777 !default;
|
|
$gl-gray-600: #666 !default;
|
|
$gl-gray-700: #555 !default;
|
|
$gl-gray-800: #333 !default;
|
|
|
|
$green-50: #ecf4ee !default;
|
|
$green-100: #c3e6cd !default;
|
|
$green-200: #91d4a8 !default;
|
|
$green-300: #52b87a !default;
|
|
$green-400: #2da160 !default;
|
|
$green-500: #108548 !default;
|
|
$green-600: #217645 !default;
|
|
$green-700: #24663b !default;
|
|
$green-800: #0d532a !default;
|
|
$green-900: #0a4020 !default;
|
|
$green-950: #072b15 !default;
|
|
|
|
$blue-50: #e9f3fc !default;
|
|
$blue-100: #cbe2f9 !default;
|
|
$blue-200: #9dc7f1 !default;
|
|
$blue-300: #63a6e9 !default;
|
|
$blue-400: #428fdc !default;
|
|
$blue-500: #1f75cb !default;
|
|
$blue-600: #1068bf !default;
|
|
$blue-700: #0b5cad !default;
|
|
$blue-800: #064787 !default;
|
|
$blue-900: #033464 !default;
|
|
$blue-950: #002850 !default;
|
|
|
|
$orange-50: #fffaf4 !default;
|
|
$orange-100: #fff1de !default;
|
|
$orange-200: #fed69f !default;
|
|
$orange-300: #fdbc60 !default;
|
|
$orange-400: #fca429 !default;
|
|
$orange-500: #fc9403 !default;
|
|
$orange-600: #de7e00 !default;
|
|
$orange-700: #c26700 !default;
|
|
$orange-800: #a35200 !default;
|
|
$orange-900: #853c00 !default;
|
|
$orange-950: #592800 !default;
|
|
|
|
$red-50: #fcf1ef !default;
|
|
$red-100: #fdd4cd !default;
|
|
$red-200: #fcb5aa !default;
|
|
$red-300: #f57f6c !default;
|
|
$red-400: #ec5941 !default;
|
|
$red-500: #dd2b0e !default;
|
|
$red-600: #c91c00 !default;
|
|
$red-700: #ae1800 !default;
|
|
$red-800: #8d1300 !default;
|
|
$red-900: #660e00 !default;
|
|
$red-950: #4d0a00 !default;
|
|
|
|
$gray-10: #fafafa !default;
|
|
$gray-50: #f0f0f0 !default;
|
|
$gray-100: #dbdbdb !default;
|
|
$gray-200: #bfbfbf !default;
|
|
$gray-300: #ccc !default;
|
|
$gray-400: #bababa !default;
|
|
$gray-500: #a7a7a7 !default;
|
|
$gray-600: #919191 !default;
|
|
$gray-700: #707070 !default;
|
|
$gray-800: #4f4f4f !default;
|
|
$gray-900: #303030 !default;
|
|
$gray-950: #1f1f1f !default;
|
|
|
|
$greens: (
|
|
'50': $green-50,
|
|
'100': $green-100,
|
|
'200': $green-200,
|
|
'300': $green-300,
|
|
'400': $green-400,
|
|
'500': $green-500,
|
|
'600': $green-600,
|
|
'700': $green-700,
|
|
'800': $green-800,
|
|
'900': $green-900,
|
|
'950': $green-950
|
|
);
|
|
|
|
$blues: (
|
|
'50': $blue-50,
|
|
'100': $blue-100,
|
|
'200': $blue-200,
|
|
'300': $blue-300,
|
|
'400': $blue-400,
|
|
'500': $blue-500,
|
|
'600': $blue-600,
|
|
'700': $blue-700,
|
|
'800': $blue-800,
|
|
'900': $blue-900,
|
|
'950': $blue-950
|
|
);
|
|
|
|
$oranges: (
|
|
'50': $orange-50,
|
|
'100': $orange-100,
|
|
'200': $orange-200,
|
|
'300': $orange-300,
|
|
'400': $orange-400,
|
|
'500': $orange-500,
|
|
'600': $orange-600,
|
|
'700': $orange-700,
|
|
'800': $orange-800,
|
|
'900': $orange-900,
|
|
'950': $orange-950
|
|
);
|
|
|
|
$reds: (
|
|
'50': $red-50,
|
|
'100': $red-100,
|
|
'200': $red-200,
|
|
'300': $red-300,
|
|
'400': $red-400,
|
|
'500': $red-500,
|
|
'600': $red-600,
|
|
'700': $red-700,
|
|
'800': $red-800,
|
|
'900': $red-900,
|
|
'950': $red-950
|
|
);
|
|
|
|
$grays: (
|
|
'10': $gray-10,
|
|
'50': $gray-50,
|
|
'100': $gray-100,
|
|
'200': $gray-200,
|
|
'300': $gray-300,
|
|
'400': $gray-400,
|
|
'500': $gray-500,
|
|
'600': $gray-600,
|
|
'700': $gray-700,
|
|
'800': $gray-800,
|
|
'900': $gray-900,
|
|
'950': $gray-950
|
|
);
|
|
|
|
$color-ranges: (
|
|
'primary': $blues,
|
|
'secondary': $grays,
|
|
'success': $greens,
|
|
'warning': $oranges,
|
|
'danger': $reds
|
|
);
|
|
|
|
// GitLab themes
|
|
|
|
$indigo-50: #f7f7ff;
|
|
$indigo-100: #ebebfa;
|
|
$indigo-200: #d1d1f0;
|
|
$indigo-300: #a6a6de;
|
|
$indigo-400: #7c7ccc;
|
|
$indigo-500: #6666c4;
|
|
$indigo-600: #5b5bbd;
|
|
$indigo-700: #4b4ba3;
|
|
$indigo-800: #393982;
|
|
$indigo-900: #292961;
|
|
$indigo-950: #1a1a40;
|
|
|
|
$theme-blue-50: #f4f8fc;
|
|
$theme-blue-100: #e6edf5;
|
|
$theme-blue-200: #c8d7e6;
|
|
$theme-blue-300: #97b3cf;
|
|
$theme-blue-400: #648cb4;
|
|
$theme-blue-500: #4a79a8;
|
|
$theme-blue-600: #3e6fa0;
|
|
$theme-blue-700: #305c88;
|
|
$theme-blue-800: #25496e;
|
|
$theme-blue-900: #1a3652;
|
|
$theme-blue-950: #0f2235;
|
|
|
|
$theme-light-blue-50: #f2f7fc;
|
|
$theme-light-blue-100: #ebf1f7;
|
|
$theme-light-blue-200: #c9dcf2;
|
|
$theme-light-blue-300: #83abd4;
|
|
$theme-light-blue-400: #4d86bf;
|
|
$theme-light-blue-500: #367cc2;
|
|
$theme-light-blue-600: #3771ab;
|
|
$theme-light-blue-700: #2261a1;
|
|
|
|
$theme-green-50: #f2faf6;
|
|
$theme-green-100: #e4f3ea;
|
|
$theme-green-200: #c0dfcd;
|
|
$theme-green-300: #8ac2a1;
|
|
$theme-green-400: #52a274;
|
|
$theme-green-500: #35935c;
|
|
$theme-green-600: #288a50;
|
|
$theme-green-700: #1c7441;
|
|
$theme-green-800: #145d33;
|
|
$theme-green-900: #0d4524;
|
|
$theme-green-950: #072d16;
|
|
|
|
$theme-light-green-700: #156b39;
|
|
|
|
$theme-red-50: #fcf4f2;
|
|
$theme-red-100: #fae9e6;
|
|
$theme-red-200: #ebcac5;
|
|
$theme-red-300: #d99b91;
|
|
$theme-red-400: #b0655a;
|
|
$theme-red-500: #ad4a3b;
|
|
$theme-red-600: #9e4133;
|
|
$theme-red-700: #912f20;
|
|
$theme-red-800: #78291d;
|
|
$theme-red-900: #691a16;
|
|
$theme-red-950: #36140f;
|
|
|
|
$theme-light-red-50: #fff6f5;
|
|
$theme-light-red-100: #fae2de;
|
|
$theme-light-red-200: #f7d5d0;
|
|
$theme-light-red-300: #d9796a;
|
|
$theme-light-red-400: #cf604e;
|
|
$theme-light-red-500: #c24b38;
|
|
$theme-light-red-600: #b03927;
|
|
$theme-light-red-700: #a62e21;
|
|
|
|
$border-white-light: darken($white, $darken-border-factor) !default;
|
|
$border-white-normal: darken($white-normal, $darken-border-factor) !default;
|
|
|
|
$border-gray-light: darken($gray-light, $darken-border-factor);
|
|
$border-gray-normal: darken($gray-normal, $darken-border-factor);
|
|
$border-gray-normal-dashed: darken($gray-normal, $darken-border-dashed-factor);
|
|
|
|
/*
|
|
* UI elements
|
|
*/
|
|
$border-color: $gray-100;
|
|
$shadow-color: $t-gray-a-08;
|
|
$well-expand-item: #e8f2f7;
|
|
$well-inner-border: #eef0f2;
|
|
$well-light-border: #f1f1f1;
|
|
$well-light-text-color: #5b6169;
|
|
|
|
/*
|
|
* Text
|
|
*/
|
|
$gl-font-size: 14px;
|
|
$gl-font-size-xs: 11px;
|
|
$gl-font-size-small: 12px;
|
|
$gl-font-size-large: 16px;
|
|
$gl-font-weight-normal: 400;
|
|
$gl-font-weight-bold: 600;
|
|
$gl-text-color: $gray-900;
|
|
$gl-text-color-secondary: $gray-700;
|
|
$gl-text-color-tertiary: $gray-600;
|
|
$gl-text-color-quaternary: #d6d6d6;
|
|
$gl-text-color-inverted: $white;
|
|
$gl-text-color-secondary-inverted: rgba($white, 0.85);
|
|
$gl-text-color-disabled: $gray-600;
|
|
$gl-grayish-blue: #7f8fa4;
|
|
$gl-gray-dark: #313236;
|
|
$gl-gray-light: #5c5c5c;
|
|
$gl-header-color: #4c4e54;
|
|
$gl-font-size-12: 12px;
|
|
$gl-font-size-14: 14px;
|
|
$gl-font-size-16: 16px;
|
|
$gl-font-size-20: 20px;
|
|
$gl-font-size-28: 28px;
|
|
$gl-font-size-42: 42px;
|
|
|
|
$type-scale: (
|
|
1: 12px,
|
|
2: 14px,
|
|
3: 16px,
|
|
4: 20px,
|
|
5: 28px,
|
|
6: 42px
|
|
);
|
|
|
|
/*
|
|
* Lists
|
|
*/
|
|
$list-border: rgba(0, 0, 0, 0.05);
|
|
$list-text-height: 42px;
|
|
|
|
/*
|
|
* Code
|
|
*/
|
|
$code-font-size: 90%;
|
|
$code-line-height: 1.6;
|
|
$code-color: $gray-950;
|
|
|
|
/*
|
|
* Tooltips
|
|
*/
|
|
$tooltip-font-size: 12px;
|
|
|
|
/*
|
|
* Padding
|
|
*/
|
|
$gl-padding-4: 4px;
|
|
$gl-padding-6: 6px;
|
|
$gl-padding-8: 8px;
|
|
$gl-padding-12: 12px;
|
|
$gl-padding: 16px;
|
|
$gl-padding-24: 24px;
|
|
$gl-padding-32: 32px;
|
|
$gl-padding-50: 50px;
|
|
$gl-col-padding: 15px;
|
|
$gl-input-padding: 10px;
|
|
$gl-vert-padding: 6px;
|
|
$gl-padding-top: 10px;
|
|
$gl-sidebar-padding: 22px;
|
|
$gl-bar-padding: 3px;
|
|
$input-horizontal-padding: 12px;
|
|
$browser-scrollbar-size: 10px;
|
|
|
|
/*
|
|
* Misc
|
|
*/
|
|
$header-height: 40px;
|
|
$header-zindex: 1000;
|
|
$suggestion-header-height: 46px;
|
|
$ide-statusbar-height: 25px;
|
|
$fixed-layout-width: 1280px;
|
|
$limited-layout-width: 990px;
|
|
$container-text-max-width: 540px;
|
|
$gl-avatar-size: 40px;
|
|
$border-radius-default: 4px;
|
|
$border-radius-small: 2px;
|
|
$border-radius-large: 8px;
|
|
$default-icon-size: 18px;
|
|
$layout-link-gray: #7e7c7c;
|
|
$btn-side-margin: 10px;
|
|
$btn-sm-side-margin: 7px;
|
|
$btn-margin-5: 5px;
|
|
$count-arrow-border: #dce0e5;
|
|
$general-hover-transition-duration: 100ms;
|
|
$general-hover-transition-curve: linear;
|
|
$highlight-changes-color: rgb(235, 255, 232);
|
|
$performance-bar-height: 35px;
|
|
$system-header-height: 16px;
|
|
$system-footer-height: $system-header-height;
|
|
$flash-height: 52px;
|
|
$flash-container-top: 48px;
|
|
$context-header-height: 60px;
|
|
$breadcrumb-min-height: 48px;
|
|
$home-panel-title-row-height: 64px;
|
|
$home-panel-avatar-mobile-size: 24px;
|
|
$gl-line-height: 16px;
|
|
$gl-line-height-18: 18px;
|
|
$gl-line-height-20: 20px;
|
|
$gl-line-height-24: 24px;
|
|
$gl-line-height-14: 14px;
|
|
|
|
$issue-box-upcoming-bg: #8f8f8f;
|
|
$pages-group-name-color: #4c4e54;
|
|
|
|
/*
|
|
* Common component specific colors
|
|
*/
|
|
$user-mention-bg: rgba($blue-500, 0.044);
|
|
$user-mention-bg-hover: rgba($blue-500, 0.15);
|
|
|
|
/* tanuki logo colors */
|
|
$tanuki-red: #e24329;
|
|
$tanuki-orange: #fc6d26;
|
|
$tanuki-yellow: #fca326;
|
|
|
|
/*
|
|
* State colors:
|
|
*/
|
|
$green-500-focus: rgba($green-500, 0.4);
|
|
$gl-btn-active-background: rgba(0, 0, 0, 0.16);
|
|
$gl-btn-active-gradient: inset 0 2px 3px $gl-btn-active-background;
|
|
|
|
/*
|
|
* Commit Diff Colors
|
|
*/
|
|
$added: #63c363;
|
|
$deleted: #f77;
|
|
$line-added: #ecfdf0;
|
|
$line-added-dark: #c7f0d2 !default;
|
|
$line-removed: #fbe9eb;
|
|
$line-removed-dark: #fac5cd !default;
|
|
$line-number-old: #f9d7dc;
|
|
$line-number-new: #ddfbe6;
|
|
$line-number-select: #fbf2da;
|
|
$line-target-blue: $blue-50;
|
|
$line-select-yellow: #fcf8e7;
|
|
$line-select-yellow-dark: #f0e2bd;
|
|
$dark-diff-match-bg: rgba($white, 0.3);
|
|
$dark-diff-match-color: rgba($white, 0.1);
|
|
$diff-image-info-color: #808080;
|
|
$diff-view-modes-color: #808080;
|
|
$diff-view-modes-border: #c1c1c1;
|
|
$diff-jagged-border-gradient-color: darken($white-normal, 8%);
|
|
|
|
/*
|
|
* Fonts
|
|
*/
|
|
$monospace-font: 'Menlo', 'DejaVu Sans Mono', 'Liberation Mono', 'Consolas', 'Ubuntu Mono',
|
|
'Courier New', 'andale mono', 'lucida console', monospace;
|
|
$regular-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', Ubuntu, Cantarell,
|
|
'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
'Noto Color Emoji';
|
|
|
|
/*
|
|
* Dropdowns
|
|
*/
|
|
$dropdown-width: 300px;
|
|
$dropdown-min-height: 40px;
|
|
$dropdown-max-height: 312px;
|
|
$dropdown-max-height-lg: 445px;
|
|
$dropdown-vertical-offset: 4px;
|
|
$dropdown-empty-row-bg: rgba(#000, 0.04);
|
|
$dropdown-shadow-color: rgba(#000, 0.1);
|
|
$dropdown-title-btn-color: #bfbfbf;
|
|
$dropdown-input-fa-color: #c7c7c7;
|
|
$dropdown-input-focus-shadow: rgba($blue-300, 0.4);
|
|
$dropdown-loading-bg: rgba($white, 0.6);
|
|
$dropdown-chevron-size: 10px;
|
|
$dropdown-toggle-active-border-color: darken($border-color, 14%);
|
|
$dropdown-fade-mask-height: 32px;
|
|
$dropdown-member-form-control-width: 163px;
|
|
|
|
/*
|
|
* Filtered Search
|
|
*/
|
|
$filtered-search-term-shadow-color: rgba(0, 0, 0, 0.09);
|
|
|
|
/*
|
|
* Contextual Sidebar
|
|
*/
|
|
$link-active-background: rgba($black, 0.04);
|
|
$link-hover-background: rgba($gray-900, 0.06);
|
|
$inactive-badge-background: rgba($black, 0.08);
|
|
$sidebar-toggle-height: 60px;
|
|
$sidebar-toggle-width: 40px;
|
|
$sidebar-milestone-toggle-bottom-margin: 10px;
|
|
|
|
/*
|
|
* Buttons
|
|
*/
|
|
$btn-active-gray: $gray-50;
|
|
$btn-active-gray-light: $gray-50;
|
|
$btn-white-active: #848484;
|
|
$gl-btn-padding: 10px;
|
|
$gl-btn-line-height: 16px;
|
|
$gl-btn-vert-padding: 8px;
|
|
$gl-btn-horz-padding: 12px;
|
|
$gl-btn-small-font-size: 13px;
|
|
$gl-btn-small-line-height: 18px;
|
|
$gl-btn-xs-font-size: 13px;
|
|
$gl-btn-xs-line-height: 13px;
|
|
|
|
/*
|
|
* Badges
|
|
*/
|
|
$badge-bg: rgba(0, 0, 0, 0.07);
|
|
|
|
/*
|
|
* Pagination
|
|
*/
|
|
$pagination-padding-y: 6px;
|
|
$pagination-padding-x: 16px;
|
|
$pagination-line-height: 20px;
|
|
$pagination-disabled-color: #cdcdcd;
|
|
|
|
/*
|
|
* Status icons
|
|
*/
|
|
$status-icon-size: 22px;
|
|
|
|
/*
|
|
* Award emoji
|
|
*/
|
|
$award-emoji-menu-shadow: rgba(0, 0, 0, 0.175);
|
|
$award-emoji-positive-add-bg: #fed159;
|
|
$award-emoji-positive-add-lines: #bb9c13;
|
|
$award-emoji-width: 376px;
|
|
$award-emoji-width-xs: 90%;
|
|
|
|
/*
|
|
* Search Box
|
|
*/
|
|
$search-input-border-color: rgba($blue-400, 0.8);
|
|
$search-input-width: 200px;
|
|
$search-input-xl-width: 320px;
|
|
$location-icon-color: #e7e9ed;
|
|
|
|
/*
|
|
* Notes
|
|
*/
|
|
$note-disabled-comment-color: #b2b2b2;
|
|
$note-targe3-outside: #fffff0;
|
|
$note-targe3-inside: #ffffd3;
|
|
$note-icon-gutter-width: 55px;
|
|
|
|
/*
|
|
* Identicon
|
|
*/
|
|
$identicon-red: #ffebee !default;
|
|
$identicon-purple: #f3e5f5 !default;
|
|
$identicon-indigo: #e8eaf6 !default;
|
|
$identicon-blue: #e3f2fd !default;
|
|
$identicon-teal: #e0f2f1 !default;
|
|
$identicon-orange: #fbe9e7 !default;
|
|
|
|
/*
|
|
* Calendar
|
|
*/
|
|
$calendar-hover-bg: #ecf3fe;
|
|
$calendar-border-color: rgba(#000, 0.1);
|
|
$calendar-user-contrib-text: #959494;
|
|
|
|
/*
|
|
* Value Stream Analytics
|
|
*/
|
|
$cycle-analytics-box-padding: 30px;
|
|
$cycle-analytics-box-text-color: #8c8c8c;
|
|
$cycle-analytics-big-font: 19px;
|
|
$cycle-analytics-light-gray: #bfbfbf;
|
|
$cycle-analytics-dismiss-icon-color: #b2b2b2;
|
|
|
|
/*
|
|
* CI
|
|
*/
|
|
$ci-skipped-color: #888;
|
|
|
|
/*
|
|
* Boards
|
|
*/
|
|
$issue-boards-font-size: 14px;
|
|
$issue-boards-card-shadow: rgba(0, 0, 0, 0.1);
|
|
/*
|
|
The following heights are used in boards.scss and are used for calculation of the board height.
|
|
They probably should be derived in a smarter way.
|
|
*/
|
|
$issue-boards-filter-height: 68px;
|
|
$issue-boards-breadcrumbs-height-xs: 63px;
|
|
$issue-board-list-difference-xs: $header-height + $issue-boards-breadcrumbs-height-xs;
|
|
$issue-board-list-difference-sm: $header-height + $breadcrumb-min-height;
|
|
$issue-board-list-difference-md: $issue-board-list-difference-sm + $issue-boards-filter-height;
|
|
/*
|
|
The following heights are used in environment_logs.scss and are used for calculation of the log viewer height.
|
|
*/
|
|
$environment-logs-breadcrumbs-height: 63px;
|
|
$environment-logs-breadcrumbs-height-md: $breadcrumb-min-height;
|
|
|
|
$environment-logs-difference-xs-up: $header-height + $environment-logs-breadcrumbs-height;
|
|
$environment-logs-difference-md-up: $header-height + $environment-logs-breadcrumbs-height-md;
|
|
|
|
/*
|
|
* Avatar
|
|
*/
|
|
$avatar-radius: 50%;
|
|
$gl-avatar-size: 40px;
|
|
$gl-avatar-border-opacity: 0.1;
|
|
|
|
/*
|
|
* Blame
|
|
*/
|
|
$blame-gray: #ededed;
|
|
$blame-cyan: #acd5f2;
|
|
$blame-blue: #254e77;
|
|
|
|
/*
|
|
* Builds
|
|
*/
|
|
$builds-trace-bg: #111;
|
|
$job-log-highlight-height: 18px;
|
|
$job-log-line-padding: 55px;
|
|
$job-line-number-width: 50px;
|
|
$job-line-number-margin: 43px;
|
|
$job-arrow-margin: 55px;
|
|
|
|
/*
|
|
* Commit Page
|
|
*/
|
|
$commit-max-width-marker-color: rgba(0, 0, 0, 0);
|
|
$commit-message-text-area-bg: rgba(0, 0, 0, 0);
|
|
$commit-stat-summary-height: 36px;
|
|
|
|
/*
|
|
* Common
|
|
*/
|
|
$common-gray-light: #bbb;
|
|
$common-gray-dark: #444;
|
|
|
|
/*
|
|
* Files
|
|
*/
|
|
$logs-li-color: #888;
|
|
$logs-p-color: #333;
|
|
|
|
/*
|
|
* Forms
|
|
*/
|
|
$input-height: 34px;
|
|
$input-danger-bg: #f2dede;
|
|
$input-group-addon-bg: $gray-10;
|
|
$gl-field-focus-shadow: rgba(0, 0, 0, 0.075);
|
|
$gl-field-focus-shadow-error: rgba($red-500, 0.6);
|
|
$input-short-width: 200px;
|
|
$input-short-md-width: 280px;
|
|
$input-md-width: 240px;
|
|
$input-lg-width: 320px;
|
|
|
|
/*
|
|
* Help
|
|
*/
|
|
$document-index-color: #888;
|
|
$help-shortcut-header-color: #333;
|
|
|
|
/*
|
|
* Issues
|
|
*/
|
|
$issues-today-bg: #f3fff2 !default;
|
|
$issues-today-border: #e1e8d5 !default;
|
|
$compare-display-color: #888;
|
|
|
|
/*
|
|
* Label
|
|
*/
|
|
$label-font-size: 12px;
|
|
$label-padding: 7px;
|
|
$label-padding-modal: 10px;
|
|
$label-gray-bg: #f8fafc;
|
|
$label-inverse-bg: #333;
|
|
$label-remove-border: rgba(0, 0, 0, 0.1);
|
|
$label-border-radius: 100px;
|
|
|
|
/*
|
|
* Animation
|
|
*/
|
|
$fade-in-duration: 200ms;
|
|
$fade-mask-transition-duration: 0.1s;
|
|
$fade-mask-transition-curve: ease-in-out;
|
|
|
|
/*
|
|
* Login
|
|
*/
|
|
$login-brand-holder-color: #888;
|
|
|
|
/*
|
|
* Projects
|
|
*/
|
|
$project-option-descr-color: #54565b;
|
|
$project-network-controls-color: #888;
|
|
|
|
$feature-toggle-color: #fff;
|
|
$feature-toggle-text-color: #fff;
|
|
$feature-toggle-color-enabled: #4a8bee;
|
|
|
|
/*
|
|
* Monitor Charts
|
|
*/
|
|
$chart-tooltip-max-width: 512px;
|
|
|
|
/*
|
|
Stat Graph
|
|
*/
|
|
$stat-graph-common-bg: #f3f3f3;
|
|
$stat-graph-selection-fill: #333;
|
|
$stat-graph-selection-stroke: #333;
|
|
|
|
/*
|
|
* Selects
|
|
*/
|
|
$select2-drop-shadow1: rgba(76, 86, 103, 0.247059);
|
|
$select2-drop-shadow2: rgba(31, 37, 50, 0.317647);
|
|
|
|
/*
|
|
* Typography
|
|
*/
|
|
$body-text-shadow: rgba(255, 255, 255, 0.01);
|
|
|
|
/*
|
|
* UI Dev Kit
|
|
*/
|
|
$ui-dev-kit-example-color: #bbb;
|
|
|
|
/*
|
|
Pipeline Graph
|
|
*/
|
|
$ci-action-icon-size: 22px;
|
|
$ci-action-icon-size-lg: 24px;
|
|
$pipeline-dropdown-line-height: 20px;
|
|
$pipeline-dropdown-status-icon-size: 18px;
|
|
$ci-action-dropdown-button-size: 24px;
|
|
$ci-action-dropdown-svg-size: 12px;
|
|
$pipelines-table-header-height: 40px;
|
|
|
|
/*
|
|
CI variable lists
|
|
*/
|
|
$ci-variable-remove-button-width: calc(1em + #{2 * $gl-padding});
|
|
|
|
/*
|
|
GitLab Plans
|
|
*/
|
|
$gl-gold-plan: #d4af37;
|
|
$gl-silver-plan: #91a1ab;
|
|
$gl-bronze-plan: #cd7f32;
|
|
|
|
/*
|
|
Cross-project Pipelines
|
|
*/
|
|
$linked-project-column-margin: 60px;
|
|
|
|
/*
|
|
Performance Bar
|
|
*/
|
|
$perf-bar-production: #222;
|
|
$perf-bar-staging: #291430;
|
|
$perf-bar-development: #4c1210;
|
|
$perf-bar-bucket-bg: #111;
|
|
$perf-bar-bucket-box-shadow-from: rgba($white, 0.2);
|
|
$perf-bar-bucket-box-shadow-to: rgba($black, 0.25);
|
|
$perf-bar-canary-text: $orange-400;
|
|
|
|
/*
|
|
Issuable warning
|
|
*/
|
|
$issuable-warning-size: 24px;
|
|
$issuable-warning-icon-margin: 4px;
|
|
|
|
/*
|
|
Image Commenting cursor
|
|
*/
|
|
$image-comment-cursor-left-offset: 12;
|
|
$image-comment-cursor-top-offset: 12;
|
|
|
|
/*
|
|
Add GitLab Slack Application
|
|
*/
|
|
$add-to-slack-popup-max-width: 400px;
|
|
$add-to-slack-gif-max-width: 850px;
|
|
$add-to-slack-well-max-width: 750px;
|
|
$add-to-slack-logo-size: 100px;
|
|
$double-headed-arrow-width: 100px;
|
|
$double-headed-arrow-height: 25px;
|
|
$right-arrow-size: 16px;
|
|
|
|
/*
|
|
Popup
|
|
*/
|
|
$popup-triangle-size: 15px;
|
|
$popup-triangle-border-size: 1px;
|
|
$popup-box-shadow-color: rgba(90, 90, 90, 0.05);
|
|
|
|
/*
|
|
Multi file editor
|
|
*/
|
|
$border-color-settings: #e1e1e1;
|
|
|
|
/*
|
|
Modals
|
|
*/
|
|
$modal-body-height: 80px;
|
|
$modal-border-color: #e9ecef;
|
|
$modal-border-radius: 0.25rem;
|
|
|
|
$priority-label-empty-state-width: 114px;
|
|
|
|
/*
|
|
Popovers
|
|
*/
|
|
$popover-max-width: 384px;
|
|
$popover-box-shadow: 0 2px 3px 1px $gray-100;
|
|
|
|
/*
|
|
Issues Analytics
|
|
*/
|
|
$issues-analytics-popover-boarder-color: rgba(0, 0, 0, 0.15);
|
|
|
|
/*
|
|
Merge Requests
|
|
*/
|
|
$mr-tabs-height: 48px;
|
|
$mr-version-controls-height: 56px;
|
|
$mr-widget-margin-left: 40px;
|
|
|
|
/*
|
|
Compare Branches
|
|
*/
|
|
$compare-branches-sticky-header-height: 68px;
|
|
|
|
/**
|
|
Bootstrap 4.2.0 introduced new icons for validating forms.
|
|
Our design system does not use those, so we are disabling them for now:
|
|
- Docs: https://getbootstrap.com/docs/4.3/components/forms/#server-side
|
|
- Issue: https://gitlab.com/gitlab-org/design.gitlab.com/issues/242
|
|
*/
|
|
$enable-validation-icons: false;
|
|
|
|
/*
|
|
Licenses
|
|
*/
|
|
$license-header-cell-width: 150px;
|