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

5
input[type='search'].search-text-input {
6
  background-image: image-url("icon-search.png");
7 8 9 10 11 12 13 14 15 16 17
  background-repeat: no-repeat;
  background-position: 10px;
  padding-left: 25px;
}

input[type='text'].danger {
  background: #F2DEDE!important;
  border-color: #D66;
  text-shadow: 0 1px 1px #fff
}

18 19 20 21 22
.datetime-controls {
  select {
    width: 100px;
  }
}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
23 24 25 26 27

.form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
28 29
  background-color: $background-color;
  border-top: 1px solid $border-color;
30 31
}

32 33 34 35 36 37 38 39
label {
  &.control-label {
    @extend .col-sm-2;
  }

  &.inline-label {
    margin: 0;
  }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
40
}
41 42 43 44

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

46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
.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;
  }
}
69

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

.form-control {
  @include box-shadow(none);
}
77

yglukhov's avatar
yglukhov committed
78
.wiki-content {
79 80
  margin-top: 35px;
}
81 82 83 84 85

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

86 87
.form-control::-webkit-input-placeholder {
  color: #7f8fa4;
88 89 90 91 92 93 94
}

.input-group {
  .input-group-addon {
    background-color: #f7f8fa;
  }
}