-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[4.0] Update Bootstrap to beta-1 #17496
Changes from 3 commits
0429c54
34c6dd7
38b9d0a
ee02cee
8c42383
d6718c7
4ce1c6d
fccff9b
1bf14f1
b8c6fdb
e9b4809
9370223
37ed73e
a30d438
f4057b9
e3239f7
98b109b
dcc9baf
fa48b0a
c7155ff
b0343bc
f3f7234
ddd2843
8c8dbe3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,7 @@ | |
} | ||
|
||
option { | ||
color: $gray; | ||
color: $gray-700; | ||
background-color: #fff; | ||
|
||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
&.nav-header { | ||
padding-top: .5rem; | ||
font-size: .85rem; | ||
color: $gray-dark; | ||
color: $gray-200; | ||
} | ||
|
||
a { | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
/* Bootstrap alert mapping */ | ||
|
||
.alert-message { | ||
@extend .alert-success; | ||
@mixin alert-variant($background, $border, $body-color) { | ||
background-color: $background; | ||
border-color: $border; | ||
border-left: 10px solid $background; | ||
color: $body-color; | ||
|
||
hr { | ||
border-top-color: darken($background, 5%); | ||
} | ||
.alert-link { | ||
color: darken($background, 10%); | ||
} | ||
} | ||
|
||
.alert-message { | ||
@include alert-variant(theme-color("success"), theme-color("success"), $gray-200); | ||
} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Files should end with a trailing newline
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
woof, done