Sha256: 13d334b8ea923814fba3c223324a624a3ae44bf3f5a7392c2e0540ac7c4ecf2f

Contents?: true

Size: 892 Bytes

Versions: 1

Compression:

Stored size: 892 Bytes

Contents

.tooltip_block {
  display: inline-block;
  vertical-align: top;
  background: url($tooltip-icon) center center no-repeat;
  width: $tooltip-width;
  height: $tooltip-height;
  margin: $tooltip-margin;
  cursor: pointer;
  position: relative;
  float: left;
  z-index: 50;
}

.ui-tooltip {
  display: block;
  position: absolute;
  z-index: 100;
  background: $tooltip-drop-bg-color;
  color: $tooltip-drop-color !important;
  width: $tooltip-drop-width;
  font-size: $tooltip-drop-font-size;
  padding: $tooltip-drop-padding;

  @include border-radius($tooltip-drop-border-radius);

  &:before,
  &:after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    border: 10px solid transparent;
    border-right: $tooltip-drop-bg-color 10px solid;
    margin-left: -10px;
    margin-top: -10px;
  }

  &:after {
    border-right: $tooltip-drop-bg-color 10px solid;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
translation_cms-0.1.5 app/assets/stylesheets/ui-kit/default/tooltip.scss