summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/bootstrap_migration.scss
blob: e24f8b1d4e854117f97f56be50cc923e29ced95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 *  Scss to help with bootstrap 3 to 4 migration
 */

$text-color: $gl-text-color;

$brand-primary: $gl-primary;
$brand-success: $gl-success;
$brand-info: $gl-info;
$brand-warning: $gl-warning;
$brand-danger: $gl-danger;

$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;

html {
  // Override default font size used in bs4
  font-size: 14px;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  // Override bootstrap reboot
  -webkit-appearance: inherit;
}

[role="button"] {
  cursor: pointer;
}

input[type="file"] {
  // Bootstrap 4 file input height is taller by default
  // which makes them look ugly
  line-height: 1;
}

b,
strong {
  font-weight: bold;
}

a {
  color: $gl-link-color;
}

.form-group.row .col-form-label {
  // Bootstrap 4 aligns labels to the left
  // for horizontal forms
  @include media-breakpoint-up(md) {
    text-align: right;
  }
}

code {
  padding: 2px 4px;
  background-color: $red-100;
  border-radius: 3px;
}

table {
  // Remove any table border lines
  border-spacing: 0;
}

.tooltip {
  // Fix bootstrap4 bug whereby tooltips flicker when they are hovered over their borders
  pointer-events: none;
}

.popover {
  font-size: 14px;
}

@each $breakpoint in map-keys($grid-breakpoints) {
  @include media-breakpoint-up($breakpoint) {
    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);

    .d#{$infix}-table-header-group { display: table-header-group !important; }
  }
}

.text-secondary {
  // Override Bootstrap's light secondary color
  // We have to use !important because bootstrap has that set as well
  color: $gl-text-color-secondary !important;
}

// Polyfill deprecated selectors

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.hide {
  display: none;
}

.dropdown-toggle::after,
.dropright .dropdown-menu-toggle::after {
  // Remove bootstrap's dropdown caret
  display: none;
}

.badge {
  padding: 4px 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: $gl-font-weight-normal;
  display: inline-block;

  &.badge-gray {
    background-color: $label-gray-bg;
    color: $gl-text-color;
    text-shadow: none;
  }

  &.badge-inverse {
    background-color: $label-inverse-bg;
  }
}

.divider {
  @extend .dropdown-divider;
}

.info-well {
  background: $theme-gray-50;
  color: $gl-text-color;
  border: 1px solid $border-color;
  border-radius: 4px;
  margin-bottom: 16px;

  .well-segment {
    padding: 16px;

    &:not(:last-of-type) {
      border-bottom: 1px solid $well-inner-border;
    }
  }
}

.card {
  .card-title {
    margin-bottom: 0;
  }

  &.card-without-border {
    @extend .border-0;
  }

  &.card-without-margin {
    margin: 0;
  }

  &.bg-light {
    @extend .border-0;
  }
}

.nav-tabs {
  .nav-link {
    border: 0;
  }

  .nav-item {
    margin-bottom: 0;
  }
}

pre code {
  white-space: pre-wrap;
}