Code Monkey home page Code Monkey logo

startbootstrap-sb-admin-2's Introduction

SB Admin 2 is an open source admin dashboard theme for Bootstrap created by Start Bootstrap.

For the legacy Bootstrap 3 version of this theme, you can view the last stable release of SB Admin 2 for Bootstrap 3.

Preview

SB Admin 2 Preview

Launch Live Preview

Status

GitHub license npm version Build Status dependencies Status devDependencies Status

Download and Installation

To begin using this template, choose one of the following options to get started:

Usage

After installation, run npm install and then run npm start which will open up a preview of the template in your default browser, watch for changes to core template files, and live reload the browser when changes are saved. You can view the gulpfile.js to see which tasks are included with the dev environment.

Gulp Tasks

  • gulp the default task that builds everything
  • gulp watch browserSync opens the project in your default browser and live reloads when changes are made
  • gulp css compiles SCSS files into CSS and minifies the compiled CSS
  • gulp js minifies the themes JS file
  • gulp vendor copies dependencies from node_modules to the vendor directory

You must have npm installed globally in order to use this build environment. This theme was built using node v11.6.0 and the Gulp CLI v2.0.1. If Gulp is not running properly after running npm install, you may need to update node and/or the Gulp CLI locally.

Bugs and Issues

Have a bug or an issue with this template? Open a new issue here on GitHub or leave a comment on the template overview page at Start Bootstrap.

About

Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.

Start Bootstrap was created by and is maintained by David Miller.

Start Bootstrap is based on the Bootstrap framework created by Mark Otto and Jacob Thorton.

Copyright and License

Copyright 2013-2021 Start Bootstrap LLC. Code released under the MIT license.

startbootstrap-sb-admin-2's People

Contributors

challgren avatar davidtmiller avatar dgelvin avatar dpordomingo avatar foxou33 avatar goat-code-cgn avatar imtiazshakil avatar irineos1995 avatar jackcrispy avatar jensmotum avatar johanlopes avatar kingdomh2007 avatar krzysiekpiasecki avatar kumpelblase2 avatar marcelod avatar nelson6e65 avatar onesneakymofo avatar peterdavehello avatar sbagdaulet avatar tnir avatar weiserhei avatar zerkms avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

startbootstrap-sb-admin-2's Issues

bootstrap version?

I notice some commit descriptions suggest that bootstrap 3.3.5 is supported but the bower.json file references 3.3.1.
Can you clarify if this supports bootstrap 3.3.5 or not? Does the bower.json file need to be updated?

Issue with bower installation

If i try to install the Theme with Bower i get the following error

bower font-awesome#~4.2.0                  ECMDERR Failed to execute "git ls-remote --tags --heads git://github.com/FortAwesome/Font-Awesome.git", exit code of #128 fatal: unable to connect to github.com: github.com[0: 192.30.252.131]: errno=Connection refused

Additional error details:
fatal: unable to connect to github.com:
github.com[0: 192.30.252.131]: errno=Connection refused

Reload side bar bug fixed

I got this bug when the module actions have the same name. Example:
For "customer" action (customer.php):
http://.../index.php?m=dist_mgr&a=customer
http://.../index.php?m=dist_mgr&a=customer&type=addedit // (the same action but other type)

For another action (customer_serviceplan.php):
http://.../index.php?m=dist_mgr&a=customer_serviceplan


I changed this code in sb-admin-2.js from:

...
    var url = window.location;
    var element = $('ul.nav a').filter(function() {
        return this.href == url || url.href.indexOf(this.href) == 0;
    }).addClass('active').parent().parent().addClass('in').parent();
...

to

...
    var url = window.location;
    var element = $('ul.nav a').filter(function() {
        return this.href == url || (url.href.indexOf(this.href) == 0 && url.href.indexOf(this.href+"&") == 0);
    }).addClass('active').parent().parent().addClass('in').parent();
...

for solving my problem.

Thanks for your nice menu admin theme!

Collapse menu sooner

Hi,

How can I make the menu on the left collapse sooner? On an iPad2 in portrait mode it's still visible. And I would like to see it collapsed.

Many thanks in advance.

Bootstrap 3.3.0 Responsive Table Bug

After comparing 3.3.2 and 3.3.3 moving overflow to table response (see bellow) always creates unnecessary horizontal scrolls.

.table-responsive {
min-height: .01%;
overflow-x: auto;

Moving it back to (below) helped me

@media screen and (max-width:767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-x: auto;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd;
}

MetisMenu disappears when on mobile.

metisMenu (the side menu) disappears when acceding it through a mobile device. (or maybe I am missing something?).

The system is responsive and really nice, but without the menu I can't really navigate on mobile.

i would like to use this admin template in an open source project im developing

i have a question about the apache license. how should i distribute the license. is it ok to just include a notice in a license file that the admin templates were built with startboostrap-sb-admin-2, and include there a copy of your license file as well as a link to the project/additional info?.

the interface will be parted out into twig templates. having a license notice in every file seems like a pain in the ass.

care to clarify?

Active menu in level three and beyond

Hi, I have 4 levels of menu. Active (selected) menu works well in first 2 levels but in third and fourth level it do not work properly. It remember selection but collapse the menu. I want them to open so selected menu will be highlighted.

I am not good in javaScript, can we update this code below?

var url = window.location;
var element = $('ul.nav a').filter(function() {
return this.href == url || url.href.indexOf(this.href) == 0;
}).addClass('active').parent().parent().addClass('in').parent();

Manage dependencies with Bower

It would be great if it uses Bower to control its dependencies so I can keep everything updated without the need of a new version of SB Admin just to update the Font-Awesome or Bootstrap library, for instance.

Print mode

Hello,

Is it possible to 'hide' the padding value of #page_wrapper in the print mode of bootstrap 'hidden-print' to use the full page width ?

For example, in the blank.html file, remove all the theme and keep only what is inside '

' at line 371.

Thank you.

How to activate filtering in dataTables

Hope will not be kicked out for this, but how can I switch on the filtering/searching option in the first table (id="dataTables-example") on the page :

startbootstrap-sb-admin-2/pages/tables.html

, or in all other tables ?

Finally how do I set up the tables options for datatable ?

Thanks.

Unable tin include data table and chart in on one page

Hello
can any one try putting both

<script src="../bower_components/raphael/raphael-min.js"></script>
<script src="../bower_components/morrisjs/morris.min.js"></script>
<script src="../js/morris-data.js"></script>
and

<script src="../bower_components/DataTables/media/js/jquery.dataTables.min.js"></script>
<script src="../bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js"></script>

in footer of one page and try populating a data table and see if the shorting etc function are being displayed or not

Would you add a Sass version?

I like Sass more than Less. I hope that startbootstrap-sb-admin-2 have a sass version. Would you have a plan to do this?

Why datatables is not working

Hello, i have issue why datatables is not working in this template i use codeignter and yes i have been looking for same issue about datatables but it doesn't give me clear please if anyone who face the same problem please comment here i have check many times with standart configuration but give me table with length, here is my code http://pastebin.com/jnq4H2F7

Version mismatch with Bower installation

There is a "mismatch" message when installing with Bower:

bower startbootstrap-sb-admin-2#*         mismatch Version declared in the json (1.0.4) is different than the resolved one (1.0.6)

Perhaps, this is the reason:
capture01

DataTables not loaded in linux

You have used Capital letters in the footers and your folder names are in small letters.

<script src="../bower_components/DataTables/media/js/jquery.dataTables.min.js"></script>

I have fixed at my end but please fix this in your repo.

<script src="../bower_components/datatables/media/js/jquery.dataTables.min.js"></script>

iOS Safari Modals Not Showing When in Datatable

In IOS Safari:

When attempting to launch a modal that is with in a datatable, the page dims as designed but the modal does not pop up.

It looks like the modal is being trapped in the datatable container.

This is happening on Safari on iOS.

Functionality works on Chrome Desktop.

ui-bootstrap update

thanks for this great repository, you may want to see if ui-bootstrap update to 14.0.2? and not cause problems

Not able to access JSON Methods

image

I'm able to access all view methods but i can't access JSON methods. Can you tell me what am doing wrong, or any suggestion on this issue would be helpful!

bower_components unnecessary

I think, bower_components will added to .gitignore file. Because its unnecessary. We can download this components with bower.json

Plugins Update

Check the included jQuery plugins and update accordingly.

Update the version of metisMenu for 1.0.3 to 1.1.3

Hi all. Our team use sb-admin-2 as a framework of our system. At first THX for your job.
But when we did some work with sb-admin-2, we found a problem. The plugin in sb-admin-2 isn't support for the dynamic update menu. We need to show different menu for the person has different privilege. So we need to get a list of menu from our db to show on the index.
In v1.0.3 that doesn't work. I try to find the freshest version. And take the js into our project. It works.
I think the dynamic menu is a necessary for a magnagement system.
So please update this from 1.0.3 to 1.1.3

Can't fix with messenger, a bootstrap plugin.

I have a problem with plugin messenger. when I use Messenger as my notify plugin, but when use it under sb-admin-2, metisMenu erase all classes of messenger, I can't use any of messenger styles, and I can't control notify position.

Please fix it, thank you.

How to get a minified version for deployment?

This is probably wrong here, but I don't know where else to put it.
I don't quite get how to get or generate a minified version that can be used for deployment.
When I download the zip file or do "bower install ..." I get a lot of unnecessary stuff including examples and stuff from each package that I don't want to have lying around as assets. And a lot of the css and js aren't minified. Also, I don't need the source code versions of each package.
Is there a way to get a minified distribution?

No valid licenses found at the time of updating Bower WebJars

Failed!
No valid licenses found. Detected licenses: Apache
The acceptable licenses on BinTray are at: https://bintray.com/docs/api/#_footnote_1
License detection first uses the package metadata (e.g. package.json or bower.json) and falls back to looking for a LICENSE, LICENSE.txt, or LICENSE.md file in the master branch of the GitHub repo.
Since these methods failed to detect a valid license you will need to work with the upstream project to add discoverable license metadata to a release or to the GitHub repo.

If you feel you have reached this failure in error, please file an issue: https://github.com/webjars/webjars/issues

Wrong Case in <!-- DataTables JavaScript -->

The path to the "jquery.dataTables.min.js" as a mistake :

it reads :
src="../bower_components/DataTables/media/js/jquery.dataTables.min.js"

but should be:
src="../bower_components/datatables/media/js/jquery.dataTables.min.js"

without any capital letter in "datatables"

Hope this help.

accordion wont stay open

Hi,

I'm enjoying this theme very much but there is one problem I can't really get around and was hoping you could help me out.

I split up the theme in:
Site header
Nav header
Nav top bar
Nav side bar
Content
Site footer

Every time I click a link the whole page incl menu is reloaded. I don't seem able to keep the selected/active page open in the acordion. Do you have any tips on how to achieve this?

Thanks,

ie collapse issue

Hi

Have you find any possible solution to Metis collapse issue on IE ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.