-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui:theme - first batch of theme source cleanups.
ease maintenance in the future by cleanup up our stylesheets, most of our styes are already a decade old and might need some love for future improvements. This commit removes some of the unused styles and moves color defines in main.scss to its own file, also a dashboard scss file is added to use the same colorscheme.
- Loading branch information
1 parent
d314680
commit e189443
Showing
13 changed files
with
802 additions
and
283 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
7 changes: 0 additions & 7 deletions
7
src/opnsense/www/themes/opnsense/assets/stylesheets/_bootstrap-compass.scss
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
src/opnsense/www/themes/opnsense/assets/stylesheets/_bootstrap-mincer.scss
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/opnsense/www/themes/opnsense/assets/stylesheets/_bootstrap-sprockets.scss
This file was deleted.
Oops, something went wrong.
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
15 changes: 15 additions & 0 deletions
15
src/opnsense/www/themes/opnsense/assets/stylesheets/config/colors.scss
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,15 @@ | ||
$colors: ( | ||
brand-primary: #D94F00, | ||
content-background: #F7F7F7, | ||
body-background: #fff, | ||
navbar-default-color: #F7F7F7, | ||
page-content-head-background: #FBFBFB, | ||
page-foot-background: #FBFBFB, | ||
table-bg-accent: #FBFBFB, | ||
login-modal-head-background: #3C3C3B, | ||
navbar-default-bg: #3C3C3B, | ||
list-group-link-color: #3C3C3B, | ||
text-color: #3C3C3B, | ||
border-default: #E5E5E5, | ||
dashboard-widget-error: #721c24 | ||
); |
Oops, something went wrong.