BigW Consortium Gitlab

forms.scss 1.93 KB
Newer Older
1 2 3 4
textarea {
  resize: vertical;
}

5
input {
Jacob Schatz committed
6
  border-radius: $border-radius-base;
7 8
}

9
input[type='text'].danger {
10 11
  background: #f2dede!important;
  border-color: #d66;
12 13 14
  text-shadow: 0 1px 1px #fff
}

15 16 17 18 19
.datetime-controls {
  select {
    width: 100px;
  }
}
20 21

.form-actions {
22 23 24 25
  margin: -$gl-padding;
  margin-top: 0;
  margin-bottom: -$gl-padding;
  padding: $gl-padding;
26 27
  background-color: $background-color;
  border-top: 1px solid $border-color;
28 29
}

30 31 32 33
label {
  &.inline-label {
    margin: 0;
  }
Phil Hughes committed
34 35

  &.label-light {
Phil Hughes committed
36
    font-weight: 600;
Phil Hughes committed
37
  }
38
}
39

40 41 42 43
.control-label {
  @extend .col-sm-2;
}

44 45 46
.inline-input-group {
  width: 250px;
}
47

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
.custom-form-control {
  width: 150px;
}

@media (min-width: $screen-sm-min) {
  .custom-form-control {
    width: 150px;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: $screen-md-min) {
  .custom-form-control {
    width: 170px;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: $screen-lg-min) {
  .custom-form-control {
    width: 200px;
  }
}
71

72 73 74
.fieldset-form fieldset {
  margin-bottom: 20px;
}
75 76 77

.form-control {
  @include box-shadow(none);
78
  border-radius: 3px;
79
  padding: $gl-vert-padding $gl-input-padding;
80
}
81

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
.select-wrapper {
  position: relative;

  .caret {
    position: absolute;
    right: 10px;
    top: $gl-padding;
    color: $gray-darkest;
    pointer-events: none;
  }
}

.select-control {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-appearance: none;
}

100 101 102 103
.form-control-inline {
  display: inline;
}

yglukhov committed
104
.wiki-content {
105 106
  margin-top: 35px;
}
107 108 109 110 111

.form-group .control-label {
  font-weight: normal;
}

112
.form-control::-webkit-input-placeholder {
113
  color: $gl-placeholder-color;
114 115 116
}

.input-group {
117 118 119 120
  .select2-container {
    display: table-cell;
    width: 200px !important;
  }
121 122 123
  .input-group-addon {
    background-color: #f7f8fa;
  }
124 125 126 127
  .input-group-addon:not(:first-child):not(:last-child) {
    border-left: 0;
    border-right: 0;
  }
128
}
129 130 131 132

.help-block {
  margin-bottom: 0;
}