2016-06-02 11:05:42 +05:30
|
|
|
/*
|
|
|
|
* Layout
|
|
|
|
*/
|
2018-03-17 18:26:18 +05:30
|
|
|
$grid-size: 8px;
|
2018-11-18 11:00:15 +05:30
|
|
|
$gutter-collapsed-width: 62px;
|
|
|
|
$gutter-width: 290px;
|
|
|
|
$gutter-inner-width: 250px;
|
2018-05-09 12:01:36 +05:30
|
|
|
$sidebar-transition-duration: 0.3s;
|
2016-08-24 12:49:21 +05:30
|
|
|
$sidebar-breakpoint: 1024px;
|
2018-05-09 12:01:36 +05:30
|
|
|
$default-transition-duration: 0.15s;
|
2018-03-17 18:26:18 +05:30
|
|
|
$contextual-sidebar-width: 220px;
|
|
|
|
$contextual-sidebar-collapsed-width: 50px;
|
2018-12-13 13:39:08 +05:30
|
|
|
$toggle-sidebar-height: 48px;
|
2019-07-31 22:56:46 +05:30
|
|
|
$spacing-scale: (
|
|
|
|
0: 0,
|
|
|
|
1: #{0.5 * $grid-size},
|
|
|
|
2: $grid-size,
|
|
|
|
3: #{2 * $grid-size},
|
|
|
|
4: #{3 * $grid-size},
|
|
|
|
5: #{4 * $grid-size}
|
|
|
|
);
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
/*
|
|
|
|
* 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}
|
|
|
|
);
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
/*
|
|
|
|
* Color schema
|
|
|
|
*/
|
2017-08-17 22:00:37 +05:30
|
|
|
$darken-normal-factor: 7%;
|
|
|
|
$darken-dark-factor: 10%;
|
|
|
|
$darken-border-factor: 5%;
|
2018-03-17 18:26:18 +05:30
|
|
|
$darken-border-dashed-factor: 25%;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
$white-light: #fff;
|
2017-08-17 22:00:37 +05:30
|
|
|
$white-normal: #f0f0f0;
|
|
|
|
$white-dark: #eaeaea;
|
2019-07-07 11:18:12 +05:30
|
|
|
$white-transparent: rgba(255, 255, 255, 0.8);
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
$gray-lightest: #fdfdfd;
|
2016-09-29 09:46:39 +05:30
|
|
|
$gray-light: #fafafa;
|
2016-11-03 12:29:30 +05:30
|
|
|
$gray-lighter: #f9f9f9;
|
2016-09-29 09:46:39 +05:30
|
|
|
$gray-normal: #f5f5f5;
|
2017-08-17 22:00:37 +05:30
|
|
|
$gray-dark: darken($gray-light, $darken-dark-factor);
|
2016-11-03 12:29:30 +05:30
|
|
|
$gray-darker: #eee;
|
2017-08-17 22:00:37 +05:30
|
|
|
$gray-darkest: #c4c4c4;
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
$purple: #6d49cb;
|
|
|
|
$purple-light: #ede8fb;
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
$black: #000;
|
|
|
|
$black-transparent: rgba(0, 0, 0, 0.3);
|
|
|
|
$almost-black: #242424;
|
|
|
|
|
|
|
|
$t-gray-a-02: rgba($black, 0.02);
|
|
|
|
$t-gray-a-04: rgba($black, 0.04);
|
|
|
|
$t-gray-a-06: rgba($black, 0.06);
|
|
|
|
$t-gray-a-08: rgba($black, 0.08);
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
$gl-gray-100: #ddd;
|
|
|
|
$gl-gray-200: #ccc;
|
|
|
|
$gl-gray-350: #aaa;
|
|
|
|
$gl-gray-400: #999;
|
|
|
|
$gl-gray-500: #777;
|
|
|
|
$gl-gray-600: #666;
|
|
|
|
$gl-gray-700: #555;
|
2020-04-08 14:13:33 +05:30
|
|
|
$gl-gray-800: #333;
|
2018-12-05 23:21:45 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$green-50: #f1fdf6;
|
|
|
|
$green-100: #dcf5e7;
|
|
|
|
$green-200: #b3e6c8;
|
|
|
|
$green-300: #75d09b;
|
|
|
|
$green-400: #37b96d;
|
2017-08-17 22:00:37 +05:30
|
|
|
$green-500: #1aaa55;
|
|
|
|
$green-600: #168f48;
|
|
|
|
$green-700: #12753a;
|
|
|
|
$green-800: #0e5a2d;
|
|
|
|
$green-900: #0a4020;
|
2018-03-17 18:26:18 +05:30
|
|
|
$green-950: #072b15;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$blue-50: #f6fafe;
|
|
|
|
$blue-100: #e4f0fb;
|
|
|
|
$blue-200: #b8d6f4;
|
|
|
|
$blue-300: #73afea;
|
2018-12-05 23:21:45 +05:30
|
|
|
$blue-400: #418cd8;
|
2017-08-17 22:00:37 +05:30
|
|
|
$blue-500: #1f78d1;
|
|
|
|
$blue-600: #1b69b6;
|
|
|
|
$blue-700: #17599c;
|
|
|
|
$blue-800: #134a81;
|
|
|
|
$blue-900: #0f3b66;
|
2018-03-17 18:26:18 +05:30
|
|
|
$blue-950: #0a2744;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$orange-50: #fffaf4;
|
|
|
|
$orange-100: #fff1de;
|
|
|
|
$orange-200: #fed69f;
|
|
|
|
$orange-300: #fdbc60;
|
2018-12-05 23:21:45 +05:30
|
|
|
$orange-400: #fca429;
|
2017-08-17 22:00:37 +05:30
|
|
|
$orange-500: #fc9403;
|
|
|
|
$orange-600: #de7e00;
|
|
|
|
$orange-700: #c26700;
|
2018-03-17 18:26:18 +05:30
|
|
|
$orange-800: #a35200;
|
|
|
|
$orange-900: #853c00;
|
|
|
|
$orange-950: #592800;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$red-50: #fef6f5;
|
|
|
|
$red-100: #fbe5e1;
|
|
|
|
$red-200: #f2b4a9;
|
2018-12-05 23:21:45 +05:30
|
|
|
$red-300: #ea8271;
|
2017-08-17 22:00:37 +05:30
|
|
|
$red-400: #e05842;
|
|
|
|
$red-500: #db3b21;
|
|
|
|
$red-600: #c0341d;
|
|
|
|
$red-700: #a62d19;
|
|
|
|
$red-800: #8b2615;
|
|
|
|
$red-900: #711e11;
|
2018-03-17 18:26:18 +05:30
|
|
|
$red-950: #4b140b;
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
$gray-50: #fafafa;
|
|
|
|
$gray-100: #f2f2f2;
|
|
|
|
$gray-200: #dfdfdf;
|
2019-07-07 11:18:12 +05:30
|
|
|
$gray-300: #ccc;
|
2019-03-02 22:35:43 +05:30
|
|
|
$gray-400: #bababa;
|
|
|
|
$gray-500: #a7a7a7;
|
|
|
|
$gray-600: #919191;
|
|
|
|
$gray-700: #707070;
|
|
|
|
$gray-800: #4f4f4f;
|
|
|
|
$gray-900: #2e2e2e;
|
|
|
|
$gray-950: #1f1f1f;
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
$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: (
|
|
|
|
'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
|
|
|
|
);
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
// GitLab themes
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
$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;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$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;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
$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;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$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;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
$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;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
$border-white-light: darken($white-light, $darken-border-factor);
|
|
|
|
$border-white-normal: darken($white-normal, $darken-border-factor);
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
$border-gray-light: darken($gray-light, $darken-border-factor);
|
|
|
|
$border-gray-normal: darken($gray-normal, $darken-border-factor);
|
2018-03-17 18:26:18 +05:30
|
|
|
$border-gray-normal-dashed: darken($gray-normal, $darken-border-dashed-factor);
|
2017-08-17 22:00:37 +05:30
|
|
|
$border-gray-dark: darken($white-normal, $darken-border-factor);
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
/*
|
|
|
|
* UI elements
|
|
|
|
*/
|
2017-08-17 22:00:37 +05:30
|
|
|
$border-color: #e5e5e5;
|
2019-02-15 15:39:39 +05:30
|
|
|
$shadow-color: $t-gray-a-08;
|
2017-08-17 22:00:37 +05:30
|
|
|
$well-expand-item: #e8f2f7;
|
|
|
|
$well-inner-border: #eef0f2;
|
|
|
|
$well-light-border: #f1f1f1;
|
|
|
|
$well-light-text-color: #5b6169;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Text
|
|
|
|
*/
|
2017-08-17 22:00:37 +05:30
|
|
|
$gl-font-size: 14px;
|
2018-12-13 13:39:08 +05:30
|
|
|
$gl-font-size-xs: 11px;
|
|
|
|
$gl-font-size-small: 12px;
|
2019-02-15 15:39:39 +05:30
|
|
|
$gl-font-size-large: 16px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$gl-font-weight-normal: 400;
|
|
|
|
$gl-font-weight-bold: 600;
|
2017-09-10 17:25:29 +05:30
|
|
|
$gl-text-color: #2e2e2e;
|
|
|
|
$gl-text-color-secondary: #707070;
|
2018-11-08 19:23:39 +05:30
|
|
|
$gl-text-color-tertiary: #919191;
|
2017-09-10 17:25:29 +05:30
|
|
|
$gl-text-color-quaternary: #d6d6d6;
|
2018-03-17 18:26:18 +05:30
|
|
|
$gl-text-color-inverted: rgba(255, 255, 255, 1);
|
2018-05-09 12:01:36 +05:30
|
|
|
$gl-text-color-secondary-inverted: rgba(255, 255, 255, 0.85);
|
2018-03-17 18:26:18 +05:30
|
|
|
$gl-text-color-disabled: #919191;
|
2017-08-17 22:00:37 +05:30
|
|
|
$gl-grayish-blue: #7f8fa4;
|
|
|
|
$gl-gray-dark: #313236;
|
|
|
|
$gl-gray-light: #5c5c5c;
|
|
|
|
$gl-header-color: #4c4e54;
|
2019-12-26 22:10:19 +05:30
|
|
|
$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;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
$type-scale: (
|
|
|
|
1: 12px,
|
|
|
|
2: 14px,
|
|
|
|
3: 16px,
|
|
|
|
4: 20px,
|
|
|
|
5: 28px,
|
|
|
|
6: 42px
|
|
|
|
);
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
/*
|
|
|
|
* Lists
|
|
|
|
*/
|
2017-08-17 22:00:37 +05:30
|
|
|
$list-border: rgba(0, 0, 0, 0.05);
|
2016-09-13 17:45:13 +05:30
|
|
|
$list-text-height: 42px;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Code
|
|
|
|
*/
|
2018-11-18 11:00:15 +05:30
|
|
|
$code-font-size: 90%;
|
|
|
|
$code-line-height: 1.6;
|
2020-04-08 14:13:33 +05:30
|
|
|
$code-color: $gray-950;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
/*
|
|
|
|
* Tooltips
|
|
|
|
*/
|
|
|
|
$tooltip-font-size: 12px;
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
/*
|
|
|
|
* Padding
|
|
|
|
*/
|
2018-03-27 19:54:05 +05:30
|
|
|
$gl-padding-4: 4px;
|
2018-11-08 19:23:39 +05:30
|
|
|
$gl-padding-8: 8px;
|
2019-09-04 21:01:54 +05:30
|
|
|
$gl-padding-12: 12px;
|
2018-11-08 19:23:39 +05:30
|
|
|
$gl-padding: 16px;
|
|
|
|
$gl-padding-24: 24px;
|
|
|
|
$gl-padding-32: 32px;
|
2019-03-02 22:35:43 +05:30
|
|
|
$gl-padding-50: 50px;
|
2017-09-10 17:25:29 +05:30
|
|
|
$gl-col-padding: 15px;
|
2016-06-16 23:09:34 +05:30
|
|
|
$gl-input-padding: 10px;
|
2016-01-19 16:12:03 +05:30
|
|
|
$gl-vert-padding: 6px;
|
2016-06-02 11:05:42 +05:30
|
|
|
$gl-padding-top: 10px;
|
2016-08-24 12:49:21 +05:30
|
|
|
$gl-sidebar-padding: 22px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$gl-bar-padding: 3px;
|
2018-11-20 20:47:30 +05:30
|
|
|
$input-horizontal-padding: 12px;
|
2019-07-07 11:18:12 +05:30
|
|
|
$browser-scrollbar-size: 10px;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Misc
|
|
|
|
*/
|
2018-03-17 18:26:18 +05:30
|
|
|
$header-height: 40px;
|
2019-02-15 15:39:39 +05:30
|
|
|
$suggestion-header-height: 46px;
|
2018-11-08 19:23:39 +05:30
|
|
|
$ide-statusbar-height: 25px;
|
2016-06-02 11:05:42 +05:30
|
|
|
$fixed-layout-width: 1280px;
|
2017-08-17 22:00:37 +05:30
|
|
|
$limited-layout-width: 990px;
|
2017-09-10 17:25:29 +05:30
|
|
|
$container-text-max-width: 540px;
|
2016-04-02 18:10:28 +05:30
|
|
|
$gl-avatar-size: 40px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$border-radius-default: 4px;
|
|
|
|
$border-radius-small: 2px;
|
2019-07-07 11:18:12 +05:30
|
|
|
$border-radius-large: 8px;
|
2018-11-20 20:47:30 +05:30
|
|
|
$default-icon-size: 18px;
|
2016-06-02 11:05:42 +05:30
|
|
|
$layout-link-gray: #7e7c7c;
|
2016-06-16 23:09:34 +05:30
|
|
|
$btn-side-margin: 10px;
|
|
|
|
$btn-sm-side-margin: 7px;
|
2018-11-08 19:23:39 +05:30
|
|
|
$btn-margin-5: 5px;
|
2018-10-15 14:42:47 +05:30
|
|
|
$sidebar-block-hover-color: #ebebeb;
|
2017-08-17 22:00:37 +05:30
|
|
|
$count-arrow-border: #dce0e5;
|
|
|
|
$general-hover-transition-duration: 100ms;
|
|
|
|
$general-hover-transition-curve: linear;
|
2017-09-10 17:25:29 +05:30
|
|
|
$highlight-changes-color: rgb(235, 255, 232);
|
|
|
|
$performance-bar-height: 35px;
|
2019-07-07 11:18:12 +05:30
|
|
|
$system-header-height: 16px;
|
|
|
|
$system-footer-height: $system-header-height;
|
2018-03-17 18:26:18 +05:30
|
|
|
$flash-height: 52px;
|
2019-12-04 20:38:33 +05:30
|
|
|
$flash-container-top: 48px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$context-header-height: 60px;
|
2018-05-09 12:01:36 +05:30
|
|
|
$breadcrumb-min-height: 48px;
|
2019-03-02 22:35:43 +05:30
|
|
|
$home-panel-title-row-height: 64px;
|
|
|
|
$home-panel-avatar-mobile-size: 24px;
|
2018-12-13 13:39:08 +05:30
|
|
|
$gl-line-height: 16px;
|
2019-09-04 21:01:54 +05:30
|
|
|
$gl-line-height-20: 20px;
|
2019-02-15 15:39:39 +05:30
|
|
|
$gl-line-height-24: 24px;
|
|
|
|
$gl-line-height-14: 14px;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
$issue-box-upcoming-bg: #8f8f8f;
|
|
|
|
$pages-group-name-color: #4c4e54;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
* Common component specific colors
|
|
|
|
*/
|
2018-03-17 18:26:18 +05:30
|
|
|
$user-mention-bg: rgba($blue-500, 0.044);
|
|
|
|
$user-mention-bg-hover: rgba($blue-500, 0.15);
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2016-06-22 15:30:34 +05:30
|
|
|
/* tanuki logo colors */
|
|
|
|
$tanuki-red: #e24329;
|
|
|
|
$tanuki-orange: #fc6d26;
|
|
|
|
$tanuki-yellow: #fca326;
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
/*
|
|
|
|
* State colors:
|
|
|
|
*/
|
2018-11-20 20:47:30 +05:30
|
|
|
$green-500-focus: rgba($green-500, 0.4);
|
2016-06-02 11:05:42 +05:30
|
|
|
$gl-btn-active-background: rgba(0, 0, 0, 0.16);
|
|
|
|
$gl-btn-active-gradient: inset 0 2px 3px $gl-btn-active-background;
|
2015-10-24 18:46:33 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Commit Diff Colors
|
|
|
|
*/
|
|
|
|
$added: #63c363;
|
|
|
|
$deleted: #f77;
|
2016-06-02 11:05:42 +05:30
|
|
|
$line-added: #ecfdf0;
|
|
|
|
$line-added-dark: #c7f0d2;
|
|
|
|
$line-removed: #fbe9eb;
|
|
|
|
$line-removed-dark: #fac5cd;
|
|
|
|
$line-number-old: #f9d7dc;
|
|
|
|
$line-number-new: #ddfbe6;
|
|
|
|
$line-number-select: #fbf2da;
|
2017-08-17 22:00:37 +05:30
|
|
|
$line-target-blue: #f6faff;
|
2016-06-02 11:05:42 +05:30
|
|
|
$line-select-yellow: #fcf8e7;
|
|
|
|
$line-select-yellow-dark: #f0e2bd;
|
2017-08-17 22:00:37 +05:30
|
|
|
$dark-diff-match-bg: rgba(255, 255, 255, 0.3);
|
|
|
|
$dark-diff-match-color: rgba(255, 255, 255, 0.1);
|
2019-07-07 11:18:12 +05:30
|
|
|
$diff-image-info-color: #808080;
|
|
|
|
$diff-view-modes-color: #808080;
|
2017-08-17 22:00:37 +05:30
|
|
|
$diff-view-modes-border: #c1c1c1;
|
2018-03-17 18:26:18 +05:30
|
|
|
$diff-jagged-border-gradient-color: darken($white-normal, 8%);
|
2015-10-24 18:46:33 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Fonts
|
|
|
|
*/
|
2018-11-18 11:00:15 +05:30
|
|
|
$monospace-font: 'Menlo', 'DejaVu Sans Mono', 'Liberation Mono', 'Consolas', 'Ubuntu Mono',
|
2018-10-15 14:42:47 +05:30
|
|
|
'Courier New', 'andale mono', 'lucida console', monospace;
|
2019-09-04 21:01:54 +05:30
|
|
|
$regular-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', Ubuntu, Cantarell,
|
2018-12-05 23:21:45 +05:30
|
|
|
'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
|
|
'Noto Color Emoji';
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Dropdowns
|
|
|
|
*/
|
|
|
|
$dropdown-width: 300px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$dropdown-min-height: 40px;
|
|
|
|
$dropdown-max-height: 312px;
|
2019-07-07 11:18:12 +05:30
|
|
|
$dropdown-max-height-lg: 445px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$dropdown-vertical-offset: 4px;
|
2018-05-09 12:01:36 +05:30
|
|
|
$dropdown-empty-row-bg: rgba(#000, 0.04);
|
|
|
|
$dropdown-shadow-color: rgba(#000, 0.1);
|
2016-06-02 11:05:42 +05:30
|
|
|
$dropdown-title-btn-color: #bfbfbf;
|
2017-08-17 22:00:37 +05:30
|
|
|
$dropdown-input-fa-color: #c7c7c7;
|
2018-11-20 20:47:30 +05:30
|
|
|
$dropdown-input-focus-shadow: rgba($blue-300, 0.4);
|
2018-05-09 12:01:36 +05:30
|
|
|
$dropdown-loading-bg: rgba(#fff, 0.6);
|
2017-08-17 22:00:37 +05:30
|
|
|
$dropdown-chevron-size: 10px;
|
|
|
|
$dropdown-toggle-active-border-color: darken($border-color, 14%);
|
2018-03-17 18:26:18 +05:30
|
|
|
$dropdown-fade-mask-height: 32px;
|
2018-11-08 19:23:39 +05:30
|
|
|
$dropdown-member-form-control-width: 163px;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
* Filtered Search
|
|
|
|
*/
|
2017-09-10 17:25:29 +05:30
|
|
|
$filtered-search-term-shadow-color: rgba(0, 0, 0, 0.09);
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
/*
|
|
|
|
* Contextual Sidebar
|
|
|
|
*/
|
2018-05-09 12:01:36 +05:30
|
|
|
$link-active-background: rgba(0, 0, 0, 0.04);
|
|
|
|
$link-hover-background: rgba(0, 0, 0, 0.06);
|
|
|
|
$inactive-badge-background: rgba(0, 0, 0, 0.08);
|
2018-10-15 14:42:47 +05:30
|
|
|
$sidebar-toggle-height: 60px;
|
2019-12-04 20:38:33 +05:30
|
|
|
$sidebar-toggle-width: 40px;
|
2018-10-15 14:42:47 +05:30
|
|
|
$sidebar-milestone-toggle-bottom-margin: 10px;
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
/*
|
|
|
|
* Buttons
|
|
|
|
*/
|
|
|
|
$btn-active-gray: #ececec;
|
2018-11-20 20:47:30 +05:30
|
|
|
$btn-active-gray-light: #e4e7ed;
|
2016-06-02 11:05:42 +05:30
|
|
|
$btn-white-active: #848484;
|
2018-03-27 19:54:05 +05:30
|
|
|
$gl-btn-padding: 10px;
|
|
|
|
$gl-btn-line-height: 16px;
|
|
|
|
$gl-btn-vert-padding: 8px;
|
|
|
|
$gl-btn-horz-padding: 12px;
|
2019-02-15 15:39:39 +05:30
|
|
|
$gl-btn-small-font-size: 13px;
|
|
|
|
$gl-btn-small-line-height: 18px;
|
|
|
|
$gl-btn-xs-font-size: 13px;
|
|
|
|
$gl-btn-xs-line-height: 13px;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Badges
|
|
|
|
*/
|
2017-09-10 17:25:29 +05:30
|
|
|
$badge-bg: rgba(0, 0, 0, 0.07);
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
/*
|
|
|
|
* Pagination
|
|
|
|
*/
|
|
|
|
$pagination-padding-y: 6px;
|
|
|
|
$pagination-padding-x: 16px;
|
|
|
|
$pagination-line-height: 20px;
|
|
|
|
$pagination-disabled-color: #cdcdcd;
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
/*
|
|
|
|
* Status icons
|
|
|
|
*/
|
|
|
|
$status-icon-size: 22px;
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
/*
|
|
|
|
* Award emoji
|
|
|
|
*/
|
2018-05-09 12:01:36 +05:30
|
|
|
$award-emoji-menu-shadow: rgba(0, 0, 0, 0.175);
|
2017-08-17 22:00:37 +05:30
|
|
|
$award-emoji-positive-add-bg: #fed159;
|
|
|
|
$award-emoji-positive-add-lines: #bb9c13;
|
2019-07-07 11:18:12 +05:30
|
|
|
$award-emoji-width: 376px;
|
|
|
|
$award-emoji-width-xs: 90%;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Search Box
|
|
|
|
*/
|
2018-05-09 12:01:36 +05:30
|
|
|
$search-input-border-color: rgba($blue-400, 0.8);
|
2019-02-15 15:39:39 +05:30
|
|
|
$search-input-width: 200px;
|
2019-12-04 20:38:33 +05:30
|
|
|
$search-input-xl-width: 320px;
|
2016-06-02 11:05:42 +05:30
|
|
|
$location-icon-color: #e7e9ed;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Notes
|
|
|
|
*/
|
|
|
|
$note-disabled-comment-color: #b2b2b2;
|
2017-08-17 22:00:37 +05:30
|
|
|
$note-targe3-outside: #fffff0;
|
|
|
|
$note-targe3-inside: #ffffd3;
|
2017-09-10 17:25:29 +05:30
|
|
|
$note-icon-gutter-width: 55px;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
/*
|
|
|
|
* Identicon
|
|
|
|
*/
|
|
|
|
$identicon-red: #ffebee;
|
|
|
|
$identicon-purple: #f3e5f5;
|
|
|
|
$identicon-indigo: #e8eaf6;
|
|
|
|
$identicon-blue: #e3f2fd;
|
|
|
|
$identicon-teal: #e0f2f1;
|
|
|
|
$identicon-orange: #fbe9e7;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
* Calendar
|
|
|
|
*/
|
2016-06-02 11:05:42 +05:30
|
|
|
$calendar-hover-bg: #ecf3fe;
|
2018-05-09 12:01:36 +05:30
|
|
|
$calendar-border-color: rgba(#000, 0.1);
|
2017-08-17 22:00:37 +05:30
|
|
|
$calendar-user-contrib-text: #959494;
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
/*
|
2020-03-13 15:44:24 +05:30
|
|
|
* Value Stream Analytics
|
2016-09-29 09:46:39 +05:30
|
|
|
*/
|
|
|
|
$cycle-analytics-box-padding: 30px;
|
|
|
|
$cycle-analytics-box-text-color: #8c8c8c;
|
2017-08-17 22:00:37 +05:30
|
|
|
$cycle-analytics-big-font: 19px;
|
|
|
|
$cycle-analytics-light-gray: #bfbfbf;
|
|
|
|
$cycle-analytics-dismiss-icon-color: #b2b2b2;
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2016-06-22 15:30:34 +05:30
|
|
|
/*
|
2017-08-17 22:00:37 +05:30
|
|
|
* CI
|
|
|
|
*/
|
|
|
|
$ci-skipped-color: #888;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Boards
|
|
|
|
*/
|
|
|
|
$issue-boards-font-size: 14px;
|
2018-12-13 13:39:08 +05:30
|
|
|
$issue-boards-card-shadow: rgba(0, 0, 0, 0.1);
|
2018-05-09 12:01:36 +05:30
|
|
|
/*
|
|
|
|
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;
|
2018-10-15 14:42:47 +05:30
|
|
|
$issue-board-list-difference-xs: $header-height + $issue-boards-breadcrumbs-height-xs;
|
2018-05-09 12:01:36 +05:30
|
|
|
$issue-board-list-difference-sm: $header-height + $breadcrumb-min-height;
|
2018-10-15 14:42:47 +05:30
|
|
|
$issue-board-list-difference-md: $issue-board-list-difference-sm + $issue-boards-filter-height;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Avatar
|
|
|
|
*/
|
2018-11-18 11:00:15 +05:30
|
|
|
$avatar-radius: 50%;
|
2017-08-17 22:00:37 +05:30
|
|
|
$gl-avatar-size: 40px;
|
2019-09-04 21:01:54 +05:30
|
|
|
$gl-avatar-border-opacity: 0.1;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
/*
|
|
|
|
* Blame
|
|
|
|
*/
|
|
|
|
$blame-gray: #ededed;
|
|
|
|
$blame-cyan: #acd5f2;
|
|
|
|
$blame-blue: #254e77;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
* Builds
|
|
|
|
*/
|
|
|
|
$builds-trace-bg: #111;
|
2019-10-12 21:52:04 +05:30
|
|
|
$job-log-highlight-height: 18px;
|
2019-12-21 20:55:43 +05:30
|
|
|
$job-log-line-padding: 55px;
|
|
|
|
$job-line-number-width: 50px;
|
|
|
|
$job-line-number-margin: 43px;
|
|
|
|
$job-arrow-margin: 55px;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Commit Page
|
|
|
|
*/
|
2018-03-17 18:26:18 +05:30
|
|
|
$commit-max-width-marker-color: rgba(0, 0, 0, 0);
|
|
|
|
$commit-message-text-area-bg: rgba(0, 0, 0, 0);
|
2019-03-02 22:35:43 +05:30
|
|
|
$commit-stat-summary-height: 36px;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Common
|
|
|
|
*/
|
|
|
|
$common-gray-light: #bbb;
|
|
|
|
$common-gray-dark: #444;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Files
|
|
|
|
*/
|
|
|
|
$logs-li-color: #888;
|
|
|
|
$logs-p-color: #333;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Forms
|
|
|
|
*/
|
2017-09-10 17:25:29 +05:30
|
|
|
$input-height: 34px;
|
2017-08-17 22:00:37 +05:30
|
|
|
$input-danger-bg: #f2dede;
|
|
|
|
$input-group-addon-bg: #f7f8fa;
|
|
|
|
$gl-field-focus-shadow: rgba(0, 0, 0, 0.075);
|
|
|
|
$gl-field-focus-shadow-error: rgba($red-500, 0.6);
|
2018-11-08 19:23:39 +05:30
|
|
|
$input-short-width: 200px;
|
|
|
|
$input-short-md-width: 280px;
|
2019-02-15 15:39:39 +05:30
|
|
|
$input-md-width: 240px;
|
|
|
|
$input-lg-width: 320px;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Help
|
|
|
|
*/
|
|
|
|
$document-index-color: #888;
|
|
|
|
$help-shortcut-header-color: #333;
|
2019-09-04 21:01:54 +05:30
|
|
|
$accepting-mr-label-color: #69d100;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Issues
|
|
|
|
*/
|
|
|
|
$issues-today-bg: #f3fff2;
|
|
|
|
$issues-today-border: #e1e8d5;
|
|
|
|
$compare-display-color: #888;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Label
|
|
|
|
*/
|
2018-03-27 19:54:05 +05:30
|
|
|
$label-font-size: 12px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$label-padding: 7px;
|
|
|
|
$label-padding-modal: 10px;
|
2017-08-17 22:00:37 +05:30
|
|
|
$label-gray-bg: #f8fafc;
|
|
|
|
$label-inverse-bg: #333;
|
2018-05-09 12:01:36 +05:30
|
|
|
$label-remove-border: rgba(0, 0, 0, 0.1);
|
2017-08-17 22:00:37 +05:30
|
|
|
$label-border-radius: 100px;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Animation
|
|
|
|
*/
|
|
|
|
$fade-in-duration: 200ms;
|
2018-05-09 12:01:36 +05:30
|
|
|
$fade-mask-transition-duration: 0.1s;
|
2018-03-17 18:26:18 +05:30
|
|
|
$fade-mask-transition-curve: ease-in-out;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Login
|
|
|
|
*/
|
|
|
|
$login-brand-holder-color: #888;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Projects
|
|
|
|
*/
|
|
|
|
$project-option-descr-color: #54565b;
|
|
|
|
$project-network-controls-color: #888;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
$feature-toggle-color: #fff;
|
|
|
|
$feature-toggle-text-color: #fff;
|
|
|
|
$feature-toggle-color-enabled: #4a8bee;
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
/*
|
|
|
|
* Monitor Charts
|
|
|
|
*/
|
|
|
|
$chart-tooltip-max-width: 512px;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
$kdb-bg: #fcfcfc;
|
|
|
|
$kdb-border-bottom: #bbb;
|
|
|
|
$kdb-shadow: #bbb;
|
2017-09-10 17:25:29 +05:30
|
|
|
$body-text-shadow: rgba(255, 255, 255, 0.01);
|
2016-06-22 15:30:34 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
* UI Dev Kit
|
|
|
|
*/
|
|
|
|
$ui-dev-kit-example-color: #bbb;
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
Pipeline Graph
|
|
|
|
*/
|
2018-03-17 18:26:18 +05:30
|
|
|
$ci-action-icon-size: 22px;
|
2018-11-08 19:23:39 +05:30
|
|
|
$ci-action-icon-size-lg: 24px;
|
2018-03-17 18:26:18 +05:30
|
|
|
$pipeline-dropdown-line-height: 20px;
|
|
|
|
$pipeline-dropdown-status-icon-size: 18px;
|
2018-10-15 14:42:47 +05:30
|
|
|
$ci-action-dropdown-button-size: 24px;
|
|
|
|
$ci-action-dropdown-svg-size: 12px;
|
2019-12-04 20:38:33 +05:30
|
|
|
$pipelines-table-header-height: 40px;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
/*
|
2018-03-17 18:26:18 +05:30
|
|
|
CI variable lists
|
2017-09-10 17:25:29 +05:30
|
|
|
*/
|
2018-03-17 18:26:18 +05:30
|
|
|
$ci-variable-remove-button-width: calc(1em + #{2 * $gl-padding});
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
/*
|
|
|
|
Filtered Search
|
|
|
|
*/
|
|
|
|
$filter-name-resting-color: #f8f8f8;
|
|
|
|
$filter-name-text-color: rgba(0, 0, 0, 0.55);
|
|
|
|
$filter-value-text-color: rgba(0, 0, 0, 0.85);
|
|
|
|
$filter-name-selected-color: #ebebeb;
|
|
|
|
$filter-value-selected-color: #d7d7d7;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Animation Functions
|
|
|
|
*/
|
|
|
|
$dropdown-animation-timing: cubic-bezier(0.23, 1, 0.32, 1);
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
/*
|
|
|
|
GitLab Plans
|
|
|
|
*/
|
|
|
|
$gl-gold-plan: #d4af37;
|
|
|
|
$gl-silver-plan: #91a1ab;
|
|
|
|
$gl-bronze-plan: #cd7f32;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cross-project Pipelines
|
|
|
|
*/
|
|
|
|
$linked-project-column-margin: 60px;
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
/*
|
|
|
|
Performance Bar
|
|
|
|
*/
|
|
|
|
$perf-bar-production: #222;
|
|
|
|
$perf-bar-staging: #291430;
|
|
|
|
$perf-bar-development: #4c1210;
|
|
|
|
$perf-bar-bucket-bg: #111;
|
2018-05-09 12:01:36 +05:30
|
|
|
$perf-bar-bucket-box-shadow-from: rgba($white-light, 0.2);
|
|
|
|
$perf-bar-bucket-box-shadow-to: rgba($black, 0.25);
|
2018-12-13 13:39:08 +05:30
|
|
|
$perf-bar-canary-text: $orange-400;
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
/*
|
|
|
|
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;
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
/*
|
|
|
|
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;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
/*
|
|
|
|
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;
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
/*
|
2018-03-17 18:26:18 +05:30
|
|
|
Modals
|
2017-09-10 17:25:29 +05:30
|
|
|
*/
|
2019-09-30 21:07:59 +05:30
|
|
|
$modal-body-height: 80px;
|
2019-02-15 15:39:39 +05:30
|
|
|
$modal-border-color: #e9ecef;
|
2019-09-30 21:07:59 +05:30
|
|
|
$modal-border-radius: 0.25rem;
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
$priority-label-empty-state-width: 114px;
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
/*
|
|
|
|
Popovers
|
|
|
|
*/
|
|
|
|
$popover-max-width: 384px;
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
/*
|
|
|
|
Issues Analytics
|
|
|
|
*/
|
|
|
|
$issues-analytics-popover-boarder-color: rgba(0, 0, 0, 0.15);
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
Merge Requests
|
|
|
|
*/
|
2019-09-04 21:01:54 +05:30
|
|
|
$mr-tabs-height: 48px;
|
2019-03-02 22:35:43 +05:30
|
|
|
$mr-version-controls-height: 56px;
|
2019-12-21 20:55:43 +05:30
|
|
|
$mr-widget-margin-left: 40px;
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
Compare Branches
|
|
|
|
*/
|
|
|
|
$compare-branches-sticky-header-height: 68px;
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
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;
|