/*
 * UiO CSS: Invalid 
 * 
 * Hacks and some CSS 3
 *
 */

/* Removing mozilla borders */
form::-moz-focus-inner,
form button::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* Remove border radius for calendar and tabs */
#vrtx-event-calendar .ui-corner-all,
.ui-tabs .ui-corner-all,
.ui-tabs .ui-corner-top,
.ui-tabs .ui-corner-bottom {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0; 
}

/* iPad and iPhone hacks */

input[type='text'],
input[type='password'],
input[type='button'],
input[type='submit'],
input[type='reset'] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

/* Remove sickle on iPad - http://www.stephentgilbert.com/mediaqueries/ */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  {

  #globalnav li.vrtx-current-item { /* Fix border under active tab in globalmenu */
    padding-bottom: 4px !important;
  }

  form.vrtx-blue-button button { /* Fix text in blue button on studieprogram */
    font-size: 0.95em !important;
  }

  #vrtx-publication-tabs .ui-widget-header .ui-state-active {
    padding-bottom: 2px !important;
    margin-bottom: -2px !important;
  }

  #uio-sickle-black {
    background: none !important; 
  }
}

/* ^ UiO CSS: Invalid */
