Welcome to mirror list, hosted at ThFree Co, Russian Federation.

popup.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c76205095f92f598764bef5bf6e440f07c259ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.popup {
  @include triangle(
    $gray-lighter,
    $gray-darker,
    $popup-triangle-size,
    $popup-triangle-border-size
  );

  padding: $gl-padding;
  background-color: $gray-lighter;
  border: 1px solid $gray-darker;
  border-radius: $border-radius-default;
  box-shadow: 0 5px 8px $popup-box-shadow-color;
  position: relative;
}