gitlab-org--gitlab-foss/app/assets/stylesheets/bootstrap_migration.scss

319 lines
5.4 KiB
SCSS
Raw Normal View History

2018-04-06 18:23:46 -04:00
$text-color: $gl-text-color;
$brand-primary: $blue-500;
$brand-success: $green-500;
$brand-info: $blue-500;
$brand-warning: $orange-500;
$brand-danger: $red-500;
2018-04-06 18:23:46 -04:00
$border-radius-base: $gl-border-radius-base;
2018-04-06 18:23:46 -04:00
$modal-body-bg: $white;
2018-04-06 18:23:46 -04:00
$input-border: $border-color;
2018-04-09 12:28:30 -04:00
$padding-base-vertical: $gl-vert-padding;
$padding-base-horizontal: $gl-padding;
2018-04-10 12:23:10 -04:00
/*
* Scss to help with bootstrap 3 to 4 migration
*/
2018-12-07 20:16:46 -05:00
body,
.form-control,
.search form {
// Override default font size used in non-csslab UI
// Use rem to keep default font-size at 14px on body so 1rem still
// fits 8px grid, but also allow users to change browser font size
font-size: 0.875rem;
2018-04-10 12:23:10 -04:00
}
2018-06-04 22:51:09 -04:00
legend {
border-bottom: 1px solid $border-color;
margin-bottom: 20px;
}
2018-04-16 13:28:52 -04:00
button,
html [type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
// Override bootstrap reboot
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-appearance: inherit;
cursor: pointer;
}
2018-06-05 17:14:21 -04:00
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 10px;
}
/* Our adjustments to hx & .hx above add unnecessary margins to modal-title
and page-title in modals, so we set them to 0 in order to have properly
formatted modal headers. */
.modal-header {
.modal-title,
.page-title {
margin-top: 0;
margin-bottom: 0;
}
}
2018-06-05 17:14:21 -04:00
h5,
.h5 {
font-size: $gl-font-size;
}
input[type='file'] {
2018-06-01 17:58:00 -04:00
// Bootstrap 4 file input height is taller by default
// which makes them look ugly
line-height: 1;
}
b,
strong {
font-weight: bold;
}
a {
2018-08-14 12:44:08 -04:00
color: $blue-600;
}
2018-06-11 16:24:57 -04:00
hr {
overflow: hidden;
}
.form-group.row .col-form-label {
// Bootstrap 4 aligns labels to the left
// for horizontal forms
2018-05-24 21:16:07 -04:00
@include media-breakpoint-up(md) {
text-align: right;
}
}
code {
padding: 2px 4px;
color: $code-color;
background-color: $gray-50;
border-radius: $border-radius-default;
2018-06-04 21:43:31 -04:00
.code > &,
2018-06-04 23:09:17 -04:00
.build-trace & {
background-color: inherit;
padding: unset;
2018-06-04 23:09:17 -04:00
}
2018-06-04 21:43:31 -04:00
}
2018-04-18 13:17:06 -04:00
table {
// Remove any table border lines
border-spacing: 0;
}
2018-04-24 15:06:55 -04:00
@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;
}
2018-04-24 15:06:55 -04:00
}
}
2018-05-25 13:20:23 -04:00
.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;
}
2018-04-24 15:06:55 -04:00
2018-06-05 16:36:13 -04:00
.bg-success,
.bg-primary,
.bg-info,
.bg-danger,
.bg-warning {
.card-header {
color: $white;
2018-06-05 16:36:13 -04:00
}
}
2018-04-10 12:23:10 -04:00
// Polyfill deprecated selectors
.hidden {
display: none !important;
visibility: hidden !important;
2018-04-10 12:23:10 -04:00
}
2018-04-19 20:15:38 -04:00
.hide {
display: none;
}
2018-05-31 13:02:01 -04:00
.dropdown-toggle::after,
.dropright .dropdown-menu-toggle::after {
// Remove bootstrap's dropdown caret
display: none;
}
// Add to .label so that old system notes that are saved to the db
// will still receive the correct styling
.badge:not(.gl-badge),
.label {
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 {
// copied rules from node_modules/bootstrap/scss/_dropdown.scss:116
// this might be safe to just remove instead
// most places that use divider add overrides to undo these things
// there is also a probably-unintentional use in deprecated_dropdown_divider.scss
// so we would end up with .gl-dropdown .dropdown-divider
height: 0;
margin: 4px 0;
overflow: hidden;
border-top: 1px solid $border-color;
}
.info-well {
background: $gray-10;
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;
}
p,
ol,
ul,
.form-group {
&:last-of-type {
margin-bottom: 0;
}
}
}
2018-06-05 11:22:39 -04:00
.badge.badge-gray {
background-color: $well-expand-item;
}
}
.card {
&.card-without-border,
2018-04-18 15:55:36 -04:00
&.bg-light {
border: 0 !important;
2018-04-18 15:55:36 -04:00
}
}
2018-05-24 22:32:40 -04:00
2018-05-31 10:23:49 -04:00
.nav-tabs {
2018-06-05 20:37:04 -04:00
// Override bootstrap's default border
border-bottom: 0;
2018-05-31 10:23:49 -04:00
.nav-link {
border-top: 0;
border-left: 0;
border-right: 0;
2018-05-31 10:23:49 -04:00
}
.nav-item {
margin-bottom: 0;
}
2018-05-24 22:32:40 -04:00
}
2018-05-29 12:11:09 -04:00
pre code {
white-space: pre-wrap;
}
.alert {
2018-06-15 15:35:27 -04:00
border-radius: 0;
}
.alert-success {
background-color: $green-500;
border-color: $green-500;
}
.alert-info {
background-color: $blue-500;
border-color: $blue-500;
}
.alert-warning {
background-color: $orange-500;
border-color: $orange-500;
}
.alert-danger {
background-color: $red-500;
border-color: $red-500;
}
2018-06-15 15:35:27 -04:00
.alert-success,
.alert-info,
.alert-warning,
.alert-danger {
color: $white;
h4,
.alert-link {
color: $white;
}
}
2018-06-07 12:14:34 -04:00
input[type=color].form-control {
height: $input-height;
}
2018-06-11 13:41:48 -04:00
.toggle-sidebar-button {
.collapse-text,
.icon-chevron-double-lg-left,
.icon-chevron-double-lg-right {
2018-06-11 13:41:48 -04:00
color: $gl-text-color-secondary;
}
}
.project-templates-buttons {
.btn {
vertical-align: unset;
}
}
2018-11-28 03:53:29 -05:00
/*
Bootstrap 4.1.2 introduced a new default vertical alignment which breaks our icons,
so we need to reset the vertical alignment to the default value. See:
- https://gitlab.com/gitlab-org/gitlab-foss/issues/51362
2018-11-28 03:53:29 -05:00
*/
svg {
vertical-align: baseline;
}