-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…with-something-else Update bootstrap 3 to bootstrap 5
- Loading branch information
Showing
176 changed files
with
3,242 additions
and
2,526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
module.exports = { | ||
plugins: [require("autoprefixer"), require("postcss-flexbugs-fixes")] | ||
plugins: [ | ||
require("postcss-custom-properties")({ | ||
preserve: false, // completely reduce all css vars | ||
importFrom: [ | ||
"src/fullcalendar-vars.css" // look here for the new values | ||
] | ||
}), | ||
require("postcss-calc"), | ||
require("autoprefixer"), | ||
require("postcss-flexbugs-fixes") | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
:root { | ||
--anet-blue: rgb(0, 113, 188); | ||
--anet-blue-dark: rgb(0, 92, 153); | ||
} | ||
|
||
.btn { | ||
font-size: 0.9rem; | ||
} | ||
|
||
.btn-primary { | ||
background-color: var(--anet-blue); | ||
border-color: var(--anet-blue); | ||
} | ||
.btn-primary:hover { | ||
background-color: var(--anet-blue-dark); | ||
border-color: var(--anet-blue-dark); | ||
} | ||
.btn-check:checked + .btn-primary, | ||
.btn-check:active + .btn-primary, | ||
.btn-primary:active, | ||
.btn-primary.active, | ||
.show > .btn-primary.dropdown-toggle { | ||
background-color: var(--anet-blue-dark); | ||
border-color: var(--anet-blue-dark); | ||
} | ||
.btn-check:focus + .btn-primary, | ||
.btn-primary:focus { | ||
background-color: var(--anet-blue-dark); | ||
border-color: var(--anet-blue-dark); | ||
} | ||
.btn-primary:disabled, | ||
.btn-primary.disabled { | ||
background-color: var(--anet-blue); | ||
border-color: var(--anet-blue); | ||
} | ||
|
||
.btn-outline-primary { | ||
color: var(--anet-blue); | ||
border-color: var(--anet-blue); | ||
} | ||
.btn-outline-primary:hover { | ||
color: white; | ||
background-color: var(--anet-blue); | ||
border-color: var(--anet-blue); | ||
} | ||
|
||
.btn-link { | ||
color: var(--anet-blue); | ||
font-size: 15px; | ||
} | ||
.btn-link:hover { | ||
color: var(--anet-blue-dark); | ||
} | ||
|
||
.nav-link { | ||
color: var(--anet-blue); | ||
} | ||
.nav-pills .nav-link.active, | ||
.nav-pills .show > .nav-link { | ||
background-color: var(--anet-blue); | ||
} | ||
|
||
.dropdown-item.active, | ||
.dropdown-item:active { | ||
background-color: var(--anet-blue); | ||
} | ||
|
||
.page-link { | ||
color: var(--anet-blue); | ||
} | ||
.page-item.active .page-link { | ||
background-color: var(--anet-blue); | ||
border-color: var(--anet-blue); | ||
} | ||
|
||
.form-check-input:checked { | ||
background-color: var(--anet-blue); | ||
border-color: var(--anet-blue); | ||
} | ||
|
||
.bg-primary { | ||
background-color: var(--anet-blue) !important; | ||
} | ||
|
||
/* Use bootstrap 3 styling for blockquotes */ | ||
blockquote { | ||
padding: 10px 20px; | ||
margin: 0 0 20px; | ||
font-size: 17.5px; | ||
border-left: 5px solid #eeeeee; | ||
} |
Oops, something went wrong.