Sha256: 4c92904d3969a2212340f8ea5bcd8106e05ddf8a0059aae99f25563d8fc504f7

Contents?: true

Size: 830 Bytes

Versions: 7

Compression:

Stored size: 830 Bytes

Contents

/*
  Customize RailsAdmin theme here.
  Copy this file to your app/assets/stylesheets/rails_admin/custom/theming.scss, leave this one untouched
  Don't require it in your application.rb

  Look at the markup in RailsAdmin and go there to get inspiration from:

  http://getbootstrap.com

  Test me: (actual color should be the one defined in variables.scss if you did)

  body { background-color: $link-color; }
*/

/* Thecore Theming */

.alert {
  position: absolute;
  bottom: 1em !important;
  top: auto !important;
  right: 2.5em !important;
  width: auto !important;
  z-index: 9999 !important;
  border-radius: 2em !important;
  animation: hideMe 5s 1;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}

@keyframes hideMe {
  0% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

@import 'thecore/theming';

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
thecore_ui_rails_admin-3.0.11 app/assets/stylesheets/rails_admin/custom/theming.scss
thecore_ui_rails_admin-3.0.10 app/assets/stylesheets/rails_admin/custom/theming.scss
thecore_ui_rails_admin-3.0.9 app/assets/stylesheets/rails_admin/custom/theming.scss
thecore_ui_rails_admin-3.0.8 app/assets/stylesheets/rails_admin/custom/theming.scss
thecore_ui_rails_admin-3.0.7 app/assets/stylesheets/rails_admin/custom/theming.scss
thecore_ui_rails_admin-3.0.6 app/assets/stylesheets/rails_admin/custom/theming.scss
thecore_ui_rails_admin-3.0.5 app/assets/stylesheets/rails_admin/custom/theming.scss