Skip to content

Commit

Permalink
trying to fix lists
Browse files Browse the repository at this point in the history
  • Loading branch information
kristopolous committed Oct 10, 2023
1 parent cba7b2b commit 74985a9
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 19 deletions.
10 changes: 6 additions & 4 deletions v4.4.1/dist/css/bootstrap-reboot.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion v4.4.1/dist/css/bootstrap-reboot.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions v4.4.1/dist/css/bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion v4.4.1/dist/css/bootstrap.min.css

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions v4.4.1/scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ ol,
ul,
dl {
margin-top: 0;
margin-left: $space-width / 2;
padding-left: 0;
margin-left: 2px; // $space-width / 2;
padding-left: $space-width / 2; //;
margin-bottom: $line-height-base;
}
ol {
Expand All @@ -155,8 +155,8 @@ ol {
margin-left: $font-size-base;
}
li {
padding-left: $space-width / 2;
margin-left: $space-width;
padding-left: 0; //$space-width / 2;
margin-left: 6px; //$sace-width;
}

ol ol,
Expand Down Expand Up @@ -332,7 +332,11 @@ label {
// Remove the default `border-radius` that macOS Chrome adds.
//
// Details at https://github.com/twbs/bootstrap/issues/24093
// There's some issues here with the documentation.
// we need to remove the border and background
button {
background: none;
border: none;
// stylelint-disable-next-line property-blacklist
border-radius: 0;
padding: 0;
Expand Down
4 changes: 2 additions & 2 deletions v4.4.1/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1013,15 +1013,15 @@ $list-group-item-padding-y: $line-height !default;
$list-group-item-padding-x: $space-width !default;

$list-group-hover-bg: $gray-100 !default;
$list-group-active-color: $component-active-color !default;
$list-group-active-color: $white !default;
$list-group-active-bg: $component-active-bg !default;
$list-group-active-border-color: $list-group-active-bg !default;

$list-group-disabled-color: $grayDark !default;
$list-group-disabled-bg: $list-group-bg !default;

$list-group-action-color: $gray-700 !default;
$list-group-action-hover-color: $list-group-action-color !default;
$list-group-action-hover-color: $white !default;

$list-group-action-active-color: $body-color !default;
$list-group-action-active-bg: $gray-200 !default;
Expand Down
Loading

0 comments on commit 74985a9

Please sign in to comment.