Sha256: 99ec2913cfa83271df72b0175bd91c7b2fd671b18781b16f024d09e4f1282a51

Contents?: true

Size: 1.59 KB

Versions: 29

Compression:

Stored size: 1.59 KB

Contents

//toolbar component

.toolbar{
  background: rgba(255, 255, 255, 0.43);
  border: solid 1px #A8A8A8;
  padding:10px 5px;
  position: relative;
}

.toolbar_item{
  display:inline-block;
  height:40px;
  padding: 0 5px;
  min-width: 120px;
  line-height:40px;
  text-align:center;
  margin:5px;
  border-radius:3px;
  cursor:pointer;
  @include font-attr(1.1em, whitesmoke, bold);
}

.toolbar_item.enabled, .toolbar_item.alwaysvisible{
  background-color:$medium_blue;
  color: white;
  // box-shadow: 3px 3px 7px 1px #1C1D1F;
  box-shadow: 2px 2px 6px 0px #1C1D1F;

  &:hover{   
    box-shadow: 2px 2px 6px 1px #1C1D1F;
    // color:orange;
  }
}

.toolbar_item.disabled{
  background-color: #B0B0B2;
  color: #E0E0E0;
}

.toolbar_item-pagination{
  position:  absolute;
  right: 0;
  top: 10px;
  width: 165px;
  color: $medium_blue;

  input{
    display: inline-block;
    width: 60px; 
    margin-top: 10px;
    margin-left: 30px;
    height: 35px;
    padding-left: 5px;
  }

  .previous, .next{
    position: absolute;
    top:17px;
    display: block;
    width: 20px;
    height: 20px;
    @include rotate(45deg);

    &:hover{
      box-shadow: none;
    }
  }

  .previous{
    left:5px;
    border-left: solid 4px blue;
    border-bottom: solid 4px blue;
    box-shadow: -4px 4px 4px 0px rgba(150, 150, 150, 1);
    
    &.disabled{
      border-color: grey;
      box-shadow: none;
    }
  }

  .next{
    right:12px;
    border-top: solid 4px blue;
    border-right: solid 4px blue;
    box-shadow: 4px -4px 4px 0px rgba(150, 150, 150, 1);

    &.disabled{
      border-color: grey;
      box-shadow: none;
    }
  }
}

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
waterfall_bourbon_neat_rails-2.0.0.10 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.9 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.8 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.7 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.6 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.5 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.4 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.3 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.2 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0.0.1 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-2.0 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.9 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.8 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.7 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.6 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.5 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.4 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.3 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.2 app/assets/stylesheets/custom/components/_toolbar.scss
waterfall_bourbon_neat_rails-1.9.9.1 app/assets/stylesheets/custom/components/_toolbar.scss