From 44ae6a520b46e66ffcf65e6ceb6c2744f5bbea4c Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Sat, 5 Feb 2022 08:56:43 +0100 Subject: [PATCH] fix menu toggle; remove obsolete .js and .scss files --- assets/sass/_bootswatch.scss | 255 --------------------------------- assets/sass/_litera-soft.scss | 98 ------------- layouts/partials/header.html | 10 +- static/js/bootstrap.min.js | 7 - static/js/bootstrap.min.js.map | 1 - static/js/jquery.min.js | 2 - 6 files changed, 5 insertions(+), 368 deletions(-) delete mode 100644 assets/sass/_bootswatch.scss delete mode 100755 assets/sass/_litera-soft.scss delete mode 100644 static/js/bootstrap.min.js delete mode 100644 static/js/bootstrap.min.js.map delete mode 100644 static/js/jquery.min.js diff --git a/assets/sass/_bootswatch.scss b/assets/sass/_bootswatch.scss deleted file mode 100644 index 96c0442..0000000 --- a/assets/sass/_bootswatch.scss +++ /dev/null @@ -1,255 +0,0 @@ -// Litera 4.5.0 -// Bootswatch - - -// Variables =================================================================== - -$font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif !default; - -// Navbar ====================================================================== - -.navbar { - font-size: $font-size-sm; - - &.bg-dark { - background-color: $success !important; - } - - &.bg-light { - background-color: #fff !important; - border: 1px solid rgba(0, 0, 0, 0.1); - - &.navbar-fixed-top { - border-width: 0 0 1px 0; - } - - &.navbar-fixed-bottom { - border-width: 1px 0 0 0; - } - } -} - -// Buttons ===================================================================== - -.btn { - border-radius: 1.078em; - - &-lg { - border-radius: 2.688em; - } - - &-sm { - border-radius: 0.844em; - } -} - -// Typography ================================================================== - -p { - font-family: $font-family-serif; -} - -blockquote { - font-style: italic; -} - -footer { - font-size: $font-size-sm; -} - -.lead { - color: $gray-600; - font-family: $font-family-sans-serif; -} - -// Tables ====================================================================== - -table, -.table { - font-size: $font-size-sm; - - &-primary, - &-secondary, - &-success, - &-info, - &-warning, - &-danger { - color: #fff; - } -} - -.table { - - &-primary { - &, > th, > td { - background-color: $primary; - } - } - - &-secondary { - &, > th, > td { - background-color: $secondary; - } - } - - &-light { - &, > th, > td { - background-color: $light; - } - } - - &-dark { - &, > th, > td { - background-color: $dark; - } - } - - &-success { - &, > th, > td { - background-color: $success; - } - } - - &-info { - &, > th, > td { - background-color: $info; - } - } - - &-danger { - &, > th, > td { - background-color: $danger; - } - } - - &-warning { - &, > th, > td { - background-color: $warning; - } - } - - &-active { - &, > th, > td { - background-color: $table-active-bg; - } - } - - &-hover { - - .table-primary:hover { - &, > th, > td { - background-color: darken($primary, 5%); - } - } - - .table-secondary:hover { - &, > th, > td { - background-color: darken($secondary, 5%); - } - } - - .table-light:hover { - &, > th, > td { - background-color: darken($light, 5%); - } - } - - .table-dark:hover { - &, > th, > td { - background-color: darken($dark, 5%); - } - } - - .table-success:hover { - &, > th, > td { - background-color: darken($success, 5%); - } - } - - .table-info:hover { - &, > th, > td { - background-color: darken($info, 5%); - } - } - - .table-danger:hover { - &, > th, > td { - background-color: darken($danger, 5%); - } - } - - .table-warning:hover { - &, > th, > td { - background-color: darken($warning, 5%); - } - } - - .table-active:hover { - &, > th, > td { - background-color: $table-active-bg; - } - } - - } -} - -// Forms ======================================================================= - -// Navs ======================================================================== - -.nav, -.breadcrumb, -.pagination { - font-size: $font-size-sm; -} - -.dropdown-menu { - font-size: $font-size-sm; -} - -// Indicators ================================================================== - -.alert { - color: $white; - font-size: $font-size-sm; - - &, p { - font-family: $font-family-sans-serif; - } - - a, .alert-link { - color: #fff; - font-weight: normal; - text-decoration: underline; - } - - @each $color, $value in $theme-colors { - &-#{$color} { - @if $enable-gradients { - background: $value linear-gradient(0deg, mix($body-bg, $value, 15%), $value) repeat-x; - } @else { - background-color: $value; - } - } - } - - &-light { - &, - & a, - & .alert-link { - color: $body-color; - } - } -} - -.badge { - vertical-align: bottom; -} - -// Progress bars =============================================================== - -// Containers ================================================================== - -.list-group { - font-size: $font-size-sm; -} diff --git a/assets/sass/_litera-soft.scss b/assets/sass/_litera-soft.scss deleted file mode 100755 index e121e8f..0000000 --- a/assets/sass/_litera-soft.scss +++ /dev/null @@ -1,98 +0,0 @@ -// Litera 4.5.0 -// Bootswatch - -$grid-gutter-width: 15px; - -// -// Color system -// - -$white: #fff !default; -$gray-100: #f8f9fa !default; -$gray-200: #e9ecef !default; -$gray-300: #ddd !default; -$gray-400: #ced4da !default; -$gray-500: #adb5bd !default; -$gray-600: #868e96 !default; -$gray-700: #495057 !default; -$gray-800: #343a40 !default; -$gray-900: #212529 !default; -$black: #000 !default; - -$blue: #4566BB !default; -$indigo: #6610f2 !default; -$purple: #6f42c1 !default; -$pink: #e83e8c !default; -$red: #d9534f !default; -$orange: #fd7e14 !default; -$yellow: #f0ad4e !default; -$green: #02B875 !default; -$teal: #20c997 !default; -$cyan: #17a2b8 !default; - -$primary: $blue !default; -$secondary: $gray-500 !default; -$success: $green !default; -$info: $cyan !default; -$warning: $yellow !default; -$danger: $red !default; -$light: $gray-100 !default; -$dark: $gray-800 !default; - -$yiq-contrasted-threshold: 190 !default; - -$card-cap-bg: $gray-100; - -// Body - -$body-color: $gray-800 !default; - -// Fonts - -$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; - -$font-size-base: 1.063rem !default; - -$headings-font-weight: 700 !default; - -// Tables - -$table-border-color: rgba(0,0,0,0.1) !default; - -// Buttons - -$input-btn-padding-y: 0.5rem !default; -$input-btn-padding-x: 1.1rem !default; - -$btn-font-family: $font-family-sans-serif !default; -$btn-font-size: 0.875rem !default; - -$btn-font-size-sm: 0.688rem !default; - -// Forms - -$input-border-color: rgba(0,0,0,.1) !default; - -$input-group-addon-bg: $gray-200 !default !default; - -// Navbar - -$navbar-dark-color: rgba($white,.6) !default; -$navbar-dark-hover-color: $white !default; - -$navbar-light-hover-color: $body-color !default; -$navbar-light-active-color: $body-color !default; - -// Tooltips - -$tooltip-font-size: 11px !default; - -// Badges - -$badge-font-weight: normal !default; -$badge-padding-y: 0.6em !default; -$badge-padding-x: 1.2em !default; - -// Alerts - -$alert-border-width: 0 !default; diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 3f387c0..59f2854 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,4 +1,4 @@ -