Sha256: c3070403d2bbfb7548b80a2c5f1d7a8e7d3b9a04cc8bf6594468963dd05c5270

Contents?: true

Size: 1.47 KB

Versions: 10

Compression:

Stored size: 1.47 KB

Contents

/*
 *= require_self
 */

@import "compass/css3";
@import "sassy-buttons";
@import "alchemy/variables";
@import "alchemy/mixins";
@import "alchemy/extends";

#alchemy_menubar {
  position: fixed;
  top: 0;
  left: -356px;
  width: 400px;
  z-index: 10000;
  background: $light-gray;
  @include animate-left;
  @include bottom-right-rounded-border;
  @include drop-shadow;
  @include box-sizing(border-box);
  border-right: $default-border;
  border-bottom: $default-border;
  height: 44px;
  padding: 4px 40px 4px 8px;
  overflow: hidden;
  font: $default-font-style;

  * {
    @include box-sizing(border-box);
    margin: 0;
    padding: 0;
  }

  &:hover {
    left: 0;
  }

  &:after {
    content: '';
    width: 28px;
    height: 28px;
    position: absolute;
    right: 8px;
    top: 8px;
    background: image-url('alchemy/icon.svg') 0 0 no-repeat;
    background-size: 28px 28px;
  }

  ul {
    padding: 0;
    margin: 0;
    height: auto;

    li {
      width: 32%;
      height: 35px;
      margin: 0 $default-margin 0 0;
      padding: 0;
      float: left;
      list-style-type: none;
      text-align: center;

      a, button {
        @extend %button-defaults;
        padding-left: $default-padding;
        padding-right: $default-padding;
        width: 100%;
        display: block;
        line-height: 14px;
        font-weight: normal;
        text-decoration: none !important;
        color: $text-color !important;
        font-family: $default-font-face;
      }
    }
  }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
alchemy_cms-3.0.4 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.3 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.1.0.beta1 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.2 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.1 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.0 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.0.rc8 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.0.rc7 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.0.rc6 app/assets/stylesheets/alchemy/menubar.css.scss
alchemy_cms-3.0.0.rc5 app/assets/stylesheets/alchemy/menubar.css.scss