summaryrefslogtreecommitdiffstats
path: root/app/common/styles/elements/inline-confirm.scss
blob: d6fc2c28a85459ac1d8260fdd1a922f20fa240eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

// inline confirmation message
.inline__confirm {
  position: absolute;
  top: 0;
  transform: translateY(-103%);
  width: 100%;
  height: 100%;
  z-index: 5;
  background: $background-04;
  color: $primary-light;
  padding: 2em 2em 1.55em 2em;
  overflow: hidden;
  @include fastTransition-all;
  &.active {
    transform: translateY(0);
    @include fastTransition-all;
  }
}

// Power confirmation buttons
.inline__confirm-buttons {
  @media (min-width: 900px) {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .btn {
    min-width: 100px!important;
  }
}
OpenPOWER on IntegriCloud