Sha256: 125c020fb746274398302910506cbfefbda9421605313cba07728aaa29659dfa

Contents?: true

Size: 1.24 KB

Versions: 3

Compression:

Stored size: 1.24 KB

Contents

//
// header.scss
// Styles for admin header.
// --------------------------------------------------

.header-row {
  display: block;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 198;
  left: 230px;
  right: 0;
  height: 56px;
  max-width: 100vw;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  background: #ffffff;
}

.header {
  position: relative;
  height: 56px;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  font-size: 24px;
  text-align: left;
  margin: 0;
  padding: 10px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 2;
}

.breadcrumb {
  color: #798c9c;
}

.breadcrumb a, .breadcrumb a:hover {
  color: #798c9c;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
disco_app-0.9.0 app/assets/stylesheets/disco_app/admin/_header.scss
disco_app-0.9.1 app/assets/stylesheets/disco_app/admin/_header.scss
disco_app-0.9.2 app/assets/stylesheets/disco_app/admin/_header.scss