dropdowns.scss 5.4 KB
Newer Older
P
Phil Hughes 已提交
1 2 3 4 5 6
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
P
Phil Hughes 已提交
7
  border-top: $caret-width-base dashed $dropdown-caret-color;
P
Phil Hughes 已提交
8 9 10 11 12 13
  border-right: $caret-width-base solid transparent;
  border-left: $caret-width-base solid transparent;
}

.dropdown {
  position: relative;
14
}
P
Phil Hughes 已提交
15

16 17 18
.open {
  .dropdown-menu {
    display: block;
P
Phil Hughes 已提交
19
  }
P
Phil Hughes 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

  .dropdown-menu-toggle {
    border-color: $dropdown-toggle-hover-border-color;

    .fa {
      color: $dropdown-toggle-hover-icon-color;
    }
  }
}

.dropdown-menu-toggle {
  position: relative;
  min-width: 160px;
  padding: 5px 20px 5px 10px;
  background-color: $dropdown-toggle-bg;
  color: $dropdown-toggle-color;
  font-size: 15px;
  text-align: left;
  border: 1px solid $dropdown-toggle-border-color;
  border-radius: 2px;
  outline: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;

  .fa {
    position: absolute;
    top: 50%;
    right: 6px;
    margin-top: -4px;
    color: $dropdown-toggle-icon-color;
    font-size: 10px;
  }

  &:hover, {
    border-color: $dropdown-toggle-hover-border-color;

    .fa {
      color: $dropdown-toggle-hover-icon-color;
    }
  }
P
Phil Hughes 已提交
61 62 63 64 65 66 67 68 69 70
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 240px;
  margin-top: 2px;
71
  margin-bottom: 0;
P
Phil Hughes 已提交
72
  padding: 10px 10px;
73 74
  font-size: 14px;
  font-weight: normal;
P
Phil Hughes 已提交
75 76 77 78 79
  background-color: $dropdown-bg;
  border: 1px solid $dropdown-border-color;
  border-radius: $border-radius-base;
  box-shadow: 0 2px 4px $dropdown-shadow-color;

P
Phil Hughes 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
  &.is-loading {
    .dropdown-content {
      display: none;
    }

    .dropdown-loading {
      display: block;
    }
  }

  ul {
    margin: 0;
    padding: 0;
  }

P
Phil Hughes 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
  li {
    text-align: left;
    list-style: none;
  }

  .divider {
    width: 100%;
    height: 1px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: $dropdown-divider-color;
  }

  a {
    display: block;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    color: $dropdown-link-color;
    line-height: 34px;
    text-overflow: ellipsis;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;

P
Phil Hughes 已提交
120 121 122
    &:hover,
    &:focus,
    &.is-focused {
P
Phil Hughes 已提交
123 124
      background-color: $dropdown-link-hover-bg;
      text-decoration: none;
P
Phil Hughes 已提交
125
      outline: 0;
P
Phil Hughes 已提交
126 127 128 129
    }
  }
}

P
Phil Hughes 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
.dropdown-menu-paging {
  .dropdown-page-two {
    display: none;
  }

  &.is-page-two {
    .dropdown-page-one {
      display: none;
    }

    .dropdown-page-two {
      display: block;
    }
  }
}

.dropdown-menu-user {
  .avatar {
    float: left;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
  }
}

.dropdown-menu-user-link {
  padding-top: 7px;
  padding-bottom: 7px;
}

.dropdown-menu-user-full-name {
  display: block;
  margin-bottom: 2px;
  line-height: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.dropdown-menu-user-username {
  display: block;
  line-height: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.dropdown-select {
  width: 280px;
}

P
Phil Hughes 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193
.dropdown-menu-align-right {
  left: auto;
  right: 0;
}

.dropdown-menu-selectable {
  a {
    padding-left: 25px;

    &.is-active {
      &::before {
        content: "\f00c";
        position: absolute;
194 195 196
        left: 5px;
        top: 50%;
        margin-top: -7px;
P
Phil Hughes 已提交
197 198 199 200 201 202 203 204 205 206 207
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
    }
  }
}

.dropdown-header {
208 209
  padding-left: 5px;
  padding-right: 5px;
P
Phil Hughes 已提交
210 211 212 213
  color: $dropdown-header-color;
  font-size: 13px;
  line-height: 22px;
}
P
Phil Hughes 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233

.dropdown-title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid $dropdown-divider-color;
  overflow: hidden;
}

.dropdown-title-button {
  position: absolute;
  top: -1px;
  padding: 0;
P
Phil Hughes 已提交
234
  color: $dropdown-title-btn-color;
P
Phil Hughes 已提交
235 236 237 238 239
  font-size: 14px;
  border: 0;
  background: none;

  &:hover {
P
Phil Hughes 已提交
240
    color: darken($dropdown-title-btn-color, 15%);
P
Phil Hughes 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
  }
}

.dropdown-menu-close {
  right: 0;
}

.dropdown-menu-back {
  left: 0;
}

.dropdown-input {
  position: relative;
  margin-bottom: 10px;

  .fa {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #C7C7C7;
    font-size: 12px;
    pointer-events: none;
  }
}

.dropdown-input-field {
  width: 100%;
  padding: 0 7px;
P
Phil Hughes 已提交
269
  color: $dropdown-input-color;
P
Phil Hughes 已提交
270 271 272 273 274 275 276
  line-height: 30px;
  border: 1px solid $dropdown-divider-color;
  border-radius: 2px;
  outline: 0;

  &:focus {
    color: $dropdown-link-color;
P
Phil Hughes 已提交
277 278
    border-color: $dropdown-input-focus-border;
    box-shadow: 0 0 4px $dropdown-input-focus-shadow;
P
Phil Hughes 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311

    + .fa {
      color: $dropdown-link-color;
    }
  }

  &:hover {
    + .fa {
      color: $dropdown-link-color;
    }
  }
}

.dropdown-content {
  max-height: 200px;
  overflow-y: scroll;
}

.dropdown-footer {
  padding-top: 10px;
  margin-top: 10px;
  font-size: 13px;
  border-top: 1px solid $dropdown-divider-color;
}

.dropdown-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 9;
P
Phil Hughes 已提交
312
  background-color: $dropdown-loading-bg;
P
Phil Hughes 已提交
313 314 315 316 317 318 319 320 321 322
  font-size: 28px;

  .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -14px;
  }
}