Coder Social home page Coder Social logo

dreamingechoes / bootstrap_sb_admin_base_v2 Goto Github PK

View Code? Open in Web Editor NEW
61.0 7.0 23.0 2.96 MB

Rails gem of the Bootstrap based admin theme SB Admin 2.

Home Page: http://dreamingechoes.github.io/bootstrap_sb_admin_base_v2

License: MIT License

Ruby 94.17% Shell 5.83%
bootstrap-admin-theme bootstrap bootstrap-sb-admin rails-gem sb-admin-2 rails

bootstrap_sb_admin_base_v2's Introduction

1649707209743

πŸ‘‹ Hi folks! I'm IvΓ‘n GonzΓ‘lez SΓ‘iz, a seasoned software engineer passionate about building outstanding digital solutions, a bachelor's degree in computer science, and more than 12 years of professional experience.

πŸ™‹ I've got a T-shaped profile, and while my core specialization lies in Backend development, I've also delved into several other exciting domains, including Frontend, DevOps, Mobile Development, and UI/UX. I love taking on complex challenges and creating product-oriented solutions that make a real impact.

πŸ’Ό Being a team player is in my DNA, and I've been leading excellent teams since 2020. I'm all about empowering fellow engineers, nurturing their growth, and creating a healthy and supportive work environment. Remote work is my thing since 2016, and I thrive on delivering excellence in every project.

πŸ§‘β€πŸ’» My technical toolbox is quite diverse, and I'm proficient in various technologies, such as Elixir, Phoenix Framework, Ruby, Ruby on Rails, HTML, CSS, JavaScript, React, and React Native.

✨ Beyond coding, I actively promote diversity in the tech industry and advocate for mental health and accessibility awareness. These issues are close to my heart, and I believe they're essential for creating a more inclusive and supportive community.

🧘 Outside of work, I'm a perpetual learner of emerging technologies. Organizing meetups and conferences allows me to connect with like-minded professionals, and I find fulfillment in mentoring aspiring developers. In my free time, you might find me capturing moments through photography or strumming away on my guitar.

MentorCruise

About me πŸ‘€

  • 🏒 I'm currently working as an Engineering Team Leader at Remote.
  • 🌱 Learning more about and studying: react native, design systems, erlang, and elm.
  • πŸ’¬ Ask me about elixir, phoenix, ruby, ruby on rails, and everything related to web development.
  • πŸ˜„ Pronouns: He/him/his.
  • πŸ“« How to reach me: send me an email at [email protected].
  • ⚑ Fun fact: in my previous life, I was a Pomeranian toy 🐢
  • πŸ“ You can take a look at my resume here.
  • 🎡 Check the playlist I use to listen while working here.

Main skills πŸ§‘β€πŸ’»

Elixir Ruby Ruby On Rails JavaScript React HTML5 CSS3 TypeScript PostgreSQL MySQL MongoDB Redis Docker Amazon AWS Git

Find me on the internet! πŸ”

Linkedin Badge Twitter Badge Linktree Badge Stackoverflow Badge Instagram Badge

Stats πŸ“ˆ

dreamingechoes

dreamingechoe's Github stats

bootstrap_sb_admin_base_v2's People

Contributors

allenzhong avatar dreamingechoes avatar trentclowater 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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

bootstrap_sb_admin_base_v2's Issues

Support for Webpacker

The current configuration assumes that sprockets will handle JS/CSS consolidation. Webpacker became available in Rails 5.1 and is now the default for new Rails versions.

Broken Glyphicons

Hi,

In the latest version (0.3.3) glyphicons are broken. This appears to have happened when you updated bootstrap without changing the src: url(...) to font-url(...) in the Bootstrap .scss files. This:

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format("embedded-opentype"), url('../fonts/glyphicons-halflings-regular.woff2') format("woff2"), url('../fonts/glyphicons-halflings-regular.woff') format("woff"), url('../fonts/glyphicons-halflings-regular.ttf') format("truetype"), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format("svg");
}

should be changed to this:

@font-face {
  font-family: 'Glyphicons Halflings';
  src: font-url("glyphicons-halflings-regular.eot");
  src: font-url("glyphicons-halflings-regular-.eot#iefix") format("embedded-opentype"), font-url("glyphicons-halflings-regular.woff") format("woff"), font-url("glyphicons-halflings-regular.woff2") format("woff2"), font-url("glyphicons-halflings-regular.ttf") format("truetype"), font-url("glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");		
}

Inconsistent including of bootstrap files

Hi,

Currently this gem includes the main bootstrap .scss files, but not the bootstrap .js files. This results in a few different scenarios:

  1. The user includes the bootstrap_sb_admin_base_v2 gem, but no bootstrap gem. They require the bootstrap_admin_base_v2 .scss and .js files in their manifest files. The HTML output looks fine (since the bootstrap .scss is included), but none of the bootstrap javascript works.
  2. The user includes the bootstrap_sb_admin_base_v2 gem, and also the bootstrap gem. They require the both the bootstrap_sb_admin_base_v2 and bootstrap .scss and .js files in their manifest files. Everything looks and works fine, but the entire bootstrap .scss is included twice, and the user may not be getting the bootstrap version they are expecting.
  3. The user includes the bootstrap_sb_admin_base_v2 gem, and also the bootstrap gem. They require the bootstrap_sb_admin_base_v2 .scss files (but NOT the bootstrap .scss files), and then include both the bootstrap_sb_admin_base_v2 .js files AND the bootstrap .js files in their manifest files. Everything looks and works fine, and there is no duplication. Users will probably only do this if they actually look at the source files, and it feels inconsistent to include one in the .scss and both in the .js manifests.

I think it would be better to either include both the .js and .scss files, or not include the main bootstrap files at all and include bootstrap-sass as a dependency (with installation instructions on how to include them in the manifest files in the readme.) Personally I would prefer the second option. What do you think?

Dropdown / DataTables don't work

I'm having some issues trying to use this wonderful Gem.
If I include the main stream Bootstrap Gem too the Dropdown doesn't work.

And I wasn't able to get DataTables to work at all :(

Can we get some clear how-to when we want to add other Gems that might have overlap with the data from this one?

Is it possible to have this Gem include only items that aren't included in the main Bootstrap Gem to avoid conflicts?

Thanks!

Changing template colors

Is there a way to override sb admin's global variables?
What is the encouraged approach on styling the template?

Fix Metis Menu

Mark as activate only the corresponding element to the current URL.

sidebar navbar "active" option problem

Hi,
When create item fail and the controller action render :new again I have active the index link option because of this: (in sb-admin-2.js)

var url = window.location;
var element = $('ul.nav a').filter(function() {
return this.href == url;
}).addClass('active').parents('ul').addClass('in');
if (element.is('li')) {
element.addClass('active');
}

the render :new set url without /new and the href checkin in js is true...

Regards,

Carlos

Font awesome

I get fontawesome-webfont-v=4.2.0.woff not found when I try to deploy this to Heroku.

Is there anything else that needs to be done to get the fonts working?

Is it possible for you to also create a gem for bootstrap_sb_admin also?

Hey man! This gem integrated bootstrap_sb_admin2 is really great and saves me tons of time. Many thanks for your great work.🀝

Just want to know if you would also integrate bootstrap_sb_admin and create a gem like bootstrap_sb_admin_base_v1? Because me personally like the above theme more than v2.πŸ˜…

This is just a request and you may ignore and close it if you don't have time or would not plan to do this.

If support against v1 is not in your plan scope, I will try to do it myself referencing your project.

Many thanks in advance.

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.