﻿/* This stylesheet applies fixes to the bootstrap daashboard styles.
    
Note: When you update the theme css file, you may need to update the .navbar.fixed style if
      the width:calc() has a variable in it.
      It should be:
      .navbar.fixed {
          width: calc(100% - 260px);
          ...
      }

Additionally, you have to move the @keyframes (+ vendor prefixed ones) that are nested
in @media queries to the end of the file or the minifier will get errors.

*/
.navbar-fixed ~ .main-panel > .main-content {
  padding-top: 95px;
  min-height: calc(100vh - 72px);
  /* 72px = height of footer */ }

.full-page > .content {
  min-height: calc(100vh - 72px);
  /* 72px = height of footer */ }

.navbar {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear; }

/*Not sure why this is off. Possibly because we're not using */
.tooltip-inner:after,
.tooltip-inner:before {
  margin-left: calc(-11px - 50%); }

/* Tweaks. These are theme tweaks not necessarily fixes for the dashboard. */
.alert-success {
  background-color: #87CB16; }

.fa-microsoft:before {
  content: "\f17a"; }

.tooltip-inner {
  background-color: #87CB16;
  color: #333; }

.tooltip.top .tooltip-inner:after {
  border-top-color: #87CB16; }

.tooltip.in {
  filter: alpha(opacity=100);
  opacity: 1; }

