forms.scss 774 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
input[type='search'].search-text-input {
  background-image: url("icon-search.png");
  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
}

fieldset legend {
  font-size: 16px;
}
17 18 19 20 21 22

.datetime-controls {
  select {
    width: 100px;
  }
}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
23 24 25 26 27 28 29

.form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: whitesmoke;
  border-top: 1px solid #e5e5e5;
30 31 32
  padding-left: 17%;
}

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

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

.inline-input-group {
  width: 250px;
}
46 47 48 49

.input-mx-250 {
  max-width: 250px;
}
50 51 52 53

.input-mn-300 {
  min-width: 300px;
}