first commit
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// Buttons
|
||||
// --------------------------------------------------
|
||||
$btn-font-weight: normal !default;
|
||||
|
||||
$btn-default-color: $darkgray-dark !default;
|
||||
$btn-default-bg: #fff !default;
|
||||
$btn-default-border: $mediumgray-dark !default;
|
||||
|
||||
$btn-primary-color: $white !default;
|
||||
$btn-primary-bg: $primary !default;
|
||||
$btn-primary-border: $primary !default;
|
||||
|
||||
$btn-secondary-color: $white !default;
|
||||
$btn-secondary-bg: $mediumgray-dark !default;
|
||||
$btn-secondary-border: $mediumgray-dark !default;
|
||||
|
||||
$btn-success-color: $white !default;
|
||||
$btn-success-bg: $success !default;
|
||||
$btn-success-border: $success !default;
|
||||
|
||||
$btn-info-color: $white !default;
|
||||
$btn-info-bg: $info !default;
|
||||
$btn-info-border: $info !default;
|
||||
|
||||
$btn-warning-color: $white !default;
|
||||
$btn-warning-bg: $warning !default;
|
||||
$btn-warning-border: $warning !default;
|
||||
|
||||
$btn-danger-color: $white !default;
|
||||
$btn-danger-bg: $danger !default;
|
||||
$btn-danger-border: $danger !default;
|
||||
|
||||
$btn-ghost-color: $text-dark !default;
|
||||
$btn-ghost-bg: transparent !default;
|
||||
$btn-ghost-border: $mediumgray-dark !default;
|
||||
|
||||
$btn-link-color: $text-color !default;
|
||||
$btn-link-disabled-color: $mediumgray !default;
|
||||
|
||||
$btn-border-radius-base: $border-radius-base !default;
|
||||
|
||||
30
admin/static/bootstrap/scss/variables/_variables.forms.scss
Normal file
30
admin/static/bootstrap/scss/variables/_variables.forms.scss
Normal file
@@ -0,0 +1,30 @@
|
||||
$input-bg: #fff !default;
|
||||
$input-bg-disabled: $lightgray-dark;
|
||||
$input-color: $darkgray-dark;
|
||||
$input-border-width: 1px !default;
|
||||
$input-border-color: $mediumgray;
|
||||
$input-border-focus: $primary;
|
||||
$input-placeholder-color: #999;
|
||||
$input-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
||||
|
||||
$input-border-radius-base: $border-radius-base !default;
|
||||
|
||||
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
|
||||
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
|
||||
$input-height-small: $input-height-base !default;//(floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
||||
$input-height-xs: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
||||
|
||||
/* todo */
|
||||
//** `.form-group` margin
|
||||
$form-group-margin-bottom: 15px !default;
|
||||
|
||||
$legend-color: $darkgray !default;
|
||||
$legend-border-color: #e5e5e5 !default;
|
||||
|
||||
$input-group-addon-bg: $mediumgray-dark !default;
|
||||
$input-group-addon-border-color: $mediumgray-dark !default;
|
||||
$input-group-addon-bg-light: $lightgray-dark !default;
|
||||
$input-group-addon-border-color-light: $input-border-color !default;
|
||||
|
||||
//** Disabled cursor for form controls and buttons.
|
||||
$cursor-disabled: not-allowed !default;
|
||||
28
admin/static/bootstrap/scss/variables/_variables.grid.scss
Normal file
28
admin/static/bootstrap/scss/variables/_variables.grid.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
$xs: 300px !default;
|
||||
$sm: 400px !default;
|
||||
$md: 900px !default;
|
||||
$lg: 1200px !default;
|
||||
|
||||
$grid-breakpoints: (
|
||||
xs: 0,
|
||||
sm: $sm,
|
||||
md: $md,
|
||||
lg: $lg
|
||||
) !default;
|
||||
|
||||
$container-widths: (
|
||||
sm: $sm - 20px,
|
||||
md: $md - 20px,
|
||||
lg: $lg - 20px
|
||||
) !default;
|
||||
|
||||
|
||||
$grid-columns: 12 !default;
|
||||
$grid-gutter-width: 30px !default;
|
||||
$gap-width: 10px !default;
|
||||
|
||||
// Navbar collapse
|
||||
//** Point at which the navbar becomes uncollapsed.
|
||||
$grid-float-breakpoint: $sm !default;
|
||||
//** Point at which the navbar begins collapsing.
|
||||
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
||||
21
admin/static/bootstrap/scss/variables/_variables.navs.scss
Normal file
21
admin/static/bootstrap/scss/variables/_variables.navs.scss
Normal file
@@ -0,0 +1,21 @@
|
||||
//=== Shared nav styles
|
||||
// todo
|
||||
$nav-link-padding: 10px 15px !default;
|
||||
$nav-link-hover-bg: $lightgray-dark !default;
|
||||
|
||||
$nav-disabled-link-color: $mediumgray !default;
|
||||
$nav-disabled-link-hover-color: $mediumgray !default;
|
||||
|
||||
//== Tabs
|
||||
$nav-tabs-background: $lightgray-dark !default;
|
||||
$nav-tabs-hover-background: $lightgray !default;
|
||||
$nav-tabs-border-color: $mediumgray !default;
|
||||
|
||||
$nav-tabs-link-color: $text-dark !default;
|
||||
$nav-tabs-active-link-hover-bg: $body-bg !default;
|
||||
$nav-tabs-active-link-hover-color: $nav-tabs-link-color !default;
|
||||
|
||||
//== Pills
|
||||
$nav-pills-border-radius: $border-radius-base !default;
|
||||
$nav-pills-active-link-hover-bg: $primary;
|
||||
$nav-pills-active-link-hover-color: $white;
|
||||
14
admin/static/bootstrap/scss/variables/_variables.tables.scss
Normal file
14
admin/static/bootstrap/scss/variables/_variables.tables.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
//** Padding for `<th>`s and `<td>`s.
|
||||
$table-cell-padding: 5px 0 5px 10px;
|
||||
|
||||
//** Default background color used for all tables.
|
||||
$table-bg: $body-bg !default;
|
||||
//** Background color used for `.table-striped`.
|
||||
$table-header-bg: $lightgray !default;
|
||||
$table-bg-accent: $lightgray-light !default;
|
||||
//** Background color used for `.table-hover`.
|
||||
$table-bg-hover: $primary-ultralight !default;
|
||||
$table-bg-active: $lightgray-light !default;
|
||||
|
||||
//** Border color for table and cell borders.
|
||||
$table-border-color: $lightgray-dark !default;
|
||||
72
admin/static/bootstrap/scss/variables/_variables.type.scss
Normal file
72
admin/static/bootstrap/scss/variables/_variables.type.scss
Normal file
@@ -0,0 +1,72 @@
|
||||
$font-family-base: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
||||
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
|
||||
|
||||
$font-weight-bold: 700 !default;
|
||||
|
||||
$font-size-base: 14px !default;
|
||||
$font-size-large: 16px !default;//ceil(($font-size-base * 1.25)) !default; // ~18px
|
||||
$font-size-small: 12px !default;//ceil(($font-size-base * .85)) !default; // ~12px
|
||||
|
||||
//** Unit-less `line-height` for use in components like buttons.
|
||||
$line-height-base: 1.428571429 !default; // 20/14
|
||||
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
||||
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
|
||||
|
||||
|
||||
$text-dark: $black;
|
||||
$text-color: $darkgray-dark;
|
||||
$text-muted: $darkgray;
|
||||
|
||||
$link-color: $primary !default;
|
||||
$link-hover-color: $primary-dark !default;
|
||||
$link-hover-decoration: underline !default;
|
||||
|
||||
|
||||
$font-size-h1: 30px;
|
||||
$font-size-h2: 43px;
|
||||
$font-size-h3: 30px;
|
||||
$font-size-h4: 19px;
|
||||
$font-size-h5: 18px;
|
||||
$font-size-h6: 14px;
|
||||
|
||||
$headings-font-family: inherit !default;
|
||||
$headings-font-weight: 700;
|
||||
$headings-line-height: 1.1 !default;
|
||||
$headings-color: inherit !default;
|
||||
$headings-small-color: $text-muted !default;
|
||||
|
||||
|
||||
//== Iconography todo remove glyphicons, use only bootstrap
|
||||
//
|
||||
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
||||
|
||||
//** Load fonts from this directory.
|
||||
|
||||
$icon-font-path: "/admin/static/fonts/" !default;
|
||||
//** File name for all font files.
|
||||
$icon-font-name: "glyphicons-halflings-regular" !default;
|
||||
//** Element ID within SVG icon file.
|
||||
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
||||
|
||||
//** Load new bootstrap icons
|
||||
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css");
|
||||
|
||||
$bootstrap-icon-size-large: 18px !default;
|
||||
$bootstrap-icon-size-base: 15px !default;
|
||||
$bootstrap-icon-size-small: 13px !default;
|
||||
|
||||
// todo
|
||||
.bi-plus-lg,
|
||||
.bi-check-circle,
|
||||
.bi-x-circle,
|
||||
.bi-exclamation-triangle {
|
||||
-webkit-text-stroke-width: .5px;
|
||||
}
|
||||
|
||||
.bi-dash-circle,
|
||||
.bi-plus-circle,
|
||||
.bi-arrows-move {
|
||||
-webkit-text-stroke-width: .4px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user