diff --git a/AJAX_Full_Project_GULP/css/style.css b/AJAX_Full_Project_GULP/css/style.css index 1b225f81d..dc401feb9 100644 --- a/AJAX_Full_Project_GULP/css/style.css +++ b/AJAX_Full_Project_GULP/css/style.css @@ -1,6 +1,6 @@ /*! * CoreUI - Open Source Bootstrap Admin Template - * @version v1.0.3 + * @version v1.0.4 * @link http://coreui.io * Copyright (c) 2017 creativeLabs Łukasz Holeczek * @license MIT diff --git a/AJAX_Full_Project_GULP/css/style.min.css b/AJAX_Full_Project_GULP/css/style.min.css index d5e869fe6..22e8f2418 100644 --- a/AJAX_Full_Project_GULP/css/style.min.css +++ b/AJAX_Full_Project_GULP/css/style.min.css @@ -1,6 +1,6 @@ /*! * CoreUI - Open Source Bootstrap Admin Template - * @version v1.0.3 + * @version v1.0.4 * @link http://coreui.io * Copyright (c) 2017 creativeLabs Łukasz Holeczek * @license MIT diff --git a/AJAX_Full_Project_GULP/index.html b/AJAX_Full_Project_GULP/index.html index 2356945df..c357707d3 100644 --- a/AJAX_Full_Project_GULP/index.html +++ b/AJAX_Full_Project_GULP/index.html @@ -1,6 +1,6 @@ - + diff --git a/AJAX_Full_Project_GULP/package.json b/AJAX_Full_Project_GULP/package.json index d9eb53fe4..2bb07a73c 100644 --- a/AJAX_Full_Project_GULP/package.json +++ b/AJAX_Full_Project_GULP/package.json @@ -1,10 +1,10 @@ { "name": "@coreui/ajax", - "version": "1.0.3", - "description": "", + "version": "1.0.4", + "description": "Open Source Bootstrap Admin Template", "main": "index.html", "dependencies": { - "bootstrap": "^4.0.0-beta.2", + "bootstrap": "4.0.0-beta.2", "chart.js": "^2.7.0", "font-awesome": "^4.7.0", "jquery": "^3.2.1", @@ -30,9 +30,7 @@ "require-dir": "^0.3.2", "run-sequence": "^2.1.0" }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, + "scripts": {}, "browserslist": [ "Chrome >= 45", "Firefox ESR", @@ -44,7 +42,7 @@ "Opera >= 30" ], "author": "Łukasz Holeczek", - "url": "http://coreui.io", - "copyright": "Copyright 2016 creativeLabs Łukasz Holeczek", - "license": "http://coreui.io/license" + "homepage": "http://coreui.io", + "copyright": "Copyright 2017 creativeLabs Łukasz Holeczek", + "license": "MIT" } diff --git a/AJAX_Full_Project_GULP/scss/bootstrap/_alert.scss b/AJAX_Full_Project_GULP/scss/bootstrap/_alert.scss deleted file mode 100755 index 66fba24ea..000000000 --- a/AJAX_Full_Project_GULP/scss/bootstrap/_alert.scss +++ /dev/null @@ -1,49 +0,0 @@ -// -// Base styles -// - -.alert { - position: relative; - padding: $alert-padding-y $alert-padding-x; - margin-bottom: $alert-margin-bottom; - border: $alert-border-width solid transparent; - @include border-radius($alert-border-radius); -} - -// Headings for larger alerts -.alert-heading { - // Specified to prevent conflicts of changing $headings-color - color: inherit; -} - -// Provide class for links that match alerts -.alert-link { - font-weight: $alert-link-font-weight; -} - - -// Dismissible alerts -// -// Expand the right padding and account for the close button's positioning. - -.alert-dismissible { - // Adjust close link position - .close { - position: absolute; - top: 0; - right: 0; - padding: $alert-padding-y $alert-padding-x; - color: inherit; - } -} - - -// Alternate styles -// -// Generate contextual modifier classes for colorizing the alert. - -@each $color, $value in $theme-colors { - .alert-#{$color} { - @include alert-variant(theme-color-level($color, -10), theme-color-level($color, -9), theme-color-level($color, 6)); - } -} diff --git a/AJAX_Full_Project_GULP/scss/bootstrap/_badge.scss b/AJAX_Full_Project_GULP/scss/bootstrap/_badge.scss deleted file mode 100755 index b87a1b004..000000000 --- a/AJAX_Full_Project_GULP/scss/bootstrap/_badge.scss +++ /dev/null @@ -1,47 +0,0 @@ -// Base class -// -// Requires one of the contextual, color modifier classes for `color` and -// `background-color`. - -.badge { - display: inline-block; - padding: $badge-padding-y $badge-padding-x; - font-size: $badge-font-size; - font-weight: $badge-font-weight; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - @include border-radius($badge-border-radius); - - // Empty badges collapse automatically - &:empty { - display: none; - } -} - -// Quick fix for badges in buttons -.btn .badge { - position: relative; - top: -1px; -} - -// Pill badges -// -// Make them extra rounded with a modifier to replace v3's badges. - -.badge-pill { - padding-right: $badge-pill-padding-x; - padding-left: $badge-pill-padding-x; - @include border-radius($badge-pill-border-radius); -} - -// Colors -// -// Contextual variations (linked badges get darker on :hover). - -@each $color, $value in $theme-colors { - .badge-#{$color} { - @include badge-variant($value); - } -} diff --git a/AJAX_Full_Project_GULP/scss/bootstrap/_breadcrumb.scss b/AJAX_Full_Project_GULP/scss/bootstrap/_breadcrumb.scss deleted file mode 100755 index 25b9d85a1..000000000 --- a/AJAX_Full_Project_GULP/scss/bootstrap/_breadcrumb.scss +++ /dev/null @@ -1,38 +0,0 @@ -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: $breadcrumb-padding-y $breadcrumb-padding-x; - margin-bottom: $breadcrumb-margin-bottom; - list-style: none; - background-color: $breadcrumb-bg; - @include border-radius($border-radius); -} - -.breadcrumb-item { - // The separator between breadcrumbs (by default, a forward-slash: "/") - + .breadcrumb-item::before { - display: inline-block; // Suppress underlining of the separator in modern browsers - padding-right: $breadcrumb-item-padding; - padding-left: $breadcrumb-item-padding; - color: $breadcrumb-divider-color; - content: "#{$breadcrumb-divider}"; - } - - // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built - // without `