bootstrap-azkaban.less

199 lines | 3.08 kB Blame History Raw Download
// Wide modal used for certain panels such as executing flow panel.
.modal-wide .modal-dialog {
	width: 80%;
}

// Hide messaging alert by default.
.alert-messaging {
	display: none;
}

// Add additional space under navs.
.nav-tabs, .nav-pills {
	margin-bottom: 15px;
}

// Flow panel heading.
.flow-expander {
	cursor: pointer;
}

// Flow summary.
table .worksheet-key {
	width: 25%;
}

// Job table.
#all-jobs {
  .tb-name {
    width: 70%;
    border-bottom-width: 0;
    border-bottom-style: none;
  }

  .tb-up-date {
    width: 140px;
    min-width: 130px;
  }

  .tb-owner {
    width: 10%;
    min-width: 95px;
  }
}

// Properties table.
.properties-table {
  .all-jobs .tb-pname {
  }

  .all-jobs .tb-pvalue {
  }
}

// Permissions page table.
.permission-table {
  .tb-perm {
    width: 41px;
    margin: 0px;
  }

  .tb-admin {
    width: 41px;
    margin: 0px;
  }

  .tb-read {
    width: 33px;
    margin: 0px;
  }

  .tb-write {
    width: 34px;
    margin: 0px;
  }

  .tb-execute {
    width: 51px;
    margin: 0px;
  }

  .tb-schedule {
    margin: 0px;
    width: 60px;
  }

  .tb-action {
    margin: 0px;
    width: 70px;
    min-width: 70px;
    max-width: 70px;
  }
}

// Table of executions.
.executions-table {
  th.date {
    width: 140px;
  }

  th.execid {
    width: 100px;
  }

  th.project {
    width: 200px;
  }

  th.user {
    width: 60px;
  }

  th.elapse {
    width: 90px;
  }

  th.status {
    width: 100px;
  }

  th.details {
    width: 10px;
  }

  th.action {
    width: 20px;
  }

  td.timeline {
    width: 280px;
    padding: 0px;
    height: 100%;
    vertical-align: bottom;
    margin: 0px;
  }

  td.execId {
    font-weight: bold;
  }
}

.navbar-inverse {
  background-image: -o-linear-gradient(bottom, rgb(56,56,56) 33%, rgb(73,73,73) 66%);
  background-image: -moz-linear-gradient(bottom, rgb(56,56,56) 33%, rgb(73,73,73) 66%);
  background-image: -webkit-linear-gradient(bottom, rgb(56,56,56) 33%, rgb(73,73,73) 66%);
  background-image: -ms-linear-gradient(bottom, rgb(56,56,56) 33%, rgb(73,73,73) 66%);
  background-image: -webkit-gradient(
   	linear,
   	left bottom,
   	left top,
   	color-stop(0.33, rgb(56,56,56)),
   	color-stop(0.66, rgb(73,73,73))
  );
  background-image: linear-gradient(bottom, rgb(56,56,56) 33%, rgb(73,73,73) 66%); 
  border-top: 5px solid #ff3601;
  box-shadow: 0 1px 4px 1px #000;

  .navbar-brand {
    background: url('../../images/logo.png') top left no-repeat;
    color: #ffffff;
    font-size: 156.25%;
    font-weight: bold;
    margin: 15px 0.6% 15px 4.75%;
    padding: 10px 0 11px 42px;
  
    &:hover, &:focus {
      color: #ffffff;
    }
  }

  .navbar-nav {
    > li {
      padding: 25px 12px 25px 12px;
      cursor: pointer;
      &:hover {
        background-color: rgba(0, 0, 0, 0.1);
      }
    }

    > li > a {
      padding: 0px;
      color: #ccc;
    }

    > .active {
      background-color: rgba(0, 0, 0, 0.1);
    }

    > .active > a {
      color: #fff;
      font-weight: bold;
      background-color: transparent;
      border-bottom: 1px solid #ff3601;
      &:hover {
        background-color: transparent;
      }
    }
  }
}