diff --git a/.gitignore b/.gitignore index dc31e18..56cf0bd 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,7 @@ db.sqlite3 # Bootflat shelfzilla/themes/bootflat/static/css/*.css shelfzilla/themes/bootflat/static/js/*.js + +# Bower +bower_components +static_components diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..0d91df2 --- /dev/null +++ b/bower.json @@ -0,0 +1,20 @@ +{ + "name": "shelfzilla", + "version": "0.0.0", + "authors": [ + "Felipe Martin " + ], + "license": "Commercial", + "private": true, + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "bootflatv2": "470fde6d400cdcca9fdc8c0a699a6d006e5f46d3", + "jquery": "~2.1.0" + } +} diff --git a/fabfile.py b/fabfile.py index 9a0b610..8201f04 100644 --- a/fabfile.py +++ b/fabfile.py @@ -209,7 +209,7 @@ def rungrunt(): """ Executes grunt """ - run('grunt watch') + run('grunt --force') # diff --git a/gruntfile.coffee b/gruntfile.coffee index 7ff543f..fbff5e6 100644 --- a/gruntfile.coffee +++ b/gruntfile.coffee @@ -3,13 +3,28 @@ module.exports = (grunt) -> grunt.initConfig pkg: grunt.file.readJSON 'package.json' + bower: + dev: + dest: "static_components/" + js_dest: 'static_components/js', + css_dest: 'static_components/css' + options: + packageSpecific: + bootflatv2: + files: [ + 'css/bootstrap.min.css', + 'bootflat/css/bootflat.min.css', + 'bootflat/img/check_flat/default.png', + 'bootflat/js/icheck.min.js' + ] + less: options: ieCompat: true compress: true development: files: - "shelfzilla/themes/bootflat/static/css/style.css": "shelfzilla/themes/bootflat/static/less/style.less" + "shelfzilla/themes/bootflat/static/css/app.css": "shelfzilla/themes/bootflat/static/less/app.less" coffee: development: @@ -20,12 +35,20 @@ module.exports = (grunt) -> concat: options: separator: ';' - base: + js: src: [ - "shelfzilla/themes/bootflat/static/libs/bootflat/js/icheck.min.js", + "static_components/js/jquery.js", + "static_components/js/icheck.min.js", "shelfzilla/themes/bootflat/static/js/main.full.js", ] dest: "shelfzilla/themes/bootflat/static/js/site.js" + css: + src: [ + "static_components/css/bootstrap.min.css", + "static_components/css/bootflat.min.css", + "shelfzilla/themes/bootflat/static/css/app.css", + ] + dest: "shelfzilla/themes/bootflat/static/css/style.css" uglify: development: @@ -68,9 +91,12 @@ module.exports = (grunt) -> grunt.loadNpmTasks 'grunt-contrib-watch' grunt.loadNpmTasks 'grunt-contrib-concat' grunt.loadNpmTasks 'grunt-contrib-clean' + grunt.loadNpmTasks 'grunt-contrib-clean' + grunt.loadNpmTasks 'grunt-bower' # Tasks grunt.registerTask 'default', [ + "bower", "less", "coffee", "concat", "clean:development", "watch" ] diff --git a/package.json b/package.json index 6f38091..ea56fe5 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "grunt-contrib-uglify": ">=0.2.2", "grunt-contrib-watch": ">=0.4.0", "grunt-contrib-concat": "~0.3.0", - "grunt-contrib-clean": "~0.5.0" + "grunt-contrib-clean": "~0.5.0", + "grunt-bower": "^0.9.1", } } diff --git a/shelfzilla/themes/bootflat/static/less/app.less b/shelfzilla/themes/bootflat/static/less/app.less new file mode 100644 index 0000000..e69de29 diff --git a/shelfzilla/themes/bootflat/static/less/style.less b/shelfzilla/themes/bootflat/static/less/style.less deleted file mode 100644 index d0583cd..0000000 --- a/shelfzilla/themes/bootflat/static/less/style.less +++ /dev/null @@ -1 +0,0 @@ -@import "../libs/bootflat/css/bootflat.css"; diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.css b/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.css deleted file mode 100755 index a785c0a..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.css +++ /dev/null @@ -1,1794 +0,0 @@ -/* - * Copyright 2013 FLATHEMES. - * - * Bootflat, v2.0.0 - * A open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. - * http://http://bootflat.github.io/ - * - * By @flathemes - * - * Licensed under the MIT license. Please see LICENSE for more information. - * - */ -/** - * typography - * -------------------------------------------------- - */ -body { - font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; - color: #434a54; - background-color: white; -} - -a { - color: #3bafda; - text-decoration: none; -} -a:hover, a:focus { - color: #4fc1e9; - text-decoration: none; -} -a:focus { - outline: none; -} - -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 700; - line-height: 1.1; - color: inherit; -} - -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small { - color: #e7e9ec; -} - -h1, -h2, -h3 { - margin-top: 30px; - margin-bottom: 15px; -} - -h4, -h5, -h6 { - margin-top: 15px; - margin-bottom: 15px; -} - -h6 { - font-weight: normal; -} - -h1, -.h1 { - font-size: 51px; -} - -h2, -.h2 { - font-size: 43px; -} - -h3, -.h3 { - font-size: 30px; -} - -h4, -.h4 { - font-size: 19px; -} - -h5, -.h5 { - font-size: 18px; -} - -h6, -.h6 { - font-size: 14px; -} - -blockquote { - border-left: 3px solid #ccd1d9; -} - -.img-rounded { - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} - -.img-comment { - font-size: 15px; - line-height: 1.2; - font-style: italic; - margin: 24px 0; -} - -/** - * button - * -------------------------------------------------- - */ -.btn { - color: white; -} -.btn, .btn.disabled, .btn[disabled] { - border-color: #aab2bd; - background-color: #aab2bd; -} -.btn:hover, .btn:focus, .btn:active, .btn.active { - color: white; - border-color: #ccd1d9; - background-color: #ccd1d9; - outline: none !important; -} -.btn:active, .btn.active { - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); -} -.btn.disabled, .btn[disabled] { - opacity: 0.45; - filter: alpha(opacity=45); -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .btn-link.disabled, .btn-link[disabled] { - border-color: transparent; - background-color: transparent; - color: #3bafda; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.btn-link:hover, .btn-link:focus { - text-decoration: underline; -} -.btn-default { - color: #434a54; - border-color: #aab2bd !important; -} -.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active { - border-color: #ccd1d9; - background-color: #ccd1d9; -} -.btn-default, .btn-default.disabled, .btn-default[disabled] { - background-color: white; -} -.open .dropdown-toggle.btn-default { - border-color: #ccd1d9; - background-color: #ccd1d9; -} -.btn-primary, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { - border-color: #3bafda; - background-color: #3bafda; -} -.btn-primary:hover, .btn-primary:focus { - border-color: #4fc1e9; - background-color: #4fc1e9; -} -.open .dropdown-toggle.btn-primary { - border-color: #4fc1e9; - background-color: #4fc1e9; -} -.btn-info, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] { - border-color: #37bc9b; - background-color: #37bc9b; -} -.btn-info:hover, .btn-info:focus { - border-color: #48cfad; - background-color: #48cfad; -} -.open .dropdown-toggle.btn-info { - border-color: #48cfad; - background-color: #48cfad; -} -.btn-success, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] { - border-color: #8cc152; - background-color: #8cc152; -} -.btn-success:hover, .btn-success:focus { - border-color: #a0d468; - background-color: #a0d468; -} -.open .dropdown-toggle.btn-success { - border-color: #a0d468; - background-color: #a0d468; -} -.btn-warning, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] { - border-color: #f6bb42; - background-color: #f6bb42; -} -.btn-warning:hover, .btn-warning:focus { - border-color: #ffce54; - background-color: #ffce54; -} -.open .dropdown-toggle.btn-warning { - border-color: #ffce54; - background-color: #ffce54; -} -.btn-danger, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled], -.btn-danger .open .dropdown-toggle.btn { - border-color: #da4453; - background-color: #da4453; -} -.btn-danger:hover, .btn-danger:focus { - border-color: #ed5565; - background-color: #ed5565; -} -.open .dropdown-toggle.btn-danger { - border-color: #ed5565; - background-color: #ed5565; -} - -/** - * button-group - * -------------------------------------------------- - */ -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); -} -.btn-group .btn { - border-left-color: #96a0ad; -} -.btn-group.open .btn-default.dropdown-toggle, .btn-group .btn-default:focus, .btn-group .btn-default:active, .btn-group .btn-default.active { - color: white; -} -.btn-group .btn-primary, .btn-group .btn-primary:focus, .btn-group .btn-primary:active, .btn-group .btn-primary.active { - border-left-color: #269ecb; -} -.btn-group .btn-success, .btn-group .btn-success:focus, .btn-group .btn-success:active, .btn-group .btn-success.active { - border-left-color: #7ab03f; -} -.btn-group .btn-warning, .btn-group .btn-warning:focus, .btn-group .btn-warning:active, .btn-group .btn-warning.active { - border-left-color: #efa50b; -} -.btn-group .btn-danger, .btn-group .btn-danger:focus, .btn-group .btn-danger:active, .btn-group .btn-danger.active { - border-left-color: #d1293a; -} -.btn-group .btn-info, .btn-group .btn-info:focus, .btn-group .btn-info:active, .btn-group .btn-info.active { - border-left-color: #2fa084; -} -.btn-group .btn:first-child, .btn-group .btn-primary:first-child, .btn-group .btn-success:first-child, .btn-group .btn-warning:first-child, .btn-group .btn-danger:first-child, .btn-group .btn-info:first-child { - border-left-color: transparent; -} - -.btn-group-vertical .btn, .btn-group-vertical .btn-group .btn-primary { - border-top-color: #96a0ad !important; -} -.btn-group-vertical .btn-primary, .btn-group-vertical .btn-primary:focus, .btn-group-vertical .btn-primary:active, .btn-group-vertical .btn-primary.active, .btn-group-vertical .btn-group .btn-primary { - border-top-color: #269ecb !important; -} -.btn-group-vertical .btn-success, .btn-group-vertical .btn-success:focus, .btn-group-vertical .btn-success:active, .btn-group-vertical .btn-success.active, .btn-group-vertical .btn-group .btn-success { - border-top-color: #7ab03f !important; -} -.btn-group-vertical .btn-warning, .btn-group-vertical .btn-warning:focus, .btn-group-vertical .btn-warning:active, .btn-group-vertical .btn-warning.active, .btn-group-vertical .btn-group .btn-warning { - border-top-color: #efa50b !important; -} -.btn-group-vertical .btn-danger, .btn-group-vertical .btn-danger:focus, .btn-group-vertical .btn-danger:active, .btn-group-vertical .btn-danger.active, .btn-group-vertical .btn-group .btn-danger { - border-top-color: #d1293a !important; -} -.btn-group-vertical .btn-info, .btn-group-vertical .btn-info:focus, .btn-group-vertical .btn-info:active, .btn-group-vertical .btn-info.active, .btn-group-vertical .btn-group .btn-info { - border-top-color: #2fa084 !important; -} -.btn-group-vertical .btn:not(.btn-default):first-child, .btn-group-vertical .btn-primary:first-child, .btn-group-vertical .btn-success:first-child, .btn-group-vertical .btn-warning:first-child, .btn-group-vertical .btn-danger:first-child, .btn-group-vertical .btn-info:first-child { - border-top: none; -} - -/** - * labels and badges - * -------------------------------------------------- - */ -.label, -.badge { - background-color: #aab2bd; -} - -.label-default, -.badge-default { - border: 1px solid #aab2bd; - background-color: white; - color: #434a54; -} - -.label-primary, -.badge-primary { - border-color: #3bafda; - background-color: #3bafda; -} - -.label-success, -.badge-success { - border-color: #8cc152; - background-color: #8cc152; -} - -.label-danger, -.badge-danger { - border-color: #da4453; - background-color: #da4453; -} - -.label-warning, -.badge-warning { - border-color: #f6bb42; - background-color: #f6bb42; -} - -.label-info, -.badge-info { - border-color: #37bc9b; - background-color: #37bc9b; -} - -/** - * tooltip - * -------------------------------------------------- - */ -.tooltip-inner { - color: white; - background-color: #434a54; -} -.tooltip.top .tooltip-arrow, .tooltip.top-left .tooltip-arrow, .tooltip.top-right .tooltip-arrow { - border-top-color: #434a54; -} -.tooltip.right .tooltip-arrow { - border-right-color: #434a54; -} -.tooltip.left .tooltip-arrow { - border-left-color: #434a54; -} -.tooltip.bottom .tooltip-arrow, .tooltip.bottom-left .tooltip-arrow, .tooltip.bottom-right .tooltip-arrow { - border-bottom-color: #434a54; -} - -/** - * popover - * -------------------------------------------------- - */ -.popover { - background-color: #434a54; - color: white; - border-color: #434a54; -} -.popover-title { - padding-bottom: 0; - font-weight: bold; - color: #aab2bd; - background-color: transparent; - border-bottom: none; -} -.popover.top .arrow, .popover.top .arrow:after { - border-top-color: #434a54; -} -.popover.right .arrow, .popover.right .arrow:after { - border-right-color: #434a54; -} -.popover.bottom .arrow, .popover.bottom .arrow:after { - border-bottom-color: #434a54; -} -.popover.left .arrow, .popover.left .arrow:after { - border-left-color: #434a54; -} - -/** - * progress - * -------------------------------------------------- - */ -.progress { - background-color: #e6e9ed; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.progress-bar { - background-color: #3bafda; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.progress-bar-success { - background-color: #8cc152; -} -.progress-bar-info { - background-color: #37bc9b; -} -.progress-bar-warning { - background-color: #f6bb42; -} -.progress-bar-danger { - background-color: #da4453; -} - -/** - * breadcrumb - * -------------------------------------------------- - */ -.breadcrumb { - color: #434a54; - background-color: #e6e9ed; -} -.breadcrumb > .active { - color: #434a54; -} -.breadcrumb a { - color: #3bafda; -} - -.breadcrumb-arrow { - padding: 0; - list-style: none; - background-color: #e6e9ed; - height: 36px; - line-height: 36px; -} -.breadcrumb-arrow li:first-child a { - -webkit-border-radius: 4px 0 0 4px; - -moz-border-radius: 4px 0 0 4px; - border-radius: 4px 0 0 4px; -} -.breadcrumb-arrow li, .breadcrumb-arrow li a, .breadcrumb-arrow li span { - display: inline-block; - vertical-align: top; -} -.breadcrumb-arrow li:not(:first-child) { - margin-left: -5px; -} -.breadcrumb-arrow li + li:before { - padding: 0; - content: ""; -} -.breadcrumb-arrow li span { - padding: 0 10px; -} -.breadcrumb-arrow li a, .breadcrumb-arrow li:not(:first-child) span { - padding: 0 10px 0 25px; - height: 35px; - line-height: 35px; -} -.breadcrumb-arrow li:first-child a { - padding: 0 10px; -} -.breadcrumb-arrow li a { - position: relative; - border: 1px solid #3bafda; - color: white; - background-color: #3bafda; - text-decoration: none; -} -.breadcrumb-arrow li:first-child a { - padding-left: 10px; -} -.breadcrumb-arrow li a:before, .breadcrumb-arrow li a:after { - position: absolute; - top: 0; - content: ''; - width: 0; - height: 0; - border-top: 17px solid transparent; - border-bottom: 17px solid transparent; -} -.breadcrumb-arrow li a:before { - right: -10px; - border-left-width: 10px; - border-left-style: solid; - border-left-color: #3bafda; - z-index: 3; -} -.breadcrumb-arrow li a:after { - right: -11px; - border-left: 10px solid #2494be; - z-index: 2; -} -.breadcrumb-arrow li a:hover, .breadcrumb-arrow li a:focus { - background-color: #4fc1e9; - border: 1px solid #4fc1e9; -} -.breadcrumb-arrow li a:hover:before, .breadcrumb-arrow li a:focus:before { - border-left-color: #4fc1e9; -} -.breadcrumb-arrow li a:active { - background-color: #2494be; - border: 1px solid #2494be; -} -.breadcrumb-arrow li a:active:before, .breadcrumb-arrow li a:active:after { - border-left-color: #2494be; -} -.breadcrumb-arrow li span { - color: #434a54; -} - -/** - * pagination - * -------------------------------------------------- - */ -.pagination > li > a, .pagination > li > span { - color: #434a54; - background-color: white; - border-color: #ccd1d9; -} -.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { - color: white; - background-color: #ccd1d9; - border-color: #ccd1d9; -} -.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { - color: white; - background-color: #8cc152; - border-color: #8cc152; -} -.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { - color: #e6e9ed; - background-color: white; - border-color: #ccd1d9; -} - -/** - * pager - * -------------------------------------------------- - */ -.pager li > a, .pager li > span { - color: white; - background-color: #8cc152; - border-color: #8cc152; -} -.pager li > a:hover, .pager li > a:focus { - background-color: #a0d468; - border-color: #a0d468; -} -.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { - color: #e6e9ed; - background-color: white; - border-color: #e6e9ed; -} - -/** - * form - * -------------------------------------------------- - */ -.form-control { - color: #434a54; - border-color: #aab2bd; -} -.form-control, .form-control:focus { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.form-control:focus { - border-color: #3bafda; -} -.form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control::-webkit-input-placeholder { - color: #e6e9ed; -} -.form-control.disabled, .form-control[disabled] { - border-color: #e6e9ed; - background-color: #e6e9ed; -} - -.input-group-btn .btn + .btn { - border-width: 1px; - border-style: solid; - border-color: #96a0ad; -} -.input-group-btn .btn + .btn.btn-default { - border-color: #ededed; -} -.input-group-btn .btn + .btn.btn-primary { - border-color: #269ecb; -} -.input-group-btn .btn + .btn.btn-info { - border-color: #2fa084; -} -.input-group-btn .btn + .btn.btn-success { - border-color: #7ab03f; -} -.input-group-btn .btn + .btn.btn-warning { - border-color: #f4af20; -} -.input-group-btn .btn + .btn.btn-danger { - border-color: #d1293a; -} - -.input-group-addon { - background-color: #aab2bd; - border-color: #96a0ad; - color: white; -} -.input-group-addon .radio, .input-group-addon .checkbox { - margin: -3px 0 -4px !important; -} - -.form-search .search-query, .form-search .search-query:first-child, .form-search .search-query:last-child { - padding: 0 17px; - -webkit-border-radius: 17px; - -moz-border-radius: 17px; - border-radius: 17px; -} -.input-group .form-control:last-child { - -webkit-border-top-left-radius: 0; - -moz-border-radius-topleft: 0; - border-top-left-radius: 0; - -webkit-border-bottom-left-radius: 0; - -moz-border-radius-bottomleft: 0; - border-bottom-left-radius: 0; -} -.input-group .form-control:first-child { - -webkit-border-top-right-radius: 0; - -moz-border-radius-topright: 0; - border-top-right-radius: 0; - -webkit-border-bottom-right-radius: 0; - -moz-border-radius-bottomright: 0; - border-bottom-right-radius: 0; -} -.form-search .btn { - -webkit-border-radius: 17px; - -moz-border-radius: 17px; - border-radius: 17px; -} - -.search-only { - position: relative; -} -.search-only .search-icon { - position: absolute; - top: 2px; - left: 8.5px; - width: 30px; - line-height: 30px; - text-align: center; - font-size: 17px; - color: #e6e9ed; - z-index: 20; -} -.search-only .form-control:last-child { - padding-left: 40px; -} - -.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { - color: #8cc152; -} -.has-success .form-control { - border-color: #8cc152; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.has-success .form-control:focus { - border-color: #8cc152; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.has-success .input-group-addon { - background-color: #8cc152; - border-color: #8cc152; -} -.has-success .form-control-feedback { - color: #8cc152; -} - -.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { - color: #f6bb42; -} -.has-warning .form-control { - border-color: #f6bb42; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.has-warning .form-control:focus { - border-color: #f6bb42; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.has-warning .input-group-addon { - background-color: #f6bb42; - border-color: #f6bb42; -} -.has-warning .form-control-feedback { - color: #f6bb42; -} - -.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { - color: #da4453; -} -.has-error .form-control { - border-color: #da4453; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.has-error .form-control:focus { - border-color: #da4453; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.has-error .input-group-addon { - background-color: #da4453; - border-color: #da4453; -} -.has-error .form-control-feedback { - color: #da4453; -} - -/** - * checkbox and radio - * -------------------------------------------------- - */ -.checkbox, .radio { - margin-top: 0; - padding-left: 0; -} - -.icheckbox_flat, -.iradio_flat { - display: inline-block; - *display: inline; - vertical-align: middle; - margin: 0; - padding: 0 !important; - width: 20px; - height: 20px; - background: url("../bootflat/img/check_flat/default.png") no-repeat; - border: none; - cursor: pointer; -} - -.icheckbox_flat { - background-position: 0 0; -} -.icheckbox_flat.checked { - background-position: -22px 0; -} -.icheckbox_flat.disabled { - background-position: -44px 0; - cursor: default; -} -.icheckbox_flat.checked.disabled { - background-position: -66px 0; -} - -.iradio_flat { - background-position: -88px 0; -} -.iradio_flat.checked { - background-position: -110px 0; -} -.iradio_flat.disabled { - background-position: -132px 0; - cursor: default; -} -.iradio_flat.checked.disabled { - background-position: -154px 0; -} - -/** - * alert - * -------------------------------------------------- - */ -.alert h4 { - margin-bottom: 10px; - font-weight: bold; -} -.alert-dismissable .close { - color: black; -} -.alert-info { - background-color: #7cd1ef; - border: #4fc1e9; -} -.alert-warning { - background-color: #ffdd87; - border: #ffce54; -} -.alert-danger { - background-color: #f2838f; - border: #ed5565; -} -.alert-success { - background-color: #b9df90; - border: #a0d468; -} -.alert .alert-link { - cursor: pointer; - text-decoration: underline; - opacity: 0.65; - filter: alpha(opacity=65); -} -.alert .alert-link:hover, .alert .alert-link:focus { - opacity: 0.45; - filter: alpha(opacity=45); -} -.alert .btn-link, .alert .btn-link:hover, .alert .btn-link:focus { - color: black; - opacity: 0.65; - filter: alpha(opacity=65); -} -.alert .btn-link:focus, .alert .btn-link:hover { - text-decoration: none; - opacity: 0.4; - filter: alpha(opacity=40); -} - -/** - * tab - * -------------------------------------------------- - */ -.nav-tabs { - border-bottom: none; - background-color: #e6e9ed; - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li { - margin-bottom: 0; - border-left: 1px solid #ccd1d9; -} -.nav-tabs > li:first-child { - border-left: none; -} -.nav-tabs > li > a { - margin-right: 0; - border: none; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - color: #434a54; -} -.nav-tabs > li:first-child > a { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.nav-tabs > li > a:focus, .nav-tabs > li > a:hover { - border: none; - background-color: #f5f7fa; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover { - border: none; - background-color: white !important; -} -.nav-tabs .dropdown-toggle, .nav-tabs .dropdown-toggle:hover, .nav-tabs .dropdown-toggle:focus { - color: #434a54; -} -.nav-tabs li.dropdown.open .dropdown-toggle { - color: #434a54; - background-color: #f5f7fa; -} -.nav-tabs li.dropdown.active.open .dropdown-toggle { - color: #434a54; -} -.nav-tabs li.dropdown.active.open .dropdown-toggle .caret, .nav-tabs li.dropdown.active .dropdown-toggle .caret { - border-top-color: #434a54; - border-bottom-color: #434a54; -} -.nav-tabs li.dropdown.open .caret, .nav-tabs li.dropdown.open.active .caret, .nav-tabs li.dropdown.open a:hover .caret, .nav-tabs li.dropdown.open a:focus .caret, .nav-tabs .dropdown-toggle .caret, .nav-tabs .dropdown-toggle:hover .caret, .nav-tabs .dropdown-toggle:focus .caret { - border-top-color: #434a54; - border-bottom-color: #434a54; -} -.nav-tabs.nav-justified > li > a { - margin-bottom: 0; - text-align: center; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -.nav-tabs.nav-justified > li > a { - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.nav-tabs.nav-justified > li:first-child > a { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.nav-tabs.nav-justified > li:last-child > a { - -webkit-border-radius: 0 4px 0 0; - -moz-border-radius: 0 4px 0 0; - border-radius: 0 4px 0 0; -} -.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { - border: none; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: none; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - } - .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { - border-bottom: none; - } -} -.tab-content { - padding: 10px; -} - -.tabs-below .nav-tabs { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.tabs-below .nav-tabs > li:first-child > a { - -webkit-border-radius: 0 0 0 4px; - -moz-border-radius: 0 0 0 4px; - border-radius: 0 0 0 4px; -} -.tabs-below .nav-tabs.nav-justified > li:last-child > a { - -webkit-border-radius: 0 0 4px 0; - -moz-border-radius: 0 0 4px 0; - border-radius: 0 0 4px 0; -} - -.tabs-left .nav-tabs > li, -.tabs-right .nav-tabs > li { - float: none; - border-left: none; - border-top: 1px solid #ccd1d9; -} - -.tabs-left .nav-tabs > li:first-child, -.tabs-right .nav-tabs > li:first-child { - border-top: none; -} - -.tabs-left .nav-tabs > li > a, -.tabs-right .nav-tabs > li > a { - min-width: 74px; - margin-right: 0; -} - -.tabs-left .nav-tabs { - float: left; - margin-right: 19px; - -webkit-border-radius: 4px 0 0 4px; - -moz-border-radius: 4px 0 0 4px; - border-radius: 4px 0 0 4px; -} -.tabs-left .nav-tabs > li:first-child > a { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.tabs-left .nav-tabs > li:last-child > a { - -webkit-border-radius: 0 0 0 4px; - -moz-border-radius: 0 0 0 4px; - border-radius: 0 0 0 4px; -} - -.tabs-right .nav-tabs { - float: right; - margin-left: 19px; - -webkit-border-radius: 0 4px 4px 0; - -moz-border-radius: 0 4px 4px 0; - border-radius: 0 4px 4px 0; -} -.tabs-right .nav-tabs > li:first-child > a { - -webkit-border-radius: 0 4px 0 0; - -moz-border-radius: 0 4px 0 0; - border-radius: 0 4px 0 0; -} -.tabs-right .nav-tabs > li:last-child > a { - -webkit-border-radius: 0 0 4px 0; - -moz-border-radius: 0 0 4px 0; - border-radius: 0 0 4px 0; -} - -/** - * pill - * -------------------------------------------------- - */ -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: white; - background-color: #3bafda; -} -.nav-pills > li > a { - color: #3bafda; -} -.nav-pills > li > a:hover { - color: #434a54; - background-color: #e6e9ed; -} -.nav-pills > .active > a > .badge { - color: #3bafda; -} -.nav-pills .open > a, .nav-pills .open > a:focus, .nav-pills .open > a:hover { - color: #434a54; - background-color: #e6e9ed; -} - -/** - * navbar - * -------------------------------------------------- - */ -.navbar-default { - background-color: #37bc9b; - border-color: #37bc9b; -} -.navbar-default .navbar-brand, .navbar-default .navbar-link, .navbar-default .btn-link { - color: #26816a; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus, .navbar-default .navbar-link:hover, .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: white; - background-color: transparent; -} -.navbar-default .navbar-text, .navbar-default .navbar-nav > li > a { - color: #26816a; -} -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: white; -} -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: white; - background-color: #48cfad; -} -.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus, .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #2e9c81; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #26816a; - background-color: #26816a; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - border-color: #2b957a; - background-color: #2b957a; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #37bc9b; -} -.navbar-default .navbar-collapse, .navbar-default .navbar-form { - border-color: #48cfad; -} -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: white; - background-color: #37bc9b; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - background-color: #48cfad; - } - .navbar-default .navbar-nav .open .dropdown-menu > .divider { - background-color: #48cfad; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #26816a; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: white; - background-color: #48cfad; - } - .navbar-default .navbar-nav .open .dropdown-menu > .dropdown-header { - color: #26816a; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #2b957a; - } -} - -.navbar-inverse { - background-color: #333333; - border-color: #333333; -} -.navbar-inverse .navbar-brand, .navbar-inverse .navbar-link, .navbar-inverse .btn-link { - color: #8c8c8c; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-link:hover, .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: white; - background-color: transparent; -} -.navbar-inverse .navbar-text, .navbar-inverse .navbar-nav > li > a { - color: #8c8c8c; -} -.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: white; -} -.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: white; - background-color: black; -} -.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus, .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #666666; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: black; - background-color: black; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - border-color: #1a1a1a; - background-color: #1a1a1a; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #8c8c8c; -} -.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { - border-color: black; -} -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: white; - background-color: black; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - background-color: black; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .divider { - background-color: black; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #8c8c8c; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: white; - background-color: black; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - color: #bfbfbf; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #666666; - } -} - -/** - * list - * -------------------------------------------------- - */ -.list-group { - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.list-group-item { - border-color: transparent; - border-top-color: #e6e9ed; -} -.list-group-item:first-child { - border-top: none; -} -.list-group-item-heading { - color: #434a54; -} - -a.list-group-item { - color: #434a54; -} -a.list-group-item .list-group-item-heading { - font-size: 16px; - color: #434a54; -} -a.list-group-item:hover, a.list-group-item:focus { - background-color: #e6e9ed; -} -a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus { - background-color: #4fc1e9; - border-color: #4fc1e9; -} -a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text { - color: white; -} - -.list-group-item-primary { - color: #22b1e3; - border-color: #3bafda transparent transparent transparent; - background-color: #4fc1e9; -} -.list-group-item-primary:first-child { - border-color: transparent; -} -a.list-group-item-primary { - color: #126d8d; -} -a.list-group-item-primary:hover, a.list-group-item-primary:focus { - color: white; - background-color: #3bafda; -} -a.list-group-item-primary.active, a.list-group-item-primary:hover, a.list-group-item-primary:focus { - background-color: #3bafda; - border-color: #4fc1e9 transparent transparent transparent; -} - -.list-group-item-success { - color: #87c940; - border-color: #8cc152 transparent transparent transparent; - background-color: #a0d468; -} -.list-group-item-success:first-child { - border-color: transparent; -} -a.list-group-item-success { - color: #537f24; -} -a.list-group-item-success:hover, a.list-group-item-success:focus { - color: white; - background-color: #8cc152; -} -a.list-group-item-success.active, a.list-group-item-success:hover, a.list-group-item-success:focus { - background-color: #8cc152; - border-color: #a0d468 transparent transparent transparent; -} - -.list-group-item-warning { - color: #ffbf21; - border-color: #f6bb42 transparent transparent transparent; - background-color: #ffce54; -} -.list-group-item-warning:first-child { - border-color: transparent; -} -a.list-group-item-warning { - color: #876000; -} -a.list-group-item-warning:hover, a.list-group-item-warning:focus { - color: white; - background-color: #f6bb42; -} -a.list-group-item-warning.active, a.list-group-item-warning:hover, a.list-group-item-warning:focus { - background-color: #f6bb42; - border-color: #ffce54 transparent transparent transparent; -} - -.list-group-item-info { - color: #2fb593; - border-color: #37bc9b transparent transparent transparent; - background-color: #48cfad; -} -.list-group-item-info:first-child { - border-color: transparent; -} -a.list-group-item-info { - color: #1a6451; -} -a.list-group-item-info:hover, a.list-group-item-info:focus { - color: white; - background-color: #37bc9b; -} -a.list-group-item-info.active, a.list-group-item-info:hover, a.list-group-item-info:focus { - background-color: #37bc9b; - border-color: #48cfad transparent transparent transparent; -} - -.list-group-item-danger { - color: #e8273b; - border-color: #da4453 transparent transparent transparent; - background-color: #ed5565; -} -.list-group-item-danger:first-child { - border-color: transparent; -} -a.list-group-item-danger { - color: #99101f; -} -a.list-group-item-danger:hover, a.list-group-item-danger:focus { - color: white; - background-color: #da4453; -} -a.list-group-item-danger.active, a.list-group-item-danger:hover, a.list-group-item-danger:focus { - background-color: #da4453; - border-color: #ed5565 transparent transparent transparent; -} - -/** - * media list - * -------------------------------------------------- - */ -.media-list { - color: #aab2bd; -} -.media-heading { - font-size: 14px; - color: #434a54; -} - -/** - * modal - * -------------------------------------------------- - */ -.modal-content { - border: none; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - color: #434a54; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.modal-header { - border-bottom: none; -} -.modal-body { - padding: 0 15px; -} -.modal-footer { - border-top: none; -} - -/** - * well - * -------------------------------------------------- - */ -.well { - padding: 10px; - border: none; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - color: #434a54; - background-color: white; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.well blockquote { - border-color: #ccd1d9; -} -.well-lg { - padding: 20px; -} -.well-sm { - padding: 5px; -} - -/** - * thumbnail - * -------------------------------------------------- - */ -.thumbnail { - border: none; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.thumbnail .caption { - font-size: 14px; -} -.thumbnail .caption h1, .thumbnail .caption h2, .thumbnail .caption h3, .thumbnail .caption h4, .thumbnail .caption h5, .thumbnail .caption h6 { - margin: 5px 0 10px; - font-size: 16px; -} - -/** - * jumbotron - * -------------------------------------------------- - */ -.jumbotron { - margin-bottom: 20px; - padding: 0; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - background-color: white; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.container .jumbotron { - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.jumbotron > .jumbotron-photo img { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; - width: 100%; -} -.jumbotron .jumbotron-contents { - padding: 20px; - color: #434a54; -} -.jumbotron .carousel, .jumbotron .carousel-inner, .jumbotron .carousel-inner > .item.active img { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.jumbotron .carousel-control.left { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.jumbotron .carousel-control.right { - -webkit-border-radius: 0 4px 0 0; - -moz-border-radius: 0 4px 0 0; - border-radius: 0 4px 0 0; -} -.jumbotron h1, .jumbotron .h1, .jumbotron h2, .jumbotron .h2 { - font-weight: 400; -} -.jumbotron h1, .jumbotron .h1 { - font-size: 28px; -} -.jumbotron h2, .jumbotron .h2 { - font-size: 24px; -} -.jumbotron p { - font-size: 14px; -} -@media screen and (min-width: 768px) { - .jumbotron, .container .jumbotron { - padding: 0; - } - .jumbotron h1, .jumbotron .h1 { - font-size: 28px; - } -} - -/** - * panel - * -------------------------------------------------- - */ -.panel { - background-color: white; - border: none; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.panel .list-group { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.panel .list-group-item:first-child { - border-top: 1px solid #e6e9ed; -} -.panel-heading { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.panel-title { - font-size: 14px; - color: #434a54; - font-weight: normal; -} -.panel-footer { - background-color: #e6e9ed; - border-top-color: #e6e9ed; - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.panel-default { - border-color: #e6e9ed; -} -.panel-default > .panel-heading { - color: #434a54; - background-color: #e6e9ed; - border-color: #e6e9ed; -} -.panel-primary { - border-color: #3bafda; -} -.panel-primary > .panel-heading { - color: white; - background-color: #3bafda; - border-color: #3bafda; -} -.panel-success { - border-color: #8cc152; -} -.panel-success > .panel-heading { - color: white; - background-color: #8cc152; - border-color: #8cc152; -} -.panel-info { - border-color: #37bc9b; -} -.panel-info > .panel-heading { - color: white; - background-color: #37bc9b; - border-color: #37bc9b; -} -.panel-warning { - border-color: #f6bb42; -} -.panel-warning > .panel-heading { - color: white; - background-color: #f6bb42; - border-color: #f6bb42; -} -.panel-danger { - border-color: #da4453; -} -.panel-danger > .panel-heading { - color: white; - background-color: #da4453; - border-color: #da4453; -} -.panel-primary > .panel-heading > .panel-title, .panel-success > .panel-heading > .panel-title, .panel-info > .panel-heading > .panel-title, .panel-warning > .panel-heading > .panel-title, .panel-danger > .panel-heading > .panel-title { - color: white; -} -.panel > .list-group:first-child .list-group-item:first-child, .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.panel > .list-group:last-child .list-group-item:last-child { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - -webkit-border-radius: 0 4px 0 0; - -moz-border-radius: 0 4px 0 0; - border-radius: 0 4px 0 0; -} -.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - -webkit-border-radius: 0 0 0 4px; - -moz-border-radius: 0 0 0 4px; - border-radius: 0 0 0 4px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - -webkit-border-radius: 0 0 4px 0; - -moz-border-radius: 0 0 4px 0; - border-radius: 0 0 4px 0; -} -.panel > .panel-body + .table, .panel > .panel-body + .table-responsive { - border-top-color: #e6e9ed; -} - -/** - * accordion - * -------------------------------------------------- - */ -.panel-group .panel { - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - background-color: transparent; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.panel-group .panel + .panel { - margin-top: 0; -} -.panel-group .panel-heading { - padding: 0; - border-bottom-color: transparent; -} -.panel-group .panel-heading + .panel-collapse .panel-body { - padding: 15px 0; - border-top-color: transparent; -} -.panel-group .panel-title a { - padding: 10px 0; - display: block; -} - -.panel-group-lists .panel { - border-bottom: 1px solid #e6e9ed; - background-color: white; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.panel-group-lists .panel:first-child { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.panel-group-lists .panel:last-child { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; - border-bottom: none; -} -.panel-group-lists .panel-heading + .panel-collapse .panel-body { - padding: 15px; - border-top-color: #e6e9ed; -} -.panel-group-lists .panel-title a { - padding: 10px 15px; - color: #434a54; -} -.panel-group-lists .panel-title a:hover, .panel-group-lists .panel-title a:focus, .panel-group-lists .panel-title a:active { - color: #aab2bd; -} - -/** - * footer - * -------------------------------------------------- - */ -.footer { - padding: 40px 0; - background-color: #434a54; -} -.footer-logo, .footer-nav { - float: left; - padding: 0 20px; - width: 20%; -} -@media (max-width: 768px) { - .footer-logo { - margin-bottom: 20px; - } - .footer-logo, .footer-nav { - float: none; - display: block; - width: 100%; - } -} -.footer-logo { - margin-top: -5px; - height: 32px; - line-height: 32px; -} -.footer-logo img { - margin-right: 10px; -} -.footer-logo a { - font-size: 20px; - font-weight: bold; - color: white; -} -.footer-logo a:hover, .footer-logo a:active { - text-decoration: none; -} -.footer-nav .nav-title { - margin-bottom: 15px; - color: #e6e9ed; -} -.footer-nav .nav-item { - line-height: 28px; -} -.footer-nav .nav-item > a { - color: #aab2bd; -} -.footer-nav .nav-item > a:hover, .footer-nav .nav-item > a:active { - color: #ccd1d9; - text-decoration: none; -} -.footer-copyright { - color: #aab2bd; -} - -/** - * dropdown-menu - * -------------------------------------------------- - */ -.dropdown-menu { - border: none; - background-color: #434a54; -} -.dropdown-menu .dropdown-header { - padding: 5px 20px; - font-size: 14px; - font-weight: 700; - color: #aab2bd; -} -.dropdown-menu li a { - padding: 5px 20px; - color: white; -} -.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu .active a, .dropdown-menu .active a:hover, .dropdown-menu .active a:focus { - color: white; - background-color: #656d78; - outline: none; -} -.dropdown-menu .disabled a, .dropdown-menu .disabled a:hover, .dropdown-menu .disabled a:focus { - color: #656d78; - cursor: default; -} -.dropdown-menu .divider { - background-color: #656d78; - border-bottom: none; -} -.dropup .dropdown-menu { - margin-bottom: 0; - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} - -/** - * dropdown-submenu - * -------------------------------------------------- - */ -.dropdown-submenu { - position: relative; -} -.dropdown-submenu .dropdown-menu { - top: 0; - left: 100%; - margin-top: -6px; - margin-left: -1px; - -webkit-border-radius: 0 4px 4px 4px; - -moz-border-radius: 0 4px 4px 4px; - border-radius: 0 4px 4px 4px; -} -.dropdown-submenu:hover .dropdown-menu { - display: block; -} -.dropup .dropdown-submenu .dropdown-menu { - top: auto; - bottom: 0; - margin-top: 0; - margin-bottom: -2px; - -webkit-border-radius: 4px 4px 4px 0; - -moz-border-radius: 4px 4px 4px 0; - border-radius: 4px 4px 4px 0; -} -.dropdown-submenu > a:after { - display: block; - content: " "; - float: right; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; - border-width: 5px 0 5px 5px; - border-left-color: white; - margin-top: 5px; - margin-right: -10px; -} -.dropdown-default .dropdown-submenu > a:after { - border-left-color: #434a54; -} -.dropdown-submenu:hover a:after { - border-left-color: white; -} -.dropdown-submenu.pull-left { - float: none; -} -.dropdown-submenu.pull-left .dropdown-menu { - left: -100%; - margin-left: 10px; - -webkit-border-radius: 4px 0 4px 4px; - -moz-border-radius: 4px 0 4px 4px; - border-radius: 4px 0 4px 4px; -} - -/*# sourceMappingURL=bootflat.css.map */ diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.css.map b/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.css.map deleted file mode 100755 index c27be72..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ -"version": 3, -"mappings": "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", -"sources": ["../scss/bootflat/_typography.scss","../scss/bootflat/_global.scss","../scss/bootflat/_button.scss","../scss/bootflat/_button_group.scss","../scss/bootflat/_label_badge.scss","../scss/bootflat/_tooltip.scss","../scss/bootflat/_popover.scss","../scss/bootflat/_progress.scss","../scss/bootflat/_breadcrumb.scss","../scss/bootflat/_pagination.scss","../scss/bootflat/_pager.scss","../scss/bootflat/_form.scss","../scss/bootflat/_checkbox_radio.scss","../scss/bootflat/_alert.scss","../scss/bootflat/_tab.scss","../scss/bootflat/_pill.scss","../scss/bootflat/_navbar.scss","../scss/bootflat/_list.scss","../scss/bootflat/_media_list.scss","../scss/bootflat/_modal.scss","../scss/bootflat/_well.scss","../scss/bootflat/_thumbnail.scss","../scss/bootflat/_jumbotron.scss","../scss/bootflat/_panel.scss","../scss/bootflat/_accordion.scss","../scss/bootflat/_footer.scss","../scss/bootflat/_dropdown.scss"], -"names": [], -"file": "bootflat.css" -} diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.min.css b/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.min.css deleted file mode 100755 index 55d87fa..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/css/bootflat.min.css +++ /dev/null @@ -1 +0,0 @@ -body{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;color:#434a54;background-color:#fff}a{color:#3bafda;text-decoration:none}a:focus,a:hover{color:#4fc1e9;text-decoration:none}a:focus{outline:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:700;line-height:1.1;color:inherit}.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#e7e9ec}h1,h2,h3{margin-top:30px;margin-bottom:15px}h4,h5,h6{margin-top:15px;margin-bottom:15px}h6{font-weight:400}.h1,h1{font-size:51px}.h2,h2{font-size:43px}.h3,h3{font-size:30px}.h4,h4{font-size:19px}.h5,h5{font-size:18px}.h6,h6{font-size:14px}blockquote{border-left:3px solid #ccd1d9}.img-rounded{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.img-comment{font-size:15px;line-height:1.2;font-style:italic;margin:24px 0}.btn{color:#fff}.btn,.btn.disabled,.btn[disabled]{border-color:#aab2bd;background-color:#aab2bd}.btn.active,.btn:active,.btn:focus,.btn:hover{color:#fff;border-color:#ccd1d9;background-color:#ccd1d9;outline:0!important}.btn.active,.btn:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);box-shadow:inset 0 1px 2px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled]{opacity:.45;filter:alpha(opacity=45)}.btn-link,.btn-link.active,.btn-link.disabled,.btn-link:active,.btn-link:focus,.btn-link:hover,.btn-link[disabled]{border-color:transparent;background-color:transparent;color:#3bafda;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-default{color:#434a54;border-color:#aab2bd!important}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover{border-color:#ccd1d9;background-color:#ccd1d9}.btn-default,.btn-default.disabled,.btn-default[disabled]{background-color:#fff}.open .dropdown-toggle.btn-default{border-color:#ccd1d9;background-color:#ccd1d9}.btn-primary,.btn-primary.active,.btn-primary.disabled,.btn-primary:active,.btn-primary[disabled]{border-color:#3bafda;background-color:#3bafda}.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{border-color:#4fc1e9;background-color:#4fc1e9}.btn-info,.btn-info.active,.btn-info.disabled,.btn-info:active,.btn-info[disabled]{border-color:#37bc9b;background-color:#37bc9b}.btn-info:focus,.btn-info:hover,.open .dropdown-toggle.btn-info{border-color:#48cfad;background-color:#48cfad}.btn-success,.btn-success.active,.btn-success.disabled,.btn-success:active,.btn-success[disabled]{border-color:#8cc152;background-color:#8cc152}.btn-success:focus,.btn-success:hover,.open .dropdown-toggle.btn-success{border-color:#a0d468;background-color:#a0d468}.btn-warning,.btn-warning.active,.btn-warning.disabled,.btn-warning:active,.btn-warning[disabled]{border-color:#f6bb42;background-color:#f6bb42}.btn-warning:focus,.btn-warning:hover,.open .dropdown-toggle.btn-warning{border-color:#ffce54;background-color:#ffce54}.btn-danger,.btn-danger .open .dropdown-toggle.btn,.btn-danger.active,.btn-danger.disabled,.btn-danger:active,.btn-danger[disabled]{border-color:#da4453;background-color:#da4453}.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{border-color:#ed5565;background-color:#ed5565}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);box-shadow:inset 0 1px 2px rgba(0,0,0,.125)}.btn-group .btn{border-left-color:#96a0ad}.btn-group .btn-default.active,.btn-group .btn-default:active,.btn-group .btn-default:focus,.btn-group.open .btn-default.dropdown-toggle{color:#fff}.btn-group .btn-primary,.btn-group .btn-primary.active,.btn-group .btn-primary:active,.btn-group .btn-primary:focus{border-left-color:#269ecb}.btn-group .btn-success,.btn-group .btn-success.active,.btn-group .btn-success:active,.btn-group .btn-success:focus{border-left-color:#7ab03f}.btn-group .btn-warning,.btn-group .btn-warning.active,.btn-group .btn-warning:active,.btn-group .btn-warning:focus{border-left-color:#efa50b}.btn-group .btn-danger,.btn-group .btn-danger.active,.btn-group .btn-danger:active,.btn-group .btn-danger:focus{border-left-color:#d1293a}.btn-group .btn-info,.btn-group .btn-info.active,.btn-group .btn-info:active,.btn-group .btn-info:focus{border-left-color:#2fa084}.btn-group .btn-danger:first-child,.btn-group .btn-info:first-child,.btn-group .btn-primary:first-child,.btn-group .btn-success:first-child,.btn-group .btn-warning:first-child,.btn-group .btn:first-child{border-left-color:transparent}.btn-group-vertical .btn,.btn-group-vertical .btn-group .btn-primary{border-top-color:#96a0ad!important}.btn-group-vertical .btn-group .btn-primary,.btn-group-vertical .btn-primary,.btn-group-vertical .btn-primary.active,.btn-group-vertical .btn-primary:active,.btn-group-vertical .btn-primary:focus{border-top-color:#269ecb!important}.btn-group-vertical .btn-group .btn-success,.btn-group-vertical .btn-success,.btn-group-vertical .btn-success.active,.btn-group-vertical .btn-success:active,.btn-group-vertical .btn-success:focus{border-top-color:#7ab03f!important}.btn-group-vertical .btn-group .btn-warning,.btn-group-vertical .btn-warning,.btn-group-vertical .btn-warning.active,.btn-group-vertical .btn-warning:active,.btn-group-vertical .btn-warning:focus{border-top-color:#efa50b!important}.btn-group-vertical .btn-danger,.btn-group-vertical .btn-danger.active,.btn-group-vertical .btn-danger:active,.btn-group-vertical .btn-danger:focus,.btn-group-vertical .btn-group .btn-danger{border-top-color:#d1293a!important}.btn-group-vertical .btn-group .btn-info,.btn-group-vertical .btn-info,.btn-group-vertical .btn-info.active,.btn-group-vertical .btn-info:active,.btn-group-vertical .btn-info:focus{border-top-color:#2fa084!important}.btn-group-vertical .btn-danger:first-child,.btn-group-vertical .btn-info:first-child,.btn-group-vertical .btn-primary:first-child,.btn-group-vertical .btn-success:first-child,.btn-group-vertical .btn-warning:first-child,.btn-group-vertical .btn:not(.btn-default):first-child{border-top:none}.badge,.label{background-color:#aab2bd}.badge-default,.label-default{border:1px solid #aab2bd;background-color:#fff;color:#434a54}.badge-primary,.label-primary{border-color:#3bafda;background-color:#3bafda}.badge-success,.label-success{border-color:#8cc152;background-color:#8cc152}.badge-danger,.label-danger{border-color:#da4453;background-color:#da4453}.badge-warning,.label-warning{border-color:#f6bb42;background-color:#f6bb42}.badge-info,.label-info{border-color:#37bc9b;background-color:#37bc9b}.tooltip-inner{color:#fff;background-color:#434a54}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{border-top-color:#434a54}.tooltip.right .tooltip-arrow{border-right-color:#434a54}.tooltip.left .tooltip-arrow{border-left-color:#434a54}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#434a54}.popover{background-color:#434a54;color:#fff;border-color:#434a54}.popover-title{padding-bottom:0;font-weight:700;color:#aab2bd;background-color:transparent;border-bottom:none}.popover.top .arrow,.popover.top .arrow:after{border-top-color:#434a54}.popover.right .arrow,.popover.right .arrow:after{border-right-color:#434a54}.popover.bottom .arrow,.popover.bottom .arrow:after{border-bottom-color:#434a54}.popover.left .arrow,.popover.left .arrow:after{border-left-color:#434a54}.progress{background-color:#e6e9ed;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.progress-bar{background-color:#3bafda;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.progress-bar-success{background-color:#8cc152}.progress-bar-info{background-color:#37bc9b}.progress-bar-warning{background-color:#f6bb42}.progress-bar-danger{background-color:#da4453}.breadcrumb{color:#434a54;background-color:#e6e9ed}.breadcrumb>.active{color:#434a54}.breadcrumb a{color:#3bafda}.breadcrumb-arrow{padding:0;list-style:none;background-color:#e6e9ed;height:36px;line-height:36px}.breadcrumb-arrow li:first-child a{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.breadcrumb-arrow li,.breadcrumb-arrow li a,.breadcrumb-arrow li span{display:inline-block;vertical-align:top}.breadcrumb-arrow li:not(:first-child){margin-left:-5px}.breadcrumb-arrow li+li:before{padding:0;content:""}.breadcrumb-arrow li span{padding:0 10px}.breadcrumb-arrow li a,.breadcrumb-arrow li:not(:first-child) span{padding:0 10px 0 25px;height:35px;line-height:35px}.breadcrumb-arrow li:first-child a{padding:0 10px}.breadcrumb-arrow li a{position:relative;border:1px solid #3bafda;color:#fff;background-color:#3bafda;text-decoration:none}.breadcrumb-arrow li:first-child a{padding-left:10px}.breadcrumb-arrow li a:after,.breadcrumb-arrow li a:before{position:absolute;top:0;content:'';width:0;height:0;border-top:17px solid transparent;border-bottom:17px solid transparent}.breadcrumb-arrow li a:before{right:-10px;border-left-width:10px;border-left-style:solid;border-left-color:#3bafda;z-index:3}.breadcrumb-arrow li a:after{right:-11px;border-left:10px solid #2494be;z-index:2}.breadcrumb-arrow li a:focus,.breadcrumb-arrow li a:hover{background-color:#4fc1e9;border:1px solid #4fc1e9}.breadcrumb-arrow li a:focus:before,.breadcrumb-arrow li a:hover:before{border-left-color:#4fc1e9}.breadcrumb-arrow li a:active{background-color:#2494be;border:1px solid #2494be}.breadcrumb-arrow li a:active:after,.breadcrumb-arrow li a:active:before{border-left-color:#2494be}.breadcrumb-arrow li span{color:#434a54}.pagination>li>a,.pagination>li>span{color:#434a54;background-color:#fff;border-color:#ccd1d9}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#fff;background-color:#ccd1d9;border-color:#ccd1d9}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{color:#fff;background-color:#8cc152;border-color:#8cc152}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#e6e9ed;background-color:#fff;border-color:#ccd1d9}.pager li>a,.pager li>span{color:#fff;background-color:#8cc152;border-color:#8cc152}.pager li>a:focus,.pager li>a:hover{background-color:#a0d468;border-color:#a0d468}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#e6e9ed;background-color:#fff;border-color:#e6e9ed}.form-control{color:#434a54;border-color:#aab2bd}.form-control,.form-control:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control:focus{border-color:#3bafda}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder{color:#e6e9ed}.form-control.disabled,.form-control[disabled]{border-color:#e6e9ed;background-color:#e6e9ed}.input-group-btn .btn+.btn{border-width:1px;border-style:solid;border-color:#96a0ad}.input-group-btn .btn+.btn.btn-default{border-color:#ededed}.input-group-btn .btn+.btn.btn-primary{border-color:#269ecb}.input-group-btn .btn+.btn.btn-info{border-color:#2fa084}.input-group-btn .btn+.btn.btn-success{border-color:#7ab03f}.input-group-btn .btn+.btn.btn-warning{border-color:#f4af20}.input-group-btn .btn+.btn.btn-danger{border-color:#d1293a}.input-group-addon{background-color:#aab2bd;border-color:#96a0ad;color:#fff}.input-group-addon .checkbox,.input-group-addon .radio{margin:-3px 0 -4px!important}.form-search .search-query,.form-search .search-query:first-child,.form-search .search-query:last-child{padding:0 17px;-webkit-border-radius:17px;-moz-border-radius:17px;border-radius:17px}.input-group .form-control:last-child{-webkit-border-top-left-radius:0;-moz-border-radius-topleft:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0}.input-group .form-control:first-child{-webkit-border-top-right-radius:0;-moz-border-radius-topright:0;border-top-right-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0}.form-search .btn{-webkit-border-radius:17px;-moz-border-radius:17px;border-radius:17px}.search-only{position:relative}.search-only .search-icon{position:absolute;top:2px;left:8.5px;width:30px;line-height:30px;text-align:center;font-size:17px;color:#e6e9ed;z-index:20}.search-only .form-control:last-child{padding-left:40px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline{color:#8cc152}.has-success .form-control,.has-success .form-control:focus{border-color:#8cc152;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.has-success .input-group-addon{background-color:#8cc152;border-color:#8cc152}.has-success .form-control-feedback{color:#8cc152}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline{color:#f6bb42}.has-warning .form-control,.has-warning .form-control:focus{border-color:#f6bb42;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.has-warning .input-group-addon{background-color:#f6bb42;border-color:#f6bb42}.has-warning .form-control-feedback{color:#f6bb42}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline{color:#da4453}.has-error .form-control,.has-error .form-control:focus{border-color:#da4453;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.has-error .input-group-addon{background-color:#da4453;border-color:#da4453}.has-error .form-control-feedback{color:#da4453}.checkbox,.radio{margin-top:0;padding-left:0}.icheckbox_flat,.iradio_flat{display:inline-block;*display:inline;vertical-align:middle;margin:0;padding:0!important;width:20px;height:20px;background:url(../bootflat/img/check_flat/default.png) no-repeat;border:none;cursor:pointer}.icheckbox_flat{background-position:0 0}.icheckbox_flat.checked{background-position:-22px 0}.icheckbox_flat.disabled{background-position:-44px 0;cursor:default}.icheckbox_flat.checked.disabled{background-position:-66px 0}.iradio_flat{background-position:-88px 0}.iradio_flat.checked{background-position:-110px 0}.iradio_flat.disabled{background-position:-132px 0;cursor:default}.iradio_flat.checked.disabled{background-position:-154px 0}.alert h4{margin-bottom:10px;font-weight:700}.alert-dismissable .close{color:#000}.alert-info{background-color:#7cd1ef;border:#4fc1e9}.alert-warning{background-color:#ffdd87;border:#ffce54}.alert-danger{background-color:#f2838f;border:#ed5565}.alert-success{background-color:#b9df90;border:#a0d468}.alert .alert-link{cursor:pointer;text-decoration:underline;opacity:.65;filter:alpha(opacity=65)}.alert .alert-link:focus,.alert .alert-link:hover{opacity:.45;filter:alpha(opacity=45)}.alert .btn-link,.alert .btn-link:focus,.alert .btn-link:hover{color:#000;opacity:.65;filter:alpha(opacity=65)}.alert .btn-link:focus,.alert .btn-link:hover{text-decoration:none;opacity:.4;filter:alpha(opacity=40)}.nav-tabs{border-bottom:none;background-color:#e6e9ed;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li{margin-bottom:0;border-left:1px solid #ccd1d9}.nav-tabs>li:first-child{border-left:none}.nav-tabs>li>a{margin-right:0;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;color:#434a54}.nav-tabs>li:first-child>a{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{border:none;background-color:#f5f7fa}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{border:none;background-color:#fff!important}.nav-tabs .dropdown-toggle,.nav-tabs .dropdown-toggle:focus,.nav-tabs .dropdown-toggle:hover{color:#434a54}.nav-tabs li.dropdown.open .dropdown-toggle{color:#434a54;background-color:#f5f7fa}.nav-tabs li.dropdown.active.open .dropdown-toggle{color:#434a54}.nav-tabs .dropdown-toggle .caret,.nav-tabs .dropdown-toggle:focus .caret,.nav-tabs .dropdown-toggle:hover .caret,.nav-tabs li.dropdown.active .dropdown-toggle .caret,.nav-tabs li.dropdown.active.open .dropdown-toggle .caret,.nav-tabs li.dropdown.open .caret,.nav-tabs li.dropdown.open a:focus .caret,.nav-tabs li.dropdown.open a:hover .caret,.nav-tabs li.dropdown.open.active .caret{border-top-color:#434a54;border-bottom-color:#434a54}.nav-tabs.nav-justified>li>a{margin-bottom:0;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs.nav-justified>li>a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-justified>li:first-child>a{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.nav-tabs.nav-justified>li:last-child>a{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:none}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom:none}}.tab-content{padding:10px}.tabs-below .nav-tabs{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below .nav-tabs>li:first-child>a{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px}.tabs-below .nav-tabs.nav-justified>li:last-child>a{-webkit-border-radius:0 0 4px;-moz-border-radius:0 0 4px;border-radius:0 0 4px}.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;border-left:none;border-top:1px solid #ccd1d9}.tabs-left .nav-tabs>li:first-child,.tabs-right .nav-tabs>li:first-child{border-top:none}.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0}.tabs-left .nav-tabs{float:left;margin-right:19px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left .nav-tabs>li:first-child>a{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.tabs-left .nav-tabs>li:last-child>a{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px}.tabs-right .nav-tabs{float:right;margin-left:19px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right .nav-tabs>li:first-child>a{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.tabs-right .nav-tabs>li:last-child>a{-webkit-border-radius:0 0 4px;-moz-border-radius:0 0 4px;border-radius:0 0 4px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#3bafda}.nav-pills>li>a{color:#3bafda}.nav-pills>li>a:hover{color:#434a54;background-color:#e6e9ed}.nav-pills>.active>a>.badge{color:#3bafda}.nav-pills .open>a,.nav-pills .open>a:focus,.nav-pills .open>a:hover{color:#434a54;background-color:#e6e9ed}.navbar-default{background-color:#37bc9b;border-color:#37bc9b}.navbar-default .btn-link,.navbar-default .navbar-brand,.navbar-default .navbar-link{color:#26816a}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover,.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover,.navbar-default .navbar-link:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#26816a}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#fff}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:#48cfad}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#2e9c81;background-color:transparent}.navbar-default .navbar-toggle{border-color:#26816a;background-color:#26816a}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{border-color:#2b957a;background-color:#2b957a}.navbar-default .navbar-toggle .icon-bar{background-color:#37bc9b}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#48cfad}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#fff;background-color:#37bc9b}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>.divider,.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{background-color:#48cfad}.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#26816a}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:#48cfad}.navbar-default .navbar-nav .open .dropdown-menu>.dropdown-header{color:#26816a}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#2b957a}}.navbar-inverse{background-color:#333;border-color:#333}.navbar-inverse .btn-link,.navbar-inverse .navbar-brand,.navbar-inverse .navbar-link{color:#8c8c8c}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover,.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-link:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#8c8c8c}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#000}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#666;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#000;background-color:#000}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{border-color:#1a1a1a;background-color:#1a1a1a}.navbar-inverse .navbar-toggle .icon-bar{background-color:#8c8c8c}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#000}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#000}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.divider,.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{background-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#8c8c8c}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{color:#bfbfbf}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#666}}.list-group{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.list-group-item{border-color:transparent;border-top-color:#e6e9ed}.list-group-item:first-child{border-top:none}.list-group-item-heading,a.list-group-item{color:#434a54}a.list-group-item .list-group-item-heading{font-size:16px;color:#434a54}a.list-group-item:focus,a.list-group-item:hover{background-color:#e6e9ed}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover{background-color:#4fc1e9;border-color:#4fc1e9}a.list-group-item.active .list-group-item-text,a.list-group-item.active:focus .list-group-item-text,a.list-group-item.active:hover .list-group-item-text{color:#fff}.list-group-item-primary{color:#22b1e3;border-color:#3bafda transparent transparent;background-color:#4fc1e9}.list-group-item-primary:first-child{border-color:transparent}a.list-group-item-primary{color:#126d8d}a.list-group-item-primary:focus,a.list-group-item-primary:hover{color:#fff}a.list-group-item-primary.active,a.list-group-item-primary:focus,a.list-group-item-primary:hover{background-color:#3bafda;border-color:#4fc1e9 transparent transparent}.list-group-item-success{color:#87c940;border-color:#8cc152 transparent transparent;background-color:#a0d468}.list-group-item-success:first-child{border-color:transparent}a.list-group-item-success{color:#537f24}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#fff}a.list-group-item-success.active,a.list-group-item-success:focus,a.list-group-item-success:hover{background-color:#8cc152;border-color:#a0d468 transparent transparent}.list-group-item-warning{color:#ffbf21;border-color:#f6bb42 transparent transparent;background-color:#ffce54}.list-group-item-warning:first-child{border-color:transparent}a.list-group-item-warning{color:#876000}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#fff}a.list-group-item-warning.active,a.list-group-item-warning:focus,a.list-group-item-warning:hover{background-color:#f6bb42;border-color:#ffce54 transparent transparent}.list-group-item-info{color:#2fb593;border-color:#37bc9b transparent transparent;background-color:#48cfad}.list-group-item-info:first-child{border-color:transparent}a.list-group-item-info{color:#1a6451}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#fff}a.list-group-item-info.active,a.list-group-item-info:focus,a.list-group-item-info:hover{background-color:#37bc9b;border-color:#48cfad transparent transparent}.list-group-item-danger{color:#e8273b;border-color:#da4453 transparent transparent;background-color:#ed5565}.list-group-item-danger:first-child{border-color:transparent}a.list-group-item-danger{color:#99101f}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#fff}a.list-group-item-danger.active,a.list-group-item-danger:focus,a.list-group-item-danger:hover{background-color:#da4453;border-color:#ed5565 transparent transparent}.media-list{color:#aab2bd}.media-heading{font-size:14px;color:#434a54}.modal-content{border:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#434a54;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.modal-header{border-bottom:none}.modal-body{padding:0 15px}.modal-footer{border-top:none}.well{padding:10px;border:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#434a54;background-color:#fff;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.well blockquote{border-color:#ccd1d9}.well-lg{padding:20px}.well-sm{padding:5px}.thumbnail{border:none;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.thumbnail .caption{font-size:14px}.thumbnail .caption h1,.thumbnail .caption h2,.thumbnail .caption h3,.thumbnail .caption h4,.thumbnail .caption h5,.thumbnail .caption h6{margin:5px 0 10px;font-size:16px}.jumbotron{margin-bottom:20px;padding:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#fff;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.container .jumbotron{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.jumbotron>.jumbotron-photo img{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;width:100%}.jumbotron .jumbotron-contents{padding:20px;color:#434a54}.jumbotron .carousel,.jumbotron .carousel-inner,.jumbotron .carousel-inner>.item.active img{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.jumbotron .carousel-control.left{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.jumbotron .carousel-control.right{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.jumbotron .h1,.jumbotron .h2,.jumbotron h1,.jumbotron h2{font-weight:400}.jumbotron .h1,.jumbotron h1{font-size:28px}.jumbotron .h2,.jumbotron h2{font-size:24px}.jumbotron p{font-size:14px}@media screen and (min-width:768px){.container .jumbotron,.jumbotron{padding:0}.jumbotron .h1,.jumbotron h1{font-size:28px}}.panel{background-color:#fff;border:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.panel .list-group{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.panel .list-group-item:first-child{border-top:1px solid #e6e9ed}.panel-heading{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.panel-title{font-size:14px;color:#434a54;font-weight:400}.panel-footer{background-color:#e6e9ed;border-top-color:#e6e9ed;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.panel-default{border-color:#e6e9ed}.panel-default>.panel-heading{color:#434a54;background-color:#e6e9ed;border-color:#e6e9ed}.panel-primary{border-color:#3bafda}.panel-primary>.panel-heading{color:#fff;background-color:#3bafda;border-color:#3bafda}.panel-success{border-color:#8cc152}.panel-success>.panel-heading{color:#fff;background-color:#8cc152;border-color:#8cc152}.panel-info{border-color:#37bc9b}.panel-info>.panel-heading{color:#fff;background-color:#37bc9b;border-color:#37bc9b}.panel-warning{border-color:#f6bb42}.panel-warning>.panel-heading{color:#fff;background-color:#f6bb42;border-color:#f6bb42}.panel-danger{border-color:#da4453}.panel-danger>.panel-heading{color:#fff;background-color:#da4453;border-color:#da4453}.panel-danger>.panel-heading>.panel-title,.panel-info>.panel-heading>.panel-title,.panel-primary>.panel-heading>.panel-title,.panel-success>.panel-heading>.panel-title,.panel-warning>.panel-heading>.panel-title{color:#fff}.panel>.list-group:first-child .list-group-item:first-child,.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.panel>.list-group:last-child .list-group-item:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{-webkit-border-radius:0 0 4px;-moz-border-radius:0 0 4px;border-radius:0 0 4px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top-color:#e6e9ed}.panel-group .panel{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.panel-group .panel+.panel{margin-top:0}.panel-group .panel-heading{padding:0;border-bottom-color:transparent}.panel-group .panel-heading+.panel-collapse .panel-body{padding:15px 0;border-top-color:transparent}.panel-group .panel-title a{padding:10px 0;display:block}.panel-group-lists .panel{border-bottom:1px solid #e6e9ed;background-color:#fff;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.panel-group-lists .panel:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.panel-group-lists .panel:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;border-bottom:none}.panel-group-lists .panel-heading+.panel-collapse .panel-body{padding:15px;border-top-color:#e6e9ed}.panel-group-lists .panel-title a{padding:10px 15px;color:#434a54}.panel-group-lists .panel-title a:active,.panel-group-lists .panel-title a:focus,.panel-group-lists .panel-title a:hover{color:#aab2bd}.footer{padding:40px 0;background-color:#434a54}.footer-logo,.footer-nav{float:left;padding:0 20px;width:20%}@media (max-width:768px){.footer-logo{margin-bottom:20px}.footer-logo,.footer-nav{float:none;display:block;width:100%}}.footer-logo{margin-top:-5px;height:32px;line-height:32px}.footer-logo img{margin-right:10px}.footer-logo a{font-size:20px;font-weight:700;color:#fff}.footer-logo a:active,.footer-logo a:hover{text-decoration:none}.footer-nav .nav-title{margin-bottom:15px;color:#e6e9ed}.footer-nav .nav-item{line-height:28px}.footer-nav .nav-item>a{color:#aab2bd}.footer-nav .nav-item>a:active,.footer-nav .nav-item>a:hover{color:#ccd1d9;text-decoration:none}.footer-copyright{color:#aab2bd}.dropdown-menu{border:none;background-color:#434a54}.dropdown-menu .dropdown-header{padding:5px 20px;font-size:14px;font-weight:700;color:#aab2bd}.dropdown-menu li a{padding:5px 20px;color:#fff}.dropdown-menu .active a,.dropdown-menu .active a:focus,.dropdown-menu .active a:hover,.dropdown-menu li a:focus,.dropdown-menu li a:hover{color:#fff;background-color:#656d78;outline:0}.dropdown-menu .disabled a,.dropdown-menu .disabled a:focus,.dropdown-menu .disabled a:hover{color:#656d78;cursor:default}.dropdown-menu .divider{background-color:#656d78;border-bottom:none}.dropup .dropdown-menu{margin-bottom:0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 4px 4px;-moz-border-radius:0 4px 4px;border-radius:0 4px 4px}.dropdown-submenu:hover .dropdown-menu{display:block}.dropup .dropdown-submenu .dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:4px 4px 4px 0;-moz-border-radius:4px 4px 4px 0;border-radius:4px 4px 4px 0}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#fff;margin-top:5px;margin-right:-10px}.dropdown-default .dropdown-submenu>a:after{border-left-color:#434a54}.dropdown-submenu:hover a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left .dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:4px 0 4px 4px;-moz-border-radius:4px 0 4px 4px;border-radius:4px 0 4px 4px} \ No newline at end of file diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/img/check_flat/default.png b/shelfzilla/themes/bootflat/static/libs/bootflat/img/check_flat/default.png deleted file mode 100755 index 1aa817f..0000000 Binary files a/shelfzilla/themes/bootflat/static/libs/bootflat/img/check_flat/default.png and /dev/null differ diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/img/check_flat/default.psd b/shelfzilla/themes/bootflat/static/libs/bootflat/img/check_flat/default.psd deleted file mode 100755 index ff719f1..0000000 Binary files a/shelfzilla/themes/bootflat/static/libs/bootflat/img/check_flat/default.psd and /dev/null differ diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/js/icheck.min.js b/shelfzilla/themes/bootflat/static/libs/bootflat/js/icheck.min.js deleted file mode 100755 index 7752546..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/js/icheck.min.js +++ /dev/null @@ -1,11 +0,0 @@ -/*! iCheck v1.0.1 by Damir Sultanov, http://git.io/arlzeA, MIT Licensed */ -(function(f){function A(a,b,d){var c=a[0],g=/er/.test(d)?_indeterminate:/bl/.test(d)?n:k,e=d==_update?{checked:c[k],disabled:c[n],indeterminate:"true"==a.attr(_indeterminate)||"false"==a.attr(_determinate)}:c[g];if(/^(ch|di|in)/.test(d)&&!e)x(a,g);else if(/^(un|en|de)/.test(d)&&e)q(a,g);else if(d==_update)for(var f in e)e[f]?x(a,f,!0):q(a,f,!0);else if(!b||"toggle"==d){if(!b)a[_callback]("ifClicked");e?c[_type]!==r&&q(a,g):x(a,g)}}function x(a,b,d){var c=a[0],g=a.parent(),e=b==k,u=b==_indeterminate, -v=b==n,s=u?_determinate:e?y:"enabled",F=l(a,s+t(c[_type])),B=l(a,b+t(c[_type]));if(!0!==c[b]){if(!d&&b==k&&c[_type]==r&&c.name){var w=a.closest("form"),p='input[name="'+c.name+'"]',p=w.length?w.find(p):f(p);p.each(function(){this!==c&&f(this).data(m)&&q(f(this),b)})}u?(c[b]=!0,c[k]&&q(a,k,"force")):(d||(c[b]=!0),e&&c[_indeterminate]&&q(a,_indeterminate,!1));D(a,e,b,d)}c[n]&&l(a,_cursor,!0)&&g.find("."+C).css(_cursor,"default");g[_add](B||l(a,b)||"");g.attr("role")&&!u&&g.attr("aria-"+(v?n:k),"true"); -g[_remove](F||l(a,s)||"")}function q(a,b,d){var c=a[0],g=a.parent(),e=b==k,f=b==_indeterminate,m=b==n,s=f?_determinate:e?y:"enabled",q=l(a,s+t(c[_type])),r=l(a,b+t(c[_type]));if(!1!==c[b]){if(f||!d||"force"==d)c[b]=!1;D(a,e,s,d)}!c[n]&&l(a,_cursor,!0)&&g.find("."+C).css(_cursor,"pointer");g[_remove](r||l(a,b)||"");g.attr("role")&&!f&&g.attr("aria-"+(m?n:k),"false");g[_add](q||l(a,s)||"")}function E(a,b){if(a.data(m)){a.parent().html(a.attr("style",a.data(m).s||""));if(b)a[_callback](b);a.off(".i").unwrap(); -f(_label+'[for="'+a[0].id+'"]').add(a.closest(_label)).off(".i")}}function l(a,b,f){if(a.data(m))return a.data(m).o[b+(f?"":"Class")]}function t(a){return a.charAt(0).toUpperCase()+a.slice(1)}function D(a,b,f,c){if(!c){if(b)a[_callback]("ifToggled");a[_callback]("ifChanged")[_callback]("if"+t(f))}}var m="iCheck",C=m+"-helper",r="radio",k="checked",y="un"+k,n="disabled";_determinate="determinate";_indeterminate="in"+_determinate;_update="update";_type="type";_click="click";_touch="touchbegin.i touchend.i"; -_add="addClass";_remove="removeClass";_callback="trigger";_label="label";_cursor="cursor";_mobile=/ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent);f.fn[m]=function(a,b){var d='input[type="checkbox"], input[type="'+r+'"]',c=f(),g=function(a){a.each(function(){var a=f(this);c=a.is(d)?c.add(a):c.add(a.find(d))})};if(/^(check|uncheck|toggle|indeterminate|determinate|disable|enable|update|destroy)$/i.test(a))return a=a.toLowerCase(),g(this),c.each(function(){var c= -f(this);"destroy"==a?E(c,"ifDestroyed"):A(c,!0,a);f.isFunction(b)&&b()});if("object"!=typeof a&&a)return this;var e=f.extend({checkedClass:k,disabledClass:n,indeterminateClass:_indeterminate,labelHover:!0},a),l=e.handle,v=e.hoverClass||"hover",s=e.focusClass||"focus",t=e.activeClass||"active",B=!!e.labelHover,w=e.labelHoverClass||"hover",p=(""+e.increaseArea).replace("%","")|0;if("checkbox"==l||l==r)d='input[type="'+l+'"]';-50>p&&(p=-50);g(this);return c.each(function(){var a=f(this);E(a);var c=this, -b=c.id,g=-p+"%",d=100+2*p+"%",d={position:"absolute",top:g,left:g,display:"block",width:d,height:d,margin:0,padding:0,background:"#fff",border:0,opacity:0},g=_mobile?{position:"absolute",visibility:"hidden"}:p?d:{position:"absolute",opacity:0},l="checkbox"==c[_type]?e.checkboxClass||"icheckbox":e.radioClass||"i"+r,z=f(_label+'[for="'+b+'"]').add(a.closest(_label)),u=!!e.aria,y=m+"-"+Math.random().toString(36).substr(2,6),h='
")[_callback]("ifCreated").parent().append(e.insert);d=f('').css(d).appendTo(h);a.data(m,{o:e,s:a.attr("style")}).css(g);e.inheritClass&&h[_add](c.className||"");e.inheritID&&b&&h.attr("id",m+"-"+b);"static"==h.css("position")&&h.css("position","relative");A(a,!0,_update);if(z.length)z.on(_click+".i mouseover.i mouseout.i "+_touch,function(b){var d=b[_type],e=f(this);if(!c[n]){if(d==_click){if(f(b.target).is("a"))return; -A(a,!1,!0)}else B&&(/ut|nd/.test(d)?(h[_remove](v),e[_remove](w)):(h[_add](v),e[_add](w)));if(_mobile)b.stopPropagation();else return!1}});a.on(_click+".i focus.i blur.i keyup.i keydown.i keypress.i",function(b){var d=b[_type];b=b.keyCode;if(d==_click)return!1;if("keydown"==d&&32==b)return c[_type]==r&&c[k]||(c[k]?q(a,k):x(a,k)),!1;if("keyup"==d&&c[_type]==r)!c[k]&&x(a,k);else if(/us|ur/.test(d))h["blur"==d?_remove:_add](s)});d.on(_click+" mousedown mouseup mouseover mouseout "+_touch,function(b){var d= -b[_type],e=/wn|up/.test(d)?t:v;if(!c[n]){if(d==_click)A(a,!1,!0);else{if(/wn|er|in/.test(d))h[_add](e);else h[_remove](e+" "+t);if(z.length&&B&&e==v)z[/ut|nd/.test(d)?_remove:_add](w)}if(_mobile)b.stopPropagation();else return!1}})})}})(window.jQuery||window.Zepto); diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat.scss deleted file mode 100755 index f41eed9..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat.scss +++ /dev/null @@ -1,47 +0,0 @@ -@charset "UTF-8"; - -/* - * Copyright 2013 FLATHEMES. - * - * Bootflat, v2.0.0 - * A open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. - * http://http://bootflat.github.io/ - * - * By @flathemes - * - * Licensed under the MIT license. Please see LICENSE for more information. - * - */ - -@import - - // Variables, Extends, Mixins - "bootflat/global", - - // Base - "bootflat/typography", - "bootflat/button", - "bootflat/button_group", - "bootflat/label_badge", - "bootflat/tooltip", - "bootflat/popover", - "bootflat/progress", - "bootflat/breadcrumb", - "bootflat/pagination", - "bootflat/pager", - "bootflat/form", - "bootflat/checkbox_radio", - "bootflat/alert", - "bootflat/tab", - "bootflat/pill", - "bootflat/navbar", - "bootflat/list", - "bootflat/media_list", - "bootflat/modal", - "bootflat/well", - "bootflat/thumbnail", - "bootflat/jumbotron", - "bootflat/panel", - "bootflat/accordion", - "bootflat/footer", - "bootflat/dropdown"; diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_accordion.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_accordion.scss deleted file mode 100755 index 37bbc09..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_accordion.scss +++ /dev/null @@ -1,76 +0,0 @@ -// Variables -//------------------------------------------------------ -$accordion-border-color: $lightgray-dark !default; - -$accordion-panel-font-color: $darkgray-dark !default; -$accordion-panel-font-color-hover: $mediumgray-dark !default; -$accordion-panel-radius: 4px !default; - -$accordion-panel-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; - -$accordion-panel-background-color: $white !default; - - - -// Exports -//------------------------------------------------------ - -@include exports("accordion") { - - /** - * accordion - * -------------------------------------------------- - */ - .panel-group { - & .panel { - @include radius($type: border-radius, $value: 0); - background-color: transparent; - @include box-shadow($value: none); - } - & .panel+.panel { - margin-top: 0; - } - & .panel-heading { - padding: 0; - border-bottom-color: transparent; - } - & .panel-heading+.panel-collapse .panel-body { - padding: 15px 0; - border-top-color: transparent; - } - & .panel-title a { - padding: 10px 0; - display: block; - } - } - .panel-group-lists { - & .panel { - border-bottom: 1px solid $accordion-border-color; - background-color: $accordion-panel-background-color; - @include box-shadow($value: $accordion-panel-shadow); - } - & .panel:first-child { - @include radius($type: border-radius, $value: $accordion-panel-radius $accordion-panel-radius 0 0); - } - & .panel:last-child { - @include radius($type: border-radius, $value: 0 0 $accordion-panel-radius $accordion-panel-radius); - border-bottom: none; - } - & .panel-heading+.panel-collapse .panel-body { - padding: 15px; - border-top-color: $accordion-border-color; - } - & .panel-title a { - padding: 10px 15px; - color: $accordion-panel-font-color; - } - & .panel-title a:hover, - & .panel-title a:focus, - & .panel-title a:active { - color: $accordion-panel-font-color-hover; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_alert.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_alert.scss deleted file mode 100755 index ffecf85..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_alert.scss +++ /dev/null @@ -1,75 +0,0 @@ -// Variables -//------------------------------------------------------ -$alert-primary: $aqua-light !default; -$alert-success: $grass-light !default; -$alert-danger: $grapefruit-light !default; -$alert-warning: $sunflower-light !default; - -$alert-close-color: $black !default; - -$alert-link-color: $mediumgray-light !default; - - -// Exports -//------------------------------------------------------ - -@include exports("alert") { - - /** - * alert - * -------------------------------------------------- - */ - .alert { - - & h4 { - margin-bottom: 10px; - font-weight: bold; - } - - &-dismissable .close { - color: $alert-close-color; - } - - @at-root &-info { - background-color: lighten($alert-primary, 10%); - border: $alert-primary; - } - @at-root &-warning { - background-color: lighten($alert-warning, 10%); - border: $alert-warning; - } - @at-root &-danger { - background-color: lighten($alert-danger, 10%); - border: $alert-danger; - } - @at-root &-success { - background-color: lighten($alert-success, 10%); - border: $alert-success; - } - - @at-root & &-link { - cursor: pointer; - text-decoration: underline; - @include opacity($opacity: 65, $filter: true); - &:hover, - &:focus { - @include opacity($opacity: 45, $filter: true); - } - } - - @at-root & .btn-link, - & .btn-link:hover, - & .btn-link:focus { - color: $alert-close-color; - @include opacity($opacity: 65, $filter: true); - } - @at-root & .btn-link:focus, - & .btn-link:hover { - text-decoration: none; - @include opacity($opacity: 40, $filter: true); - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_breadcrumb.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_breadcrumb.scss deleted file mode 100755 index 034af87..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_breadcrumb.scss +++ /dev/null @@ -1,121 +0,0 @@ -// Variables -//------------------------------------------------------ -$breadcrumb-font-color: $darkgray-dark !default; -$breadcrumb-link-color: $aqua-dark !default; -$breadcrumb-background-color: $lightgray-dark !default; - -$breadcrumb-arrow-radius: 4px !default; -$breadcrumb-arrow-font-color: $white !default; -$breadcrumb-arrow-background-color: $aqua-dark !default; -$breadcrumb-arrow-background-color-hover: $aqua-light !default; - -// Exports -//------------------------------------------------------ -@include exports("breadcrumb") { - - /** - * breadcrumb - * -------------------------------------------------- - */ - .breadcrumb { - color: $breadcrumb-font-color; - background-color: $breadcrumb-background-color; - & > .active { - color: $breadcrumb-font-color; - } - & a { - color: $breadcrumb-link-color; - } - } - - .breadcrumb-arrow { - padding: 0; - list-style: none; - background-color: $breadcrumb-background-color; - height: 36px; - line-height: 36px; - - & li:first-child a { - @include radius($type: border-radius, $value: $breadcrumb-arrow-radius 0 0 $breadcrumb-arrow-radius); - } - & li, - & li a, - & li span{ - display: inline-block; - vertical-align: top; - } - & li:not(:first-child) { - margin-left: -5px; - } - & li + li:before { - padding: 0; - content: ""; - } - & li span { - padding: 0 10px; - } - & li a, - & li:not(:first-child) span { - padding: 0 10px 0 25px; - height: 35px; - line-height: 35px; - } - & li:first-child a { - padding: 0 10px; - } - & li a { - position: relative; - border: 1px solid $breadcrumb-arrow-background-color; - color: $breadcrumb-arrow-font-color; - background-color: $breadcrumb-arrow-background-color; - text-decoration: none; - } - & li:first-child a { - padding-left: 10px; - } - & li a:before, - & li a:after { - position: absolute; - top: 0; - content: ''; - width: 0; - height: 0; - border-top: 17px solid transparent; - border-bottom: 17px solid transparent; - } - & li a:before { - right: -10px; - border-left-width: 10px; - border-left-style: solid; - border-left-color: $breadcrumb-arrow-background-color; - z-index: 3; - } - & li a:after{ - right: -11px; - border-left: 10px solid darken($breadcrumb-arrow-background-color, 10%); - z-index: 2; - } - & li a:hover, - & li a:focus { - background-color: $breadcrumb-arrow-background-color-hover; - border: 1px solid $breadcrumb-arrow-background-color-hover; - } - & li a:hover:before, - & li a:focus:before { - border-left-color: $breadcrumb-arrow-background-color-hover; - } - & li a:active { - background-color: darken($breadcrumb-arrow-background-color, 10%); - border: 1px solid darken($breadcrumb-arrow-background-color, 10%); - } - & li a:active:before, - & li a:active:after { - border-left-color: darken($breadcrumb-arrow-background-color, 10%); - } - & li span { - color: $breadcrumb-font-color; - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_button.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_button.scss deleted file mode 100755 index 205f2e3..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_button.scss +++ /dev/null @@ -1,205 +0,0 @@ -// Variables -//------------------------------------------------------ -$button-normal: $mediumgray-dark !default; -$button-default: $white !default; -$button-primary: $aqua-dark !default; -$button-success: $grass-dark !default; -$button-danger: $grapefruit-dark !default; -$button-warning: $sunflower-dark !default; -$button-info: $mint-dark !default; - -$button-normal-hover: $mediumgray-light !default; -$button-default-hover: $button-default !default; -$button-primary-hover: $aqua-light !default; -$button-success-hover: $grass-light !default; -$button-danger-hover: $grapefruit-light !default; -$button-warning-hover: $sunflower-light !default; -$button-info-hover: $mint-light !default; - -$button-font-color-dark: $darkgray-dark !default; -$button-font-color-light: $white !default; - -$button-opacity: 45 !default; -$button-shaodw: inset 0 1px 2px rgba(0, 0, 0, .125) !default; - -// Exports -//------------------------------------------------------ - -@include exports("button") { - - /** - * button - * -------------------------------------------------- - */ - .btn { - color: $button-font-color-light; - - &, - &.disabled, - &[disabled] { - border-color: $button-normal; - background-color: $button-normal; - } - &:hover, - &:focus, - &:active, - &.active { - color: $button-font-color-light; - border-color: $button-normal-hover; - background-color: $button-normal-hover; - outline: none !important; - } - &:active, - &.active { - @include box-shadow($value: $button-shaodw); - } - &.disabled, - &[disabled] { - @include opacity($opacity: $button-opacity, $filter: true); - } - - @at-root &-link { - &, - &:hover, - &:focus, - &:active, - &.active, - &.disabled, - &[disabled] { - border-color: transparent; - background-color: transparent; - color: $button-primary; - @include box-shadow($value: none); - } - &:hover, - &:focus { - text-decoration: underline; - } - } - - @at-root &-default { - color: $button-font-color-dark; - border-color: $button-normal !important; - - &:hover, - &:focus, - &:active, - &.active { - border-color: $button-normal-hover; - background-color: $button-normal-hover; - } - &, - &.disabled, - &[disabled] { - background-color: $button-default; - } - } - @at-root .open .dropdown-toggle.btn-default { - border-color: $button-normal-hover; - background-color: $button-normal-hover; - } - - @at-root &-primary { - &, - &:active, - &.active, - &.disabled, - &[disabled] { - border-color: $button-primary; - background-color: $button-primary; - } - &:hover, - &:focus { - border-color: $button-primary-hover; - background-color: $button-primary-hover; - } - } - @at-root .open .dropdown-toggle.btn-primary { - border-color: $button-primary-hover; - background-color: $button-primary-hover; - } - - @at-root &-info { - &, - &:active, - &.active, - &.disabled, - &[disabled] { - border-color: $button-info; - background-color: $button-info; - } - &:hover, - &:focus { - border-color: $button-info-hover; - background-color: $button-info-hover; - } - } - @at-root .open .dropdown-toggle.btn-info { - border-color: $button-info-hover; - background-color: $button-info-hover; - } - - @at-root &-success { - &, - &:active, - &.active, - &.disabled, - &[disabled] { - border-color: $button-success; - background-color: $button-success; - } - &:hover, - &:focus { - border-color: $button-success-hover; - background-color: $button-success-hover; - } - } - @at-root .open .dropdown-toggle.btn-success { - border-color: $button-success-hover; - background-color: $button-success-hover; - } - - @at-root &-warning { - &, - &:active, - &.active, - &.disabled, - &[disabled] { - border-color: $button-warning; - background-color: $button-warning; - } - &:hover, - &:focus { - border-color: $button-warning-hover; - background-color: $button-warning-hover; - } - } - @at-root .open .dropdown-toggle.btn-warning { - border-color: $button-warning-hover; - background-color: $button-warning-hover; - } - - @at-root &-danger { - &, - &:active, - &.active, - &.disabled, - &[disabled], - .open .dropdown-toggle.btn { - border-color: $button-danger; - background-color: $button-danger; - } - &:hover, - &:focus { - border-color: $button-danger-hover; - background-color: $button-danger-hover; - } - } - @at-root .open .dropdown-toggle.btn-danger { - border-color: $button-danger-hover; - background-color: $button-danger-hover; - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_button_group.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_button_group.scss deleted file mode 100755 index 78e50c8..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_button_group.scss +++ /dev/null @@ -1,133 +0,0 @@ -// Exports -//------------------------------------------------------ - -@include exports("button-group") { - - /** - * button-group - * -------------------------------------------------- - */ - .btn-group { - @at-root &.open .dropdown-toggle { - @include box-shadow($value: inset 0 1px 2px rgba(0, 0, 0, .125)); - } - - & .btn { - border-left-color: darken($button-normal, 7%); - } - - @at-root &.open .btn-default.dropdown-toggle, - & .btn-default:focus, - & .btn-default:active, - & .btn-default.active { - color: $button-default; - } - - & .btn-primary, - & .btn-primary:focus, - & .btn-primary:active, - & .btn-primary.active { - border-left-color: darken($button-primary, 7%); - } - - & .btn-success, - & .btn-success:focus, - & .btn-success:active, - & .btn-success.active { - border-left-color: darken($button-success, 7%); - } - - & .btn-warning, - & .btn-warning:focus, - & .btn-warning:active, - & .btn-warning.active { - border-left-color: darken($button-warning, 12%); - } - - & .btn-danger, - & .btn-danger:focus, - & .btn-danger:active, - & .btn-danger.active { - border-left-color: darken($button-danger, 7%); - } - - & .btn-info, - & .btn-info:focus, - & .btn-info:active, - & .btn-info.active { - border-left-color: darken($button-info, 7%); - } - - & .btn:first-child, - & .btn-primary:first-child, - & .btn-success:first-child, - & .btn-warning:first-child, - & .btn-danger:first-child, - & .btn-info:first-child { - border-left-color: transparent; - } - } - - .btn-group-vertical { - & .btn, - & .btn-group .btn-primary { - border-top-color: darken($button-normal, 7%) !important; - } - - & .btn-primary, - & .btn-primary:focus, - & .btn-primary:active, - & .btn-primary.active, - & .btn-group .btn-primary { - border-top-color: darken($button-primary, 7%) !important; - } - - & .btn-success, - & .btn-success:focus, - & .btn-success:active, - & .btn-success.active, - & .btn-group .btn-success { - border-top-color: darken($button-success, 7%) !important; - } - - & .btn-warning, - & .btn-warning:focus, - & .btn-warning:active, - & .btn-warning.active, - & .btn-group .btn-warning { - border-top-color: darken($button-warning, 12%) !important; - } - - & .btn-danger, - & .btn-danger:focus, - & .btn-danger:active, - & .btn-danger.active, - & .btn-group .btn-danger { - border-top-color: darken($button-danger, 7%) !important; - } - - & .btn-info, - & .btn-info:focus, - & .btn-info:active, - & .btn-info.active, - & .btn-group .btn-info { - border-top-color: darken($button-info, 7%) !important; - } - - & .btn:not(.btn-default):first-child, - & .btn-primary:first-child, - & .btn-success:first-child, - & .btn-warning:first-child, - & .btn-danger:first-child, - & .btn-info:first-child { - border-top: none; - } - } - -} - - - - - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_checkbox_radio.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_checkbox_radio.scss deleted file mode 100755 index 2b9e243..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_checkbox_radio.scss +++ /dev/null @@ -1,62 +0,0 @@ -// Variables -//------------------------------------------------------ -$img-src: "../bootflat/img/check_flat/default.png" !default; - -// Exports -//------------------------------------------------------ - -@include exports("checkbox-radio") { - - /** - * checkbox and radio - * -------------------------------------------------- - */ - .checkbox, .radio { - margin-top: 0; - padding-left: 0; - } - .icheckbox_flat, - .iradio_flat { - display: inline-block; - *display: inline; - vertical-align: middle; - margin: 0; - padding: 0 !important; - width: 20px; - height: 20px; - background: url($img-src) no-repeat; - border: none; - cursor: pointer; - } - - .icheckbox_flat { - background-position: 0 0; - - &.checked { - background-position: -22px 0; - } - &.disabled { - background-position: -44px 0; - cursor: default; - } - &.checked.disabled { - background-position: -66px 0; - } - } - - .iradio_flat { - background-position: -88px 0; - - &.checked { - background-position: -110px 0; - } - &.disabled { - background-position: -132px 0; - cursor: default; - } - &.checked.disabled { - background-position: -154px 0; - } - } - -} diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_dropdown.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_dropdown.scss deleted file mode 100755 index b2ce59e..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_dropdown.scss +++ /dev/null @@ -1,122 +0,0 @@ -// Variables -//------------------------------------------------------ -$dropdown-background-color: $darkgray-dark !default; -$dropdown-background-color-hover: $darkgray-light !default; - -$dropdown-normal: $mediumgray-dark !default; -$dropdown-default: $white !default; - -$dropdown-padding: 5px 20px !default; - -$dropdown-radius: 4px !default; - -$dropdown-font-size: 14px !default; -$dropdown-font-color-dark: $darkgray-dark !default; -$dropdown-font-color-light: $white !default; -$dropdown-font-weight: 700 !default; - -// Exports -//------------------------------------------------------ - -@include exports("dropdown") { - - /** - * dropdown-menu - * -------------------------------------------------- - */ - .dropdown-menu { - border: none; - background-color: $dropdown-background-color; - - & .dropdown-header { - padding: $dropdown-padding; - font-size: $dropdown-font-size; - font-weight: $dropdown-font-weight; - color: $dropdown-normal; - } - - & li a { - padding: $dropdown-padding; - color: $dropdown-font-color-light; - } - & li a:hover, - & li a:focus, - & .active a, - & .active a:hover, - & .active a:focus{ - color: $dropdown-font-color-light; - background-color: $dropdown-background-color-hover; - outline: none; - } - & .disabled a, - & .disabled a:hover, - & .disabled a:focus { - color: $dropdown-background-color-hover; - cursor: default; - } - & .divider { - background-color: $dropdown-background-color-hover; - border-bottom: none; - } - - @at-root .dropup & { - margin-bottom: 0; - @include radius($type: border-radius, $value: $dropdown-radius $dropdown-radius 0 0); - } - } - /** - * dropdown-submenu - * -------------------------------------------------- - */ - .dropdown-submenu { - position: relative; - - & .dropdown-menu { - top: 0; - left: 100%; - margin-top: -6px; - margin-left: -1px; - @include radius($type: border-radius, $value: 0 4px 4px 4px); - } - &:hover .dropdown-menu { - display: block; - } - .dropup & .dropdown-menu { - top: auto; - bottom: 0; - margin-top: 0; - margin-bottom: -2px; - @include radius($type: border-radius, $value: 4px 4px 4px 0); - } - & > a:after { - display: block; - content: " "; - float: right; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; - border-width: 5px 0 5px 5px; - border-left-color: $dropdown-default; - margin-top: 5px; - margin-right: -10px; - } - @at-root .dropdown-default & > a:after { - border-left-color: $dropdown-font-color-dark; - } - &:hover a:after { - border-left-color: $dropdown-default; - } - &.pull-left { - float: none; - } - &.pull-left .dropdown-menu { - left: -100%; - margin-left: 10px; - @include radius($type: border-radius, $value: 4px 0 4px 4px); - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_footer.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_footer.scss deleted file mode 100755 index 478721c..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_footer.scss +++ /dev/null @@ -1,82 +0,0 @@ -// Variables -//------------------------------------------------------ -$footer-background-color: $darkgray-dark !default; -$footer-menu-title-color: $lightgray-dark !default; -$footer-menu-item-color: $mediumgray-dark !default; -$footer-menu-item-color-hover: $mediumgray-light !default; -$footer-logo-color: $white !default; - - - -// Exports -//------------------------------------------------------ - -@include exports("footer") { - - /** - * footer - * -------------------------------------------------- - */ - - .footer { - padding: 40px 0; - background-color: $footer-background-color; - - &-logo, - &-nav { - float: left; - padding: 0 20px; - width: 20%; - } - @media (max-width: 768px) { - &-logo { - margin-bottom: 20px; - } - &-logo, - &-nav { - float: none; - display: block; - width: 100%; - } - } - &-logo { - margin-top: -5px; - height: 32px; - line-height: 32px; - - & img { - margin-right: 10px; - } - & a { - font-size: 20px; - font-weight: bold; - color: $footer-logo-color; - } - & a:hover, - & a:active { - text-decoration: none; - } - } - &-nav .nav-title { - margin-bottom: 15px; - color: $footer-menu-title-color; - } - &-nav .nav-item { - line-height: 28px; - & > a { - color: $footer-menu-item-color; - } - & > a:hover, - & > a:active { - color: $footer-menu-item-color-hover; - text-decoration: none; - } - } - &-copyright { - color: $footer-menu-item-color; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_form.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_form.scss deleted file mode 100755 index 4455561..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_form.scss +++ /dev/null @@ -1,212 +0,0 @@ -// Variables -//------------------------------------------------------ -$form-normal: $mediumgray-dark !default; -$form-default: $white !default; -$form-primary: $aqua-dark !default; -$form-success: $grass-dark !default; -$form-danger: $grapefruit-dark !default; -$form-warning: $sunflower-dark !default; -$form-info: $mint-dark !default; - -$message-success: $grass-dark !default; -$message-danger: $grapefruit-dark !default; -$message-warning: $sunflower-dark !default; - -$form-font-color: $darkgray-dark !default; -$form-placeholder-font-color: $lightgray-dark !default; - -$form-disabled-color: $lightgray-dark !default; - -$search-query-value: 17px !default; - -$search-icon-width: 30px !default; -$search-icon-line-height: 30px !default; - -// Exports -//------------------------------------------------------ - -@include exports("form") { - - /** - * form - * -------------------------------------------------- - */ - .form-control { - color: $form-font-color; - border-color: $form-normal; - - &, - &:focus { - @include box-shadow($value: none); - } - &:focus { - border-color: $form-primary; - } - &::-moz-placeholder, - &:-ms-input-placeholder, - &::-webkit-input-placeholder { - color: $form-placeholder-font-color; - } - - &.disabled, - &[disabled] { - border-color: $form-disabled-color; - background-color: $form-disabled-color; - } - } - - .input-group-btn { - & .btn + .btn { - border-width: 1px; - border-style: solid; - border-color: darken($form-normal, 7%); - } - & .btn + .btn.btn-default { - border-color: darken($form-default, 7%); - } - & .btn + .btn.btn-primary { - border-color: darken($form-primary, 7%); - } - & .btn + .btn.btn-info { - border-color: darken($form-info, 7%); - } - & .btn + .btn.btn-success { - border-color: darken($form-success, 7%); - } - & .btn + .btn.btn-warning { - border-color: darken($form-warning, 7%); - } - & .btn + .btn.btn-danger { - border-color: darken($form-danger, 7%); - } - } - - .input-group-addon { - background-color: $form-normal; - border-color: darken($form-normal, 7%); - color: $form-default; - - & .radio, - & .checkbox { - margin: -3px 0 -4px !important; - } - } - - .form-search { - & .search-query, - & .search-query:first-child, - & .search-query:last-child { - padding: 0 $search-query-value; - @include radius($type: border-radius, $value: $search-query-value); - } - @at-root .input-group .form-control:last-child { - // padding: 0 $search-query-value 0 10px; - @include radius($type: border-top-left-radius, $value: 0); - @include radius($type: border-bottom-left-radius, $value: 0); - } - @at-root .input-group .form-control:first-child { - @include radius($type: border-top-right-radius, $value: 0); - @include radius($type: border-bottom-right-radius, $value: 0); - } - & .btn { - @include radius($type: border-radius, $value: $search-query-value); - } - } - - .search-only { - position: relative; - & .search-icon { - position: absolute; - top: 2px; - left: $search-query-value / 2; - width: $search-icon-width; - line-height: $search-icon-line-height; - text-align: center; - font-size: $search-query-value; - color: $form-placeholder-font-color; - z-index: 20; - } - & .form-control:last-child { - padding-left: $search-icon-width + 10; - } - } - - .has-success { - & .help-block, - & .control-label, - & .radio, - & .checkbox, - & .radio-inline, - & .checkbox-inline { - color: $message-success; - } - & .form-control { - border-color: $message-success; - @include box-shadow($value: none); - } - & .form-control:focus { - border-color: $message-success; - @include box-shadow($value: none); - } - & .input-group-addon { - background-color: $message-success; - border-color: $message-success; - } - & .form-control-feedback { - color: $message-success; - } - } - .has-warning { - & .help-block, - & .control-label, - & .radio, - & .checkbox, - & .radio-inline, - & .checkbox-inline { - color: $message-warning; - } - & .form-control { - border-color: $message-warning; - @include box-shadow($value: none); - } - & .form-control:focus { - border-color: $message-warning; - @include box-shadow($value: none); - } - & .input-group-addon { - background-color: $message-warning; - border-color: $message-warning; - } - & .form-control-feedback { - color: $message-warning; - } - } - .has-error { - & .help-block, - & .control-label, - & .radio, - & .checkbox, - & .radio-inline, - & .checkbox-inline { - color: $message-danger; - } - & .form-control { - border-color: $message-danger; - @include box-shadow($value: none); - } - & .form-control:focus { - border-color: $message-danger; - @include box-shadow($value: none); - } - & .input-group-addon { - background-color: $message-danger; - border-color: $message-danger; - } - & .form-control-feedback { - color: $message-danger; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_global.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_global.scss deleted file mode 100755 index d609e25..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_global.scss +++ /dev/null @@ -1,239 +0,0 @@ -// Global Variables -//------------------------------------------------------ -$modules: () !default; - -$experimental: true !default; - -// prefix elements -$prefix-webkit: true !global; -$prefix-moz: true !global; -$prefix-spec: true !global; - -// color elements -$white: #FFF !default; -$black: #000 !default; - -$bluejeans-dark: #4A89DC !default; -$bluejeans-light: #5D9CEC !default; - -$aqua-dark: #3BAFDA !default; -$aqua-light: #4FC1E9 !default; - -$mint-dark: #37BC9B !default; -$mint-light: #48CFAD !default; - -$grass-dark: #8CC152 !default; -$grass-light: #A0D468 !default; - -$sunflower-dark: #F6BB42 !default; -$sunflower-light: #FFCE54 !default; - -$bittersweet-dark: #E9573F !default; -$bittersweet-light: #FC6E51 !default; - -$grapefruit-dark: #DA4453 !default; -$grapefruit-light: #ED5565 !default; - -$lavender-dark: #967ADC !default; -$lavender-light: #AC92EC !default; - -$pinkrose-dark: #D770AD !default; -$pinkrose-light: #EC87C0 !default; - -$lightgray-dark: #E6E9ED !default; -$lightgray-light: #F5F7FA !default; - -$mediumgray-dark: #AAB2BD !default; -$mediumgray-light: #CCD1D9 !default; - -$darkgray-dark: #434A54 !default; -$darkgray-light: #656D78 !default; - -// Global Mixins -//------------------------------------------------------ - -// We use this to loading scss files -@mixin exports($name) { - @if index($modules, $name) { - } @else { - $modules: append($modules, $name); - @content; - } -} - -// We use this to do set opacity -@mixin opacity($opacity:50, $filter: true) { - opacity: $opacity / 100; - @if $filter { - filter: alpha(opacity=$opacity); - } -} - -// We use this to ellipsis text -@mixin ellipsis($width: 100%) { - display: inline-block; - max-width: $width; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -// We use this to add across browser prefixes -@mixin prefixer($property, $value, $prefixes: webkit moz spec) { - @if $experimental { - @each $prefix in $prefixes { - @if $prefix != spec { - @if $property == border-top-left-radius and $prefix == moz { - @if $prefix-moz { - -moz-border-radius-topleft: $value; - } - } @else if $property == border-top-right-radius and $prefix == moz { - @if $prefix-moz { - -moz-border-radius-topright: $value; - } - } @else if $property == border-bottom-right-radius and $prefix == moz { - @if $prefix-moz { - -moz-border-radius-bottomright: $value; - } - } @else if $property == border-bottom-left-radius and $prefix == moz { - @if $prefix-moz { - -moz-border-radius-bottomleft: $value; - } - } @else { - @if $prefix == webkit { - @if $prefix-webkit { - -webkit-#{$property}: $value; - } - } - @if $prefix == moz { - @if $prefix-moz { - -moz-#{$property}: $value; - } - } - } - } @else { - @if $prefix-spec { - #{$property}: $value; - } - } - } - } -} - -// We use this to add box-sizing across browser prefixes -@mixin box-sizing($value: border-box) { - @include prefixer($property: box-sizing, $value: $value, $prefixes: webkit moz spec); -} - -// We use this to control border radius. -@mixin radius($type: border-radius, $value: $global-radius) { - @include prefixer($property: $type, $value: $value, $prefixes: webkit moz spec); -} - -// We use this to control box shadow. -@mixin box-shadow($value) { - @include prefixer($property: box-shadow, $value: $value, $prefixes: webkit moz spec); -} -// We use this to creat animation effect. -// Examples: -// @include keyframes(move-the-object) { -// 0% { left: 100px; } -// 100% { left: 200px; } -// } -// .object-to-animate { -// @include animation(move-the-object .5s 1); -// } -@mixin animation ($value...) { - @include prefixer($property: animation, $value: $value, $prefixes: webkit moz spec); -} -// Individual Animation Properties -@mixin animation-name ($value...) { - @include prefixer($property: animation-name, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-duration ($value...) { - @include prefixer($property: animation-duration, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-timing-function ($value...) { - // ease | linear | ease-in | ease-out | ease-in-out - @include prefixer($property: animation-timing-function, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-iteration-count ($value...) { - // infinite | - @include prefixer($property: animation-iteration-count, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-direction ($value...) { - @include prefixer($property: animation-direction, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-play-state ($value...) { - // running | paused - @include prefixer($property: animation-play-state, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-delay ($value...) { - @include prefixer($property: animation-delay, $value: $value, $prefixes: webkit moz spec); -} -@mixin animation-fill-mode ($value...) { - // none | forwards | backwards | both - @include prefixer($property: animation-fill-mode, $value: $value, $prefixes: webkit moz spec); -} -@mixin keyframes($name) { - $original-prefix-webkit: $prefix-webkit; - $original-prefix-moz: $prefix-moz; - $original-prefix-spec: $prefix-spec; - - @if $original-prefix-webkit { - @include disable-prefix(); - $prefix-webkit: true !global; - @-webkit-keyframes #{$name} { - @content; - } - } - @if $original-prefix-moz { - @include disable-prefix(); - $prefix-moz: true !global; - @-moz-keyframes #{$name} { - @content; - } - } - @if $original-prefix-spec { - @include disable-prefix(); - $prefix-spec: true !global; - @keyframes #{$name} { - @content; - } - } - - $prefix-webkit: $original-prefix-webkit !global; - $prefix-moz: $original-prefix-moz !global; - $prefix-spec: $original-prefix-spec !global; -} - -// We use this to set transform. -@mixin transform($value: none) { - // none | - @include prefixer($property: transform, $value: $value, $prefixes: webkit moz spec); -} - -@mixin transform-origin($value: 50%) { - // x-axis - left | center | right | length | % - // y-axis - top | center | bottom | length | % - // z-axis - length - @include prefixer($property: transform-origin, $value: $value, $prefixes: webkit moz spec); -} - -@mixin transform-style ($value: flat) { - @include prefixer($property: transform-style, $value: $value, $prefixes: webkit moz spec); -} - -// We use this to set transition. -// example: @include transition (all 2s ease-in-out); -// @include transition (opacity 1s ease-in 2s, width 2s ease-out); -// @include transition-property (transform, opacity); - -@mixin transition ($value...) { - @if length($value) >= 1 { - @include prefixer($property: transition, $value: $value, $prefixes: webkit moz spec); - } @else { - $value: all 0.15s ease-out 0s; - @include prefixer($property: transition, $value: $value, $prefixes: webkit moz spec); - } -} \ No newline at end of file diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_jumbotron.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_jumbotron.scss deleted file mode 100755 index 53570c4..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_jumbotron.scss +++ /dev/null @@ -1,80 +0,0 @@ -// Variables -//------------------------------------------------------ -$jumbotron-font-color: $darkgray-dark !default; - -$jumbotron-background-color: $white !default; - -$jumbotron-radius: 4px; -$jumbotron-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; - - -// Exports -//------------------------------------------------------ - -@include exports("jumbotron") { - - /** - * jumbotron - * -------------------------------------------------- - */ - .jumbotron { - margin-bottom: 20px; - padding: 0; - @include radius($type: border-radius, $value: $jumbotron-radius); - background-color: $jumbotron-background-color; - @include box-shadow($value: $jumbotron-shadow); - - @at-root .container & { - @include radius($type: border-radius, $value: $jumbotron-radius); - } - - & > &-photo img { - @include radius($type: border-radius, $value: $jumbotron-radius $jumbotron-radius 0 0); - width: 100%; - } - - & &-contents { - padding: 20px; - color: $jumbotron-font-color; - } - & .carousel, - & .carousel-inner, - & .carousel-inner > .item.active img { - @include radius($type: border-radius, $value: $jumbotron-radius $jumbotron-radius 0 0); - } - & .carousel-control.left { - @include radius($type: border-radius, $value: $jumbotron-radius 0 0 0); - } - & .carousel-control.right { - @include radius($type: border-radius, $value: 0 $jumbotron-radius 0 0); - } - - & h1, & .h1, - & h2, & .h2 { - font-weight: 400; - } - - & h1, & .h1 { - font-size: 28px; - } - & h2, & .h2 { - font-size: 24px; - } - & p { - font-size: 14px; - } - - @media screen and (min-width: 768px) { - &, - .container & { - padding: 0; - } - & h1, - & .h1 { - font-size: 28px; - } - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_label_badge.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_label_badge.scss deleted file mode 100755 index 95c8dd1..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_label_badge.scss +++ /dev/null @@ -1,65 +0,0 @@ -// Variables -//------------------------------------------------------ -$label-normal: $mediumgray-dark !default; -$label-default: $white !default; -$label-primary: $aqua-dark !default; -$label-success: $grass-dark !default; -$label-danger: $grapefruit-dark !default; -$label-warning: $sunflower-dark !default; -$label-info: $mint-dark !default; - -$label-default-font-color: $darkgray-dark !default; - -// Exports -//------------------------------------------------------ - -@include exports("label-badge") { - - /** - * labels and badges - * -------------------------------------------------- - */ - .label, - .badge { - background-color: $label-normal; - } - - .label-default, - .badge-default { - border: 1px solid $button-normal; - background-color: $label-default; - color: $label-default-font-color; - } - - .label-primary, - .badge-primary { - border-color: $label-primary; - background-color: $label-primary; - } - - .label-success, - .badge-success { - border-color: $label-success; - background-color: $label-success; - } - - .label-danger, - .badge-danger { - border-color: $label-danger; - background-color: $label-danger; - } - - .label-warning, - .badge-warning { - border-color: $label-warning; - background-color: $label-warning; - } - - .label-info, - .badge-info { - border-color: $label-info; - background-color: $label-info; - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_list.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_list.scss deleted file mode 100755 index 19ae5ba..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_list.scss +++ /dev/null @@ -1,188 +0,0 @@ -// Variables -//------------------------------------------------------ -$list-primary: $aqua-light !default; -$list-info: $mint-light !default; -$list-warning: $sunflower-light !default; -$list-success: $grass-light !default; -$list-danger: $grapefruit-light !default; - -$list-primary-hover: $aqua-dark !default; -$list-info-hover: $mint-dark !default; -$list-warning-hover: $sunflower-dark !default; -$list-success-hover: $grass-dark !default; -$list-danger-hover: $grapefruit-dark !default; - -$list-border-color: $lightgray-dark !default; -$list-background-color: $white !default; -$list-font-color: $darkgray-dark !default; -$list-font-color-hover: $mediumgray-dark !default; - -$list-item-background-color: $lightgray-dark !default; - -$list-radius: 4px !default; -$list-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; - - - -// Exports -//------------------------------------------------------ - -@include exports("list") { - - /** - * list - * -------------------------------------------------- - */ - .list-group { - @include radius($type: border-radius, $value: $list-radius); - @include box-shadow($value: $list-shadow); - @at-root &-item { - border-color: transparent; - border-top-color: $list-border-color; - &:first-child { - border-top: none; - } - @at-root &-heading { - color: $list-font-color; - } - } - } - - - a.list-group-item { - color: $list-font-color; - - & .list-group-item-heading { - font-size: 16px; - color: $list-font-color; - } - - &:hover, - &:focus { - background-color: $list-item-background-color; - } - &.active, - &.active:hover, - &.active:focus { - background-color: $list-primary; - border-color: $list-primary; - } - &.active .list-group-item-text, - &.active:hover .list-group-item-text, - &.active:focus .list-group-item-text { - color: $list-background-color; - } - } - .list-group-item-primary { - color: darken($list-primary, 10%); - border-color: $list-primary-hover transparent transparent transparent; - background-color: $list-primary; - &:first-child { - border-color: transparent; - } - @at-root a.list-group-item-primary { - color: darken($list-primary, 30%); - &:hover, - &:focus { - color: $list-background-color; - background-color: $list-primary-hover; - } - &.active, - &:hover, - &:focus { - background-color: $list-primary-hover; - border-color: $list-primary transparent transparent transparent; - } - } - } - .list-group-item-success { - color: darken($list-success, 10%); - border-color: $list-success-hover transparent transparent transparent; - background-color: $list-success; - &:first-child { - border-color: transparent; - } - @at-root a.list-group-item-success { - color: darken($list-success, 30%); - &:hover, - &:focus { - color: $list-background-color; - background-color: $list-success-hover; - } - &.active, - &:hover, - &:focus { - background-color: $list-success-hover; - border-color: $list-success transparent transparent transparent; - } - } - } - .list-group-item-warning { - color: darken($list-warning, 10%); - border-color: $list-warning-hover transparent transparent transparent; - background-color: $list-warning; - &:first-child { - border-color: transparent; - } - @at-root a.list-group-item-warning { - color: darken($list-warning, 40%); - &:hover, - &:focus { - color: $list-background-color; - background-color: $list-warning-hover; - } - &.active, - &:hover, - &:focus { - background-color: $list-warning-hover; - border-color: $list-warning transparent transparent transparent; - } - } - } - .list-group-item-info { - color: darken($list-info, 10%); - border-color: $list-info-hover transparent transparent transparent; - background-color: $list-info; - &:first-child { - border-color: transparent; - } - @at-root a.list-group-item-info { - color: darken($list-info, 30%); - &:hover, - &:focus { - color: $list-background-color; - background-color: $list-info-hover; - } - &.active, - &:hover, - &:focus { - background-color: $list-info-hover; - border-color: $list-info transparent transparent transparent; - } - } - } - .list-group-item-danger { - color: darken($list-danger, 10%); - border-color: $list-danger-hover transparent transparent transparent; - background-color: $list-danger; - &:first-child { - border-color: transparent; - } - @at-root a.list-group-item-danger { - color: darken($list-danger, 30%); - &:hover, - &:focus { - color: $list-background-color; - background-color: $list-danger-hover; - } - &.active, - &:hover, - &:focus { - background-color: $list-danger-hover; - border-color: $list-danger transparent transparent transparent; - } - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_media_list.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_media_list.scss deleted file mode 100755 index bcadb84..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_media_list.scss +++ /dev/null @@ -1,26 +0,0 @@ -// Variables -//------------------------------------------------------ -$media-list-font-color-head: $darkgray-dark !default; -$media-list-font-color-body: $mediumgray-dark !default; - - -// Exports -//------------------------------------------------------ - -@include exports("media-list") { - - /** - * media list - * -------------------------------------------------- - */ - .media-list { - color: $media-list-font-color-body; - @at-root .media-heading { - font-size: 14px; - color: $media-list-font-color-head; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_modal.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_modal.scss deleted file mode 100755 index 8437b34..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_modal.scss +++ /dev/null @@ -1,39 +0,0 @@ -// Variables -//------------------------------------------------------ -$modal-font-color: $darkgray-dark !default; - -$modal-radius: 4px; -$modal-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; - - -// Exports -//------------------------------------------------------ - -@include exports("modal") { - - /** - * modal - * -------------------------------------------------- - */ - - .modal { - &-content { - border: none; - @include radius($type: border-radius, $value: $modal-radius); - color: $modal-font-color; - @include box-shadow($value: $modal-shadow); - } - &-header { - border-bottom: none; - } - &-body { - padding: 0 15px; - } - &-footer { - border-top: none; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_navbar.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_navbar.scss deleted file mode 100755 index c88f78b..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_navbar.scss +++ /dev/null @@ -1,213 +0,0 @@ -// Variables -//------------------------------------------------------ -$navbar-background-color: $mint-dark !default; -$navbar-background-color-active: $mint-light !default; - -$navbar-font-color: $white !default; -$navbar-item-background-color-hover: $navbar-background-color-active !default; - -$navbar-inverse-background-color: $black !default; - -// Exports -//------------------------------------------------------ - -@include exports("navbar") { - - /** - * navbar - * -------------------------------------------------- - */ - - .navbar-default { - & { - background-color: $navbar-background-color; - border-color: $navbar-background-color; - } - & .navbar-brand, - & .navbar-link, - & .btn-link { - color: darken($navbar-background-color, 15%); - } - & .navbar-brand:hover, - & .navbar-brand:focus, - & .navbar-link:hover, - & .btn-link:hover, - & .btn-link:focus { - color: $navbar-font-color; - background-color: transparent; - } - & .navbar-text, - & .navbar-nav > li > a { - color: darken($navbar-background-color, 15%); - } - & .navbar-nav > li > a:hover, - & .navbar-nav > li > a:focus { - color: $navbar-font-color; - } - & .navbar-nav > .active > a, - & .navbar-nav > .active > a:hover, - & .navbar-nav > .active > a:focus { - color: $navbar-font-color; - background-color: $navbar-background-color-active; - } - & .btn-link[disabled]:hover, - fieldset[disabled] & .btn-link:hover, - & .btn-link[disabled]:focus, - fieldset[disabled] & .btn-link:focus, - & .navbar-nav > .disabled > a, - & .navbar-nav > .disabled > a:hover, - & .navbar-nav > .disabled > a:focus { - color: darken($navbar-background-color, 8%); - background-color: transparent; - } - & .navbar-toggle { - border-color: darken($navbar-background-color, 15%); - background-color: darken($navbar-background-color, 15%); - } - & .navbar-toggle:hover, - & .navbar-toggle:focus { - border-color: darken($navbar-background-color, 10%); - background-color: darken($navbar-background-color, 10%); - } - & .navbar-toggle .icon-bar { - background-color: $navbar-background-color; - } - & .navbar-collapse, - & .navbar-form { - border-color: $navbar-item-background-color-hover; - } - & .navbar-nav > .open > a, - & .navbar-nav > .open > a:hover, - & .navbar-nav > .open > a:focus { - color: $navbar-font-color; - background-color: $navbar-background-color; - } - - @media (max-width: 767px) { - & .navbar-nav > li > a:hover, - & .navbar-nav > li > a:focus { - background-color: $navbar-background-color-active; - } - & .navbar-nav .open .dropdown-menu > .divider { - background-color: $navbar-item-background-color-hover; - } - & .navbar-nav .open .dropdown-menu > li > a { - color: darken($navbar-background-color, 15%);; - } - & .navbar-nav .open .dropdown-menu > li > a:hover, - & .navbar-nav .open .dropdown-menu > li > a:focus, - & .navbar-nav .open .dropdown-menu > .active > a, - & .navbar-nav .open .dropdown-menu > .active > a:hover, - & .navbar-nav .open .dropdown-menu > .active > a:focus { - color: $navbar-font-color; - background-color: $navbar-item-background-color-hover; - } - & .navbar-nav .open .dropdown-menu > .dropdown-header { - color: darken($navbar-background-color, 15%); - } - & .navbar-nav .open .dropdown-menu > .disabled > a, - & .navbar-nav .open .dropdown-menu > .disabled > a:hover, - & .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: darken($navbar-background-color, 10%); - } - } - } - - .navbar-inverse { - & { - background-color: lighten($navbar-inverse-background-color, 20%); - border-color: lighten($navbar-inverse-background-color, 20%); - } - & .navbar-brand, - & .navbar-link, - & .btn-link { - color: lighten($navbar-inverse-background-color, 55%); - } - & .navbar-brand:hover, - & .navbar-brand:focus, - & .navbar-link:hover, - & .btn-link:hover, - & .btn-link:focus { - color: $navbar-font-color; - background-color: transparent; - } - & .navbar-text, - & .navbar-nav > li > a { - color: lighten($navbar-inverse-background-color, 55%); - } - & .navbar-nav > li > a:hover, - & .navbar-nav > li > a:focus { - color: $navbar-font-color; - } - & .navbar-nav > .active > a, - & .navbar-nav > .active > a:hover, - & .navbar-nav > .active > a:focus { - color: $navbar-font-color; - background-color: $navbar-inverse-background-color; - } - & .btn-link[disabled]:hover, - fieldset[disabled] & .btn-link:hover, - & .btn-link[disabled]:focus, - fieldset[disabled] & .btn-link:focus, - & .navbar-nav > .disabled > a, - & .navbar-nav > .disabled > a:hover, - & .navbar-nav > .disabled > a:focus { - color: lighten($navbar-inverse-background-color, 40%); - background-color: transparent; - } - & .navbar-toggle { - border-color: $navbar-inverse-background-color; - background-color: $navbar-inverse-background-color; - } - & .navbar-toggle:hover, - & .navbar-toggle:focus { - border-color: lighten($navbar-inverse-background-color, 10%); - background-color: lighten($navbar-inverse-background-color, 10%); - } - & .navbar-toggle .icon-bar { - background-color: lighten($navbar-inverse-background-color, 55%); - } - & .navbar-collapse, - & .navbar-form { - border-color: $navbar-inverse-background-color; - } - & .navbar-nav > .open > a, - & .navbar-nav > .open > a:hover, - & .navbar-nav > .open > a:focus { - color: $navbar-font-color; - background-color: $navbar-inverse-background-color; - } - - @media (max-width: 767px) { - & .navbar-nav > li > a:hover, - & .navbar-nav > li > a:focus { - background-color: $navbar-inverse-background-color; - } - & .navbar-nav .open .dropdown-menu > .divider { - background-color: $navbar-inverse-background-color; - } - & .navbar-nav .open .dropdown-menu > li > a { - color: lighten($navbar-inverse-background-color, 55%); - } - & .navbar-nav .open .dropdown-menu > li > a:hover, - & .navbar-nav .open .dropdown-menu > li > a:focus, - & .navbar-nav .open .dropdown-menu > .active > a, - & .navbar-nav .open .dropdown-menu > .active > a:hover, - & .navbar-nav .open .dropdown-menu > .active > a:focus { - color: $navbar-font-color; - background-color: $navbar-inverse-background-color; - } - & .navbar-nav .open .dropdown-menu > .dropdown-header { - color: lighten($navbar-inverse-background-color, 75%); - } - & .navbar-nav .open .dropdown-menu > .disabled > a, - & .navbar-nav .open .dropdown-menu > .disabled > a:hover, - & .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: lighten($navbar-inverse-background-color, 40%); - } - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pager.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pager.scss deleted file mode 100755 index ee15b12..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pager.scss +++ /dev/null @@ -1,42 +0,0 @@ -// Variables -//------------------------------------------------------ -$paper-background-color: $grass-dark !default; -$paper-background-color-hover: $grass-light !default; - -$paper-font-color: $white !default; -$paper-font-color-disabled: $lightgray-dark !default; - -// Exports -//------------------------------------------------------ - -@include exports("pager") { - - /** - * pager - * -------------------------------------------------- - */ - .pager { - - & li > a, - & li > span { - color: $paper-font-color; - background-color: $paper-background-color; - border-color: $paper-background-color; - } - & li > a:hover, - & li > a:focus { - background-color: $paper-background-color-hover; - border-color: $paper-background-color-hover; - } - & .disabled > a, - & .disabled > a:hover, - & .disabled > a:focus, - & .disabled > span { - color: $paper-font-color-disabled; - background-color: $paper-font-color; - border-color: $paper-font-color-disabled; - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pagination.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pagination.scss deleted file mode 100755 index b9d55d3..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pagination.scss +++ /dev/null @@ -1,59 +0,0 @@ -// Variables -//------------------------------------------------------ -$pagination-background-color: $white !default; -$pagination-background-color-hover: $mediumgray-light !default; -$pagination-background-color-active: $grass-dark !default; - -$pagination-font-color: $darkgray-dark !default; -$pagination-font-color-hover: $white !default; -$pagination-font-color-disabled: $lightgray-dark !default; - -// Exports -//------------------------------------------------------ - -@include exports("pagination") { - - /** - * pagination - * -------------------------------------------------- - */ - .pagination { - - & > li > a, - & > li > span { - color: $pagination-font-color; - background-color: $pagination-background-color; - border-color: $pagination-background-color-hover; - } - & > li > a:hover, - & > li > span:hover, - & > li > a:focus, - & > li > span:focus { - color: $pagination-font-color-hover; - background-color: $pagination-background-color-hover; - border-color: $pagination-background-color-hover; - } - & > .active > a, - & > .active > span, - & > .active > a:hover, - & > .active > span:hover, - & > .active > a:focus, - & > .active > span:focus { - color: $pagination-font-color-hover; - background-color: $pagination-background-color-active; - border-color: $pagination-background-color-active; - } - & > .disabled > span, - & > .disabled > span:hover, - & > .disabled > span:focus, - & > .disabled > a, - & > .disabled > a:hover, - & > .disabled > a:focus { - color: $pagination-font-color-disabled; - background-color: $pagination-background-color; - border-color: $pagination-background-color-hover; - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_panel.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_panel.scss deleted file mode 100755 index 3d9bd5a..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_panel.scss +++ /dev/null @@ -1,169 +0,0 @@ -// Variables -//------------------------------------------------------ -$panel-normal: $lightgray-dark !default; -$panel-default: $white !default; -$panel-primary: $aqua-dark !default; -$panel-success: $grass-dark !default; -$panel-danger: $grapefruit-dark !default; -$panel-warning: $sunflower-dark !default; -$panel-info: $mint-dark !default; - -$panel-font-color: $darkgray-dark !default; - -$panel-background-color: $white !default; -$panel-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; -$panel-radius: 4px !default; - - -// Exports -//------------------------------------------------------ - -@include exports("panel") { - - /** - * panel - * -------------------------------------------------- - */ - .panel { - background-color: $panel-background-color; - border: none; - @include radius($type: border-radius, $value: $panel-radius); - @include box-shadow($value: $panel-shadow); - - & .list-group { - @include box-shadow($value: none); - } - & .list-group-item:first-child { - border-top: 1px solid $panel-normal; - } - - &-heading { - @include radius($type: border-radius, $value: $panel-radius $panel-radius 0 0); - } - &-title { - font-size: 14px; - color: $panel-font-color; - font-weight: normal; - } - &-footer { - background-color: $panel-normal; - border-top-color: $panel-normal; - @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius); - } - - @at-root &-default { - border-color: $panel-normal; - & > .panel-heading { - color: $panel-font-color; - background-color: $panel-normal; - border-color: $panel-normal; - } - } - @at-root &-primary { - border-color: $panel-primary; - & > .panel-heading { - color: $panel-default; - background-color: $panel-primary; - border-color: $panel-primary; - } - } - @at-root &-success { - border-color: $panel-success; - & > .panel-heading { - color: $panel-default; - background-color: $panel-success; - border-color: $panel-success; - } - } - @at-root &-info { - border-color: $panel-info; - & > .panel-heading { - color: $panel-default; - background-color: $panel-info; - border-color: $panel-info; - } - } - @at-root &-warning { - border-color: $panel-warning; - & > .panel-heading { - color: $panel-default; - background-color: $panel-warning; - border-color: $panel-warning; - } - } - @at-root &-danger { - border-color: $panel-danger; - & > .panel-heading { - color: $panel-default; - background-color: $panel-danger; - border-color: $panel-danger; - } - } - - @at-root &-primary > &-heading > &-title, - &-success > &-heading > &-title, - &-info > &-heading > &-title, - &-warning > &-heading > &-title, - &-danger > &-heading > &-title { - color: $panel-default; - } - - & > .list-group:first-child .list-group-item:first-child, - & > .table:first-child, - & > .table-responsive:first-child > .table:first-child { - @include radius($type: border-radius, $value: $panel-radius $panel-radius 0 0); - } - & > .list-group:last-child .list-group-item:last-child { - @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius); - } - & > .table:first-child > thead:first-child > tr:first-child td:first-child, - & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, - & > .table:first-child > tbody:first-child > tr:first-child td:first-child, - & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, - & > .table:first-child > thead:first-child > tr:first-child th:first-child, - & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, - & > .table:first-child > tbody:first-child > tr:first-child th:first-child, - & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - @include radius($type: border-radius, $value: $panel-radius 0 0 0); - } - & > .table:first-child > thead:first-child > tr:first-child td:last-child, - & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, - & > .table:first-child > tbody:first-child > tr:first-child td:last-child, - & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, - & > .table:first-child > thead:first-child > tr:first-child th:last-child, - & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, - & > .table:first-child > tbody:first-child > tr:first-child th:last-child, - & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - @include radius($type: border-radius, $value: 0 $panel-radius 0 0); - } - & > .table:last-child, - & > .table-responsive:last-child > .table:last-child { - @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius); - } - & > .table:last-child > tbody:last-child > tr:last-child td:first-child, - & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, - & > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - & > .table:last-child > tbody:last-child > tr:last-child th:first-child, - & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, - & > .table:last-child > tfoot:last-child > tr:last-child th:first-child, - & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - @include radius($type: border-radius, $value: 0 0 0 $panel-radius); - } - & > .table:last-child > tbody:last-child > tr:last-child td:last-child, - & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, - & > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - & > .table:last-child > tbody:last-child > tr:last-child th:last-child, - & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, - & > .table:last-child > tfoot:last-child > tr:last-child th:last-child, - & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - @include radius($type: border-radius, $value: 0 0 $panel-radius 0); - } - & > &-body + .table, - & > &-body + .table-responsive { - border-top-color: $panel-normal; - } - } - -} diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pill.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pill.scss deleted file mode 100755 index d342e1e..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_pill.scss +++ /dev/null @@ -1,45 +0,0 @@ -// Variables -//------------------------------------------------------ -$pill-background-color: $aqua-dark !default; -$pill-background-color-hover: $lightgray-dark !default; -$pill-font-color: $darkgray-dark !default; -$pill-font-color-active: $white !default; - - -// Exports -//------------------------------------------------------ - -@include exports("pill") { - - /** - * pill - * -------------------------------------------------- - */ - .nav-pills { - & > li.active > a, - & > li.active > a:hover, - & > li.active > a:focus { - color: $pill-font-color-active; - background-color: $pill-background-color; - } - & > li > a { - color: $pill-background-color; - } - & > li > a:hover { - color: $pill-font-color; - background-color: $pill-background-color-hover; - } - & > .active > a > .badge { - color: $pill-background-color; - } - & .open > a, - & .open > a:focus, - & .open > a:hover { - color: $pill-font-color; - background-color: $pill-background-color-hover; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_popover.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_popover.scss deleted file mode 100755 index c8fb991..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_popover.scss +++ /dev/null @@ -1,50 +0,0 @@ -// Variables -//------------------------------------------------------ -$popover-background-color: $darkgray-dark !default; -$popover-font-color: $white !default; -$popover-title-font-color: $mediumgray-dark !default; - - -// Exports -//------------------------------------------------------ - -@include exports("popover") { - - /** - * popover - * -------------------------------------------------- - */ - - .popover { - background-color: $popover-background-color; - color: $popover-font-color; - border-color: $popover-background-color; - - @at-root &-title { - padding-bottom: 0; - font-weight: bold; - color: $popover-title-font-color; - background-color: transparent; - border-bottom: none; - } - &.top .arrow, - &.top .arrow:after { - border-top-color: $popover-background-color; - } - &.right .arrow, - &.right .arrow:after { - border-right-color: $popover-background-color; - } - &.bottom .arrow, - &.bottom .arrow:after { - border-bottom-color: $popover-background-color; - } - &.left .arrow, - &.left .arrow:after { - border-left-color: $popover-background-color; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_progress.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_progress.scss deleted file mode 100755 index eb61e43..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_progress.scss +++ /dev/null @@ -1,42 +0,0 @@ -// Variables -//------------------------------------------------------ -$progress-primary: $aqua-dark !default; -$progress-success: $grass-dark !default; -$progress-danger: $grapefruit-dark !default; -$progress-warning: $sunflower-dark !default; -$progress-info: $mint-dark !default; - -$progress-background-color: $lightgray-dark !default; - -// Exports -//------------------------------------------------------ -@include exports("progress") { - - /** - * progress - * -------------------------------------------------- - */ - .progress { - background-color: $progress-background-color; - @include box-shadow($value: none); - - &-bar { - background-color: $progress-primary; - @include box-shadow($value: none); - } - &-bar-success { - background-color: $progress-success; - } - &-bar-info { - background-color: $progress-info; - } - &-bar-warning { - background-color: $progress-warning; - } - &-bar-danger { - background-color: $progress-danger; - } - } -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tab.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tab.scss deleted file mode 100755 index 6dcdd0c..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tab.scss +++ /dev/null @@ -1,179 +0,0 @@ -// Variables -//------------------------------------------------------ -$tab-background-color: $lightgray-dark !default; -$tab-background-color-hover: $lightgray-light !default; -$tab-radius: 4px !default; - -$tab-font-color: $darkgray-dark !default; -$tab-font-color-acitve: $white !default; - -$tab-aside-width: 74px !default; - -$tab-border-color: $mediumgray-light !default; -// Exports -//------------------------------------------------------ - -@include exports("tab") { - - /** - * tab - * -------------------------------------------------- - */ - .nav-tabs { - border-bottom: none; - background-color: $tab-background-color; - @include radius($type: border-radius, $value: $tab-radius $tab-radius 0 0); - - & > li { - margin-bottom: 0; - border-left: 1px solid $tab-border-color; - } - & > li:first-child { - border-left: none; - } - & > li > a { - margin-right: 0; - border: none; - @include radius($type: border-radius, $value: 0); - color: $tab-font-color; - } - & > li:first-child > a { - @include radius($type: border-radius, $value: $tab-radius 0 0 0); - } - & > li > a:focus, - & > li > a:hover { - border: none; - background-color: $tab-background-color-hover; - } - & > li.active > a, - & > li.active > a:focus, - & > li.active > a:hover { - border: none; - background-color: $tab-font-color-acitve !important; - } - - & .dropdown-toggle, - & .dropdown-toggle:hover, - & .dropdown-toggle:focus { - color: $tab-font-color; - } - - & li.dropdown.open .dropdown-toggle { - color: $tab-font-color; - background-color: $tab-background-color-hover; - } - & li.dropdown.active.open .dropdown-toggle { - color: $tab-font-color; - } - & li.dropdown.active.open .dropdown-toggle .caret, - & li.dropdown.active .dropdown-toggle .caret { - border-top-color: $tab-font-color; - border-bottom-color: $tab-font-color; - } - & li.dropdown.open .caret, - & li.dropdown.open.active .caret, - & li.dropdown.open a:hover .caret, - & li.dropdown.open a:focus .caret, - & .dropdown-toggle .caret, - & .dropdown-toggle:hover .caret, - & .dropdown-toggle:focus .caret { - border-top-color: $tab-font-color; - border-bottom-color: $tab-font-color; - } - - &.nav-justified > li > a { - margin-bottom: 0; - text-align: center; - } - &.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; - } - &.nav-justified > li > a { - @include radius($type: border-radius, $value: 0); - } - &.nav-justified > li:first-child > a { - @include radius($type: border-radius, $value: $tab-radius 0 0 0); - } - &.nav-justified > li:last-child > a { - @include radius($type: border-radius, $value: 0 $tab-radius 0 0); - } - &.nav-justified > .active > a, - &.nav-justified > .active > a:hover, - &.nav-justified > .active > a:focus { - border: none; - } - @media (min-width: 768px) { - &.nav-justified > li > a { - border-bottom: none; - @include radius($type: border-radius, $value: 0); - } - &.nav-justified > .active > a, - &.nav-justified > .active > a:hover, - &.nav-justified > .active > a:focus { - border-bottom: none; - } - } - - @at-root .tab-content { - padding: 10px; - } - } - - .tabs-below { - & .nav-tabs { - @include radius($type: border-radius, $value: 0 0 $tab-radius $tab-radius); - } - & .nav-tabs > li:first-child > a { - @include radius($type: border-radius, $value: 0 0 0 $tab-radius); - } - & .nav-tabs.nav-justified > li:last-child > a { - @include radius($type: border-radius, $value: 0 0 $tab-radius 0); - } - } - - .tabs-left .nav-tabs > li, - .tabs-right .nav-tabs > li { - float: none; - border-left: none; - border-top: 1px solid $tab-border-color; - } - .tabs-left .nav-tabs > li:first-child, - .tabs-right .nav-tabs > li:first-child { - border-top: none; - } - .tabs-left .nav-tabs > li > a, - .tabs-right .nav-tabs > li > a { - min-width: $tab-aside-width; - margin-right: 0; - } - .tabs-left { - & .nav-tabs { - float: left; - margin-right: 19px; - @include radius($type: border-radius, $value: $tab-radius 0 0 $tab-radius); - } - & .nav-tabs > li:first-child > a { - @include radius($type: border-radius, $value: $tab-radius 0 0 0); - } - & .nav-tabs > li:last-child > a { - @include radius($type: border-radius, $value: 0 0 0 $tab-radius); - } - } - .tabs-right { - & .nav-tabs { - float: right; - margin-left: 19px; - @include radius($type: border-radius, $value: 0 $tab-radius $tab-radius 0); - } - & .nav-tabs > li:first-child > a { - @include radius($type: border-radius, $value: 0 $tab-radius 0 0); - } - & .nav-tabs > li:last-child > a { - @include radius($type: border-radius, $value: 0 0 $tab-radius 0); - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_thumbnail.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_thumbnail.scss deleted file mode 100755 index eceb40a..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_thumbnail.scss +++ /dev/null @@ -1,39 +0,0 @@ -// Variables -//------------------------------------------------------ -$media-font-color: $darkgray-dark !default; - - -$thumbnail-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; - - -// Exports -//------------------------------------------------------ - -@include exports("thumbnail") { - - /** - * thumbnail - * -------------------------------------------------- - */ - .thumbnail { - border: none; - @include box-shadow($value: $list-shadow); - - & .caption { - font-size: 14px; - } - - & .caption h1, - & .caption h2, - & .caption h3, - & .caption h4, - & .caption h5, - & .caption h6 { - margin: 5px 0 10px; - font-size: 16px; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tooltip.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tooltip.scss deleted file mode 100755 index a0438ea..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tooltip.scss +++ /dev/null @@ -1,42 +0,0 @@ -// Variables -//------------------------------------------------------ -$tooltip-background-color: $darkgray-dark !default; -$tooltip-font-color: $white !default; - - -// Exports -//------------------------------------------------------ - -@include exports("tooltip") { - - /** - * tooltip - * -------------------------------------------------- - */ - - .tooltip { - @at-root &-inner { - color: $tooltip-font-color; - background-color: $tooltip-background-color; - } - &.top &-arrow, - &.top-left &-arrow, - &.top-right &-arrow { - border-top-color: $tooltip-background-color; - } - &.right &-arrow { - border-right-color: $tooltip-background-color; - } - &.left &-arrow { - border-left-color: $tooltip-background-color; - } - &.bottom &-arrow, - &.bottom-left &-arrow, - &.bottom-right &-arrow { - border-bottom-color: $tooltip-background-color; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_typography.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_typography.scss deleted file mode 100755 index 5b1496a..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_typography.scss +++ /dev/null @@ -1,126 +0,0 @@ -// Variables -//------------------------------------------------------ -$body-font-color: $darkgray-dark !default; -$body-background-color: $white !default; - -$link-font-color: $aqua-dark !default; -$link-font-color-hover: $aqua-light !default; - -$blockquote-border-color: $mediumgray-light !default; - -$image-radius: 4px !default; - -// Exports -//------------------------------------------------------ - -@include exports("typography") { - - /** - * typography - * -------------------------------------------------- - */ - - body { - font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; - color: $body-font-color; - background-color: $body-background-color; - } - a { - color: $link-font-color; - text-decoration: none; - - &:hover, - &:focus { - color: $link-font-color-hover; - text-decoration: none; - } - &:focus { - outline: none; - } - } - h1, - h2, - h3, - h4, - h5, - h6, - .h1, - .h2, - .h3, - .h4, - .h5, - .h6 { - font-family: inherit; - font-weight: 700; - line-height: 1.1; - color: inherit; - } - h1 small, - h2 small, - h3 small, - h4 small, - h5 small, - h6 small, - .h1 small, - .h2 small, - .h3 small, - .h4 small, - .h5 small, - .h6 small { - color: #e7e9ec; - } - h1, - h2, - h3 { - margin-top: 30px; - margin-bottom: 15px; - } - h4, - h5, - h6 { - margin-top: 15px; - margin-bottom: 15px; - } - h6 { - font-weight: normal; - } - h1, - .h1 { - font-size: 51px; - } - h2, - .h2 { - font-size: 43px; - } - h3, - .h3 { - font-size: 30px; - } - h4, - .h4 { - font-size: 19px; - } - h5, - .h5 { - font-size: 18px; - } - h6, - .h6 { - font-size: 14px; - } - blockquote { - border-left: 3px solid $blockquote-border-color; - } - .img-rounded { - @include radius($type: border-radius, $value: $image-radius); - } - .img-comment { - font-size: 15px; - line-height: 1.2; - font-style: italic; - margin: 24px 0; - } - -} - - diff --git a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_well.scss b/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_well.scss deleted file mode 100755 index 021fcc8..0000000 --- a/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_well.scss +++ /dev/null @@ -1,43 +0,0 @@ -// Variables -//------------------------------------------------------ -$well-font-color: $darkgray-dark !default; -$well-background-color: $white !default; - -$well-blockquote-color: $mediumgray-light !default; - -$well-radius: 4px; -$well-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; - - -// Exports -//------------------------------------------------------ - -@include exports("well") { - - /** - * well - * -------------------------------------------------- - */ - - .well { - padding: 10px; - border: none; - @include radius($type: border-radius, $value: $well-radius); - color: $modal-font-color; - background-color: $well-background-color; - @include box-shadow($value: $well-shadow); - - & blockquote { - border-color: $well-blockquote-color; - } - @at-root &-lg { - padding: 20px; - } - @at-root &-sm { - padding: 5px; - } - } - -} - - diff --git a/shelfzilla/themes/bootflat/templates/users/login.html b/shelfzilla/themes/bootflat/templates/users/login.html index bd097b5..a34509e 100644 --- a/shelfzilla/themes/bootflat/templates/users/login.html +++ b/shelfzilla/themes/bootflat/templates/users/login.html @@ -1,5 +1,7 @@ +{% extends "_layout.html" %} + {% block main_content %} -
+ {% csrf_token %} {{ login_form.as_p }}