summaryrefslogtreecommitdiff
path: root/javascript/videojs/src/css/components/_modal-dialog.scss
blob: 0c88c5b1e0a22b68325e60d67c255ad2e147da21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.video-js .vjs-modal-dialog {
  @extend %fill-parent;
  @include linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));

  // This allows scrolling of content if need be.
  overflow: auto;
}

// Reset box-sizing inside the modal dialog.
.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  @extend %fill-parent;

  font-size: 1.2em; // 12px
  line-height: 1.5; // 18px
  padding: 20px 24px;
  z-index: 1;
}