Sha256: 85ed681a6bf546d9a895d80f1e252f614f1f80dc4627b4312e976c02ddce9081

Contents?: true

Size: 1.34 KB

Versions: 9

Compression:

Stored size: 1.34 KB

Contents

@import "atlas_assets/_variables";
@import "atlas_assets/_mixins";

.drpb, .drpb-drop {
  @include box-sizing(border-box);
  width: 200px;
}

.drpb {
  @include border-radius($defaultBorderRadius);
  border: 1px solid $defaultBorderColor;
  display: table;

  .drpb-main,
  .drpb-btn {
    @include box-sizing(border-box);
    background-color: $defaultBackgroundColor;
    display: table-cell;
    padding: 4px;

    &:hover {
      background-color: $lightest_blue;
      text-decoration: none;
    }
  }

  .drpb-main {
  }

  .drpb-btn {
    border-left: 1px solid $defaultBorderColor;
    width: 20px;

    &:hover, &.drop-enabled {
      background-color: $lightest_blue;
    }
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
}

.drpb-drop {
  background: $defaultBackgroundColor;
  border-top: 2px solid $defaultBorderColor;

  div {
    border-bottom: 1px solid $defaultBorderColor;
    border-left: 1px solid $defaultBorderColor;
    border-right: 1px solid $defaultBorderColor;

    &:last-child {
      @include border-bottom-right-radius($defaultBorderRadius);
      @include border-bottom-left-radius($defaultBorderRadius);
    }

    a {
      display: block;
      padding: 4px 5px;

      &:hover {
        background-color: $lightest_blue;
        text-decoration: none;
      }
    }
  }
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
atlas_assets-0.8.13 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.12 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.11 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.10 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.9 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.8 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.7 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.6 lib/assets/stylesheets/atlas_assets/_dropbutton.scss
atlas_assets-0.8.5 lib/assets/stylesheets/atlas_assets/_dropbutton.scss