static/less/carousel.less
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Sat, 22 Feb 2025 20:51:12 +0100
changeset 1657 b4f738b770c9
parent 53 3416f82943ea
permissions -rwxr-xr-x
eskp plot update from 250222
info@53
     1
//
info@53
     2
// Carousel
info@53
     3
// --------------------------------------------------
info@53
     4
info@53
     5
info@53
     6
// Wrapper for the slide container and indicators
info@53
     7
.carousel {
info@53
     8
  position: relative;
info@53
     9
}
info@53
    10
info@53
    11
.carousel-inner {
info@53
    12
  position: relative;
info@53
    13
  overflow: hidden;
info@53
    14
  width: 100%;
info@53
    15
info@53
    16
  > .item {
info@53
    17
    display: none;
info@53
    18
    position: relative;
info@53
    19
    .transition(.6s ease-in-out left);
info@53
    20
info@53
    21
    // Account for jankitude on images
info@53
    22
    > img,
info@53
    23
    > a > img {
info@53
    24
      .img-responsive();
info@53
    25
      line-height: 1;
info@53
    26
    }
info@53
    27
  }
info@53
    28
info@53
    29
  > .active,
info@53
    30
  > .next,
info@53
    31
  > .prev { display: block; }
info@53
    32
info@53
    33
  > .active {
info@53
    34
    left: 0;
info@53
    35
  }
info@53
    36
info@53
    37
  > .next,
info@53
    38
  > .prev {
info@53
    39
    position: absolute;
info@53
    40
    top: 0;
info@53
    41
    width: 100%;
info@53
    42
  }
info@53
    43
info@53
    44
  > .next {
info@53
    45
    left: 100%;
info@53
    46
  }
info@53
    47
  > .prev {
info@53
    48
    left: -100%;
info@53
    49
  }
info@53
    50
  > .next.left,
info@53
    51
  > .prev.right {
info@53
    52
    left: 0;
info@53
    53
  }
info@53
    54
info@53
    55
  > .active.left {
info@53
    56
    left: -100%;
info@53
    57
  }
info@53
    58
  > .active.right {
info@53
    59
    left: 100%;
info@53
    60
  }
info@53
    61
info@53
    62
}
info@53
    63
info@53
    64
// Left/right controls for nav
info@53
    65
// ---------------------------
info@53
    66
info@53
    67
.carousel-control {
info@53
    68
  position: absolute;
info@53
    69
  top: 0;
info@53
    70
  left: 0;
info@53
    71
  bottom: 0;
info@53
    72
  width: @carousel-control-width;
info@53
    73
  .opacity(@carousel-control-opacity);
info@53
    74
  font-size: @carousel-control-font-size;
info@53
    75
  color: @carousel-control-color;
info@53
    76
  text-align: center;
info@53
    77
  text-shadow: @carousel-text-shadow;
info@53
    78
  // We can't have this transition here because WebKit cancels the carousel
info@53
    79
  // animation if you trip this while in the middle of another animation.
info@53
    80
info@53
    81
  // Set gradients for backgrounds
info@53
    82
  &.left {
info@53
    83
    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
info@53
    84
  }
info@53
    85
  &.right {
info@53
    86
    left: auto;
info@53
    87
    right: 0;
info@53
    88
    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
info@53
    89
  }
info@53
    90
info@53
    91
  // Hover/focus state
info@53
    92
  &:hover,
info@53
    93
  &:focus {
info@53
    94
    outline: none;
info@53
    95
    color: @carousel-control-color;
info@53
    96
    text-decoration: none;
info@53
    97
    .opacity(.9);
info@53
    98
  }
info@53
    99
info@53
   100
  // Toggles
info@53
   101
  .icon-prev,
info@53
   102
  .icon-next,
info@53
   103
  .glyphicon-chevron-left,
info@53
   104
  .glyphicon-chevron-right {
info@53
   105
    position: absolute;
info@53
   106
    top: 50%;
info@53
   107
    z-index: 5;
info@53
   108
    display: inline-block;
info@53
   109
  }
info@53
   110
  .icon-prev,
info@53
   111
  .glyphicon-chevron-left {
info@53
   112
    left: 50%;
info@53
   113
  }
info@53
   114
  .icon-next,
info@53
   115
  .glyphicon-chevron-right {
info@53
   116
    right: 50%;
info@53
   117
  }
info@53
   118
  .icon-prev,
info@53
   119
  .icon-next {
info@53
   120
    width:  20px;
info@53
   121
    height: 20px;
info@53
   122
    margin-top: -10px;
info@53
   123
    margin-left: -10px;
info@53
   124
    font-family: serif;
info@53
   125
  }
info@53
   126
info@53
   127
  .icon-prev {
info@53
   128
    &:before {
info@53
   129
      content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
info@53
   130
    }
info@53
   131
  }
info@53
   132
  .icon-next {
info@53
   133
    &:before {
info@53
   134
      content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
info@53
   135
    }
info@53
   136
  }
info@53
   137
}
info@53
   138
info@53
   139
// Optional indicator pips
info@53
   140
//
info@53
   141
// Add an unordered list with the following class and add a list item for each
info@53
   142
// slide your carousel holds.
info@53
   143
info@53
   144
.carousel-indicators {
info@53
   145
  position: absolute;
info@53
   146
  bottom: 10px;
info@53
   147
  left: 50%;
info@53
   148
  z-index: 15;
info@53
   149
  width: 60%;
info@53
   150
  margin-left: -30%;
info@53
   151
  padding-left: 0;
info@53
   152
  list-style: none;
info@53
   153
  text-align: center;
info@53
   154
info@53
   155
  li {
info@53
   156
    display: inline-block;
info@53
   157
    width:  10px;
info@53
   158
    height: 10px;
info@53
   159
    margin: 1px;
info@53
   160
    text-indent: -999px;
info@53
   161
    border: 1px solid @carousel-indicator-border-color;
info@53
   162
    border-radius: 10px;
info@53
   163
    cursor: pointer;
info@53
   164
info@53
   165
    // IE8-9 hack for event handling
info@53
   166
    //
info@53
   167
    // Internet Explorer 8-9 does not support clicks on elements without a set
info@53
   168
    // `background-color`. We cannot use `filter` since that's not viewed as a
info@53
   169
    // background color by the browser. Thus, a hack is needed.
info@53
   170
    //
info@53
   171
    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
info@53
   172
    // set alpha transparency for the best results possible.
info@53
   173
    background-color: #000 \9; // IE8
info@53
   174
    background-color: rgba(0,0,0,0); // IE9
info@53
   175
  }
info@53
   176
  .active {
info@53
   177
    margin: 0;
info@53
   178
    width:  12px;
info@53
   179
    height: 12px;
info@53
   180
    background-color: @carousel-indicator-active-bg;
info@53
   181
  }
info@53
   182
}
info@53
   183
info@53
   184
// Optional captions
info@53
   185
// -----------------------------
info@53
   186
// Hidden by default for smaller viewports
info@53
   187
.carousel-caption {
info@53
   188
  position: absolute;
info@53
   189
  left: 15%;
info@53
   190
  right: 15%;
info@53
   191
  bottom: 20px;
info@53
   192
  z-index: 10;
info@53
   193
  padding-top: 20px;
info@53
   194
  padding-bottom: 20px;
info@53
   195
  color: @carousel-caption-color;
info@53
   196
  text-align: center;
info@53
   197
  text-shadow: @carousel-text-shadow;
info@53
   198
  & .btn {
info@53
   199
    text-shadow: none; // No shadow for button elements in carousel-caption
info@53
   200
  }
info@53
   201
}
info@53
   202
info@53
   203
info@53
   204
// Scale up controls for tablets and up
info@53
   205
@media screen and (min-width: @screen-sm-min) {
info@53
   206
info@53
   207
  // Scale up the controls a smidge
info@53
   208
  .carousel-control {
info@53
   209
    .glyphicons-chevron-left,
info@53
   210
    .glyphicons-chevron-right,
info@53
   211
    .icon-prev,
info@53
   212
    .icon-next {
info@53
   213
      width: 30px;
info@53
   214
      height: 30px;
info@53
   215
      margin-top: -15px;
info@53
   216
      margin-left: -15px;
info@53
   217
      font-size: 30px;
info@53
   218
    }
info@53
   219
  }
info@53
   220
info@53
   221
  // Show and left align the captions
info@53
   222
  .carousel-caption {
info@53
   223
    left: 20%;
info@53
   224
    right: 20%;
info@53
   225
    padding-bottom: 30px;
info@53
   226
  }
info@53
   227
info@53
   228
  // Move up the indicators
info@53
   229
  .carousel-indicators {
info@53
   230
    bottom: 20px;
info@53
   231
  }
info@53
   232
}
Impressum Datenschutzerklärung