123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881 |
- .form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
-
- .help-block,
- .control-label,
- .radio,
- .checkbox,
- .radio-inline,
- .checkbox-inline,
- &.radio label,
- &.checkbox label,
- &.radio-inline label,
- &.checkbox-inline label {
- color: @text-color;
- }
-
- .form-control {
- border-color: @border-color;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- &:focus {
- border-color: darken(@border-color, 10%);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
- 0 0 6px lighten(@border-color, 20%);
- }
- }
-
- .form-control-feedback {
- color: @text-color;
- }
- }
- .form-control-focus(@color: @input-border-focus) {
- @color-rgba: rgba(red(@color), green(@color), blue(@color), 0.6);
- &:focus {
- border-color: @color;
- outline: 0;
- box-shadow: ~'inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px @{color-rgba}';
- }
- }
- .input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
- height: @input-height;
- padding: @padding-vertical @padding-horizontal;
- font-size: @font-size;
- line-height: @line-height;
- border-radius: @border-radius;
- select& {
- height: @input-height;
- line-height: @input-height;
- }
- textarea&,
- select[multiple]& {
- height: auto;
- }
- }
- fieldset {
-
-
-
- min-width: 0;
- padding: 0;
- margin: 0;
- border: 0;
- }
- legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: @line-height-computed;
- font-size: (@font-size-base * 1.5);
- line-height: inherit;
- color: @legend-color;
- border: 0;
- border-bottom: 1px solid @legend-border-color;
- }
- label {
- display: inline-block;
- max-width: 100%;
- margin-bottom: 5px;
- font-weight: 700;
- }
- input[type='search'] {
-
- box-sizing: border-box;
-
-
-
-
-
-
- -webkit-appearance: none;
- appearance: none;
- }
- input[type='radio'] {
- margin: 4px 0 0;
- margin-top: 1px \9;
- line-height: normal;
-
-
-
-
- &[disabled],
- &.disabled,
- fieldset[disabled] & {
- cursor: @cursor-disabled;
- }
- }
- input[type='file'] {
- display: block;
- }
- input[type='range'] {
- display: block;
- width: 100%;
- }
- select[multiple],
- select[size] {
- height: auto;
- }
- output {
- display: block;
- padding-top: (@padding-base-vertical + 1);
- font-size: @font-size-base;
- line-height: @line-height-base;
- color: @input-color;
- }
- .form-control {
- display: block;
- width: 100%;
- height: @input-height-base;
- padding: @padding-base-vertical @padding-base-horizontal;
- font-size: @font-size-base;
- line-height: @line-height-base;
- color: @input-color;
- background-color: @input-bg;
- background-image: none;
- border: 1px solid @input-border;
- border-radius: @input-border-radius;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-
- .form-control-focus();
- &::-moz-placeholder {
- color: @input-color-placeholder;
- opacity: 1;
- }
- &:-ms-input-placeholder {
- color: @input-color-placeholder;
- }
- &::-webkit-input-placeholder {
- color: @input-color-placeholder;
- }
-
- &::-ms-expand {
- background-color: transparent;
- border: 0;
- }
-
-
-
-
-
- &[disabled],
- &[readonly],
- fieldset[disabled] & {
- background-color: @input-bg-disabled;
- opacity: 1;
- }
- &[disabled],
- fieldset[disabled] & {
- cursor: @cursor-disabled;
- }
-
- textarea& {
- height: auto;
- }
- }
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
- input[type='date'],
- input[type='time'],
- input[type='datetime-local'],
- input[type='month'] {
- &.form-control {
- line-height: @input-height-base;
- }
- &.input-sm {
- line-height: @input-height-small;
- }
- &.input-lg {
- line-height: @input-height-large;
- }
- }
- }
- .form-group {
- margin-bottom: @form-group-margin-bottom;
- }
- .radio,
- .checkbox {
- position: relative;
- display: block;
- margin-top: 10px;
- margin-bottom: 10px;
-
- &.disabled,
- fieldset[disabled] & {
- label {
- cursor: @cursor-disabled;
- }
- }
- label {
- min-height: @line-height-computed;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: 400;
- cursor: pointer;
- }
- }
- .radio input[type='radio'],
- .radio-inline input[type='radio'],
- .checkbox input[type='checkbox'],
- .checkbox-inline input[type='checkbox'] {
- position: absolute;
- margin-top: 4px \9;
- margin-left: -20px;
- }
- .radio + .radio,
- .checkbox + .checkbox {
- margin-top: -5px;
- }
- .radio-inline,
- .checkbox-inline {
- position: relative;
- display: inline-block;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: 400;
- vertical-align: middle;
- cursor: pointer;
-
- &.disabled,
- fieldset[disabled] & {
- cursor: @cursor-disabled;
- }
- }
- .radio-inline + .radio-inline,
- .checkbox-inline + .checkbox-inline {
- margin-top: 0;
- margin-left: 10px;
- }
- .form-control-static {
- min-height: (@line-height-computed + @font-size-base);
-
- padding-top: (@padding-base-vertical + 1);
- padding-bottom: (@padding-base-vertical + 1);
-
- margin-bottom: 0;
- &.input-lg,
- &.input-sm {
- padding-right: 0;
- padding-left: 0;
- }
- }
- .input-sm {
- .input-size(
- @input-height-small; @padding-small-vertical; @padding-small-horizontal;
- @font-size-small; @line-height-small; @input-border-radius-small
- );
- }
- .form-group-sm {
- .form-control {
- height: @input-height-small;
- padding: @padding-small-vertical @padding-small-horizontal;
- font-size: @font-size-small;
- line-height: @line-height-small;
- border-radius: @input-border-radius-small;
- }
- select.form-control {
- height: @input-height-small;
- line-height: @input-height-small;
- }
- textarea.form-control,
- select[multiple].form-control {
- height: auto;
- }
- .form-control-static {
- height: @input-height-small;
- min-height: (@line-height-computed + @font-size-small);
- padding: (@padding-small-vertical + 1) @padding-small-horizontal;
- font-size: @font-size-small;
- line-height: @line-height-small;
- }
- }
- .input-lg {
- .input-size(
- @input-height-large; @padding-large-vertical; @padding-large-horizontal;
- @font-size-large; @line-height-large; @input-border-radius-large
- );
- }
- .form-group-lg {
- .form-control {
- height: @input-height-large;
- padding: @padding-large-vertical @padding-large-horizontal;
- font-size: @font-size-large;
- line-height: @line-height-large;
- border-radius: @input-border-radius-large;
- }
- select.form-control {
- height: @input-height-large;
- line-height: @input-height-large;
- }
- textarea.form-control,
- select[multiple].form-control {
- height: auto;
- }
- .form-control-static {
- height: @input-height-large;
- min-height: (@line-height-computed + @font-size-large);
- padding: (@padding-large-vertical + 1) @padding-large-horizontal;
- font-size: @font-size-large;
- line-height: @line-height-large;
- }
- }
- .has-feedback {
-
- position: relative;
-
- .form-control {
- padding-right: (@input-height-base * 1.25);
- }
- }
- .form-control-feedback {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 2;
- display: block;
- width: @input-height-base;
- height: @input-height-base;
- line-height: @input-height-base;
- text-align: center;
- pointer-events: none;
- }
- .input-lg + .form-control-feedback,
- .form-group-lg .form-control + .form-control-feedback {
- width: @input-height-large;
- height: @input-height-large;
- line-height: @input-height-large;
- }
- .input-sm + .form-control-feedback,
- .form-group-sm .form-control + .form-control-feedback {
- width: @input-height-small;
- height: @input-height-small;
- line-height: @input-height-small;
- }
- .has-success {
- .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
- }
- .has-warning {
- .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
- }
- .has-error {
- .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
- }
- .has-feedback label {
- & ~ .form-control-feedback {
- top: (@line-height-computed + 5);
- }
- &.sr-only ~ .form-control-feedback {
- top: 0;
- }
- }
- .help-block {
- display: block;
- margin-top: 5px;
- margin-bottom: 10px;
- color: lighten(@text-color, 25%);
- }
- .form-inline {
-
- @media (min-width: @screen-sm-min) {
-
- .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-align: middle;
- }
-
- .form-control {
- display: inline-block;
- width: auto;
- vertical-align: middle;
- }
-
- .form-control-static {
- display: inline-block;
- }
- .control-label {
- margin-bottom: 0;
- vertical-align: middle;
- }
-
-
- .radio,
- .checkbox {
- display: inline-block;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- label {
- padding-left: 0;
- }
- }
- .radio input[type='radio'],
- .checkbox input[type='checkbox'] {
- position: relative;
- margin-left: 0;
- }
-
- .has-feedback .form-control-feedback {
- top: 0;
- }
- }
- }
- .form-horizontal {
-
-
-
- .radio,
- .checkbox,
- .radio-inline,
- .checkbox-inline {
- padding-top: (@padding-base-vertical + 1);
- margin-top: 0;
- margin-bottom: 0;
- }
-
-
- .radio,
- .checkbox {
- min-height: (@line-height-computed + (@padding-base-vertical + 1));
- }
-
- .form-group {
- .make-row();
- }
-
-
- @media (min-width: @screen-sm-min) {
- .control-label {
- padding-top: (@padding-base-vertical + 1);
- margin-bottom: 0;
- text-align: right;
- }
- }
-
-
-
-
- .has-feedback .form-control-feedback {
- right: floor((@grid-gutter-width / 2));
- }
-
-
-
-
- .form-group-lg {
- @media (min-width: @screen-sm-min) {
- .control-label {
- padding-top: (@padding-large-vertical + 1);
- font-size: @font-size-large;
- }
- }
- }
- .form-group-sm {
- @media (min-width: @screen-sm-min) {
- .control-label {
- padding-top: (@padding-small-vertical + 1);
- font-size: @font-size-small;
- }
- }
- }
- }
- .form-control {
- box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.04);
- height: auto;
- border: 1px solid lighten(@gray-lighter, 10);
- padding: 8px 12px 7px;
- position: relative;
- border-radius: 3px;
- color: @gray-dark;
- &.disabled {
- border: 1px solid @trim;
- background: #f7f8f9;
- color: @gray-dark;
- }
- &::-moz-placeholder {
- color: @gray-light;
- opacity: 1;
- }
- &:-ms-input-placeholder {
- color: @gray-light;
- }
- &::-webkit-input-placeholder {
- color: @gray-light;
- }
- &:focus {
- border-color: darken(@gray-lighter, 4);
- box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.04), 0 0 6px rgba(177, 171, 225, 0.3);
- outline: none;
- }
- object {
- position: absolute;
- top: 10px;
- right: 9px;
- }
- }
- .control-label.requiredField,
- .form-stacked .required .controls label {
- &:after {
- margin-left: 10px;
- vertical-align: bottom;
- content: '[required]';
- font-size: 12px;
- color: #999;
- text-transform: uppercase;
- }
-
- .asteriskField {
- display: none;
- }
- }
- .form-stacked .required .controls .radio label {
-
- &:after {
- content: '';
- }
- }
- .form-group,
- .control-group {
- margin-bottom: 15px;
- }
- .form-actions {
- border-top: 1px solid #e9ebec;
- background: none;
- padding: 20px 0 0;
- margin-bottom: 20px;
- p {
- padding: 0;
- line-height: 15px;
- }
- .note {
- color: @gray;
- line-height: 30px;
- }
- }
- .help-block {
- font-weight: normal;
- color: @gray;
- font-size: 90%;
- margin-bottom: 0;
- }
- textarea.form-control {
- height: 150px;
- min-height: 150px;
- min-width: 100%;
- max-width: 100%;
- }
- legend {
- margin: 20px 0;
- border-bottom: 1px solid #e9ebec;
- padding-bottom: 10px;
- }
- .inputs-list label {
- padding-left: 18px;
- }
- .inputs-list label input[type='radio'],
- .inputs-list label input[type='checkbox'] {
- float: left;
- margin-left: -18px;
- }
- label {
- font-weight: 600;
- &.checkbox,
- &.radio {
- padding-left: 25px;
- position: relative;
- input[type='checkbox'] {
- top: 1px;
- left: 0;
- margin-left: 0 !important;
- }
- }
- }
- .boolean-radio-select .inputs-list ul {
- list-style: none;
- margin-bottom: 0;
- padding-left: 0;
- li {
- margin-bottom: 5px;
- &:last-child {
- margin-bottom: 0;
- }
- label {
- font-weight: normal;
- }
- }
- }
- .radio,
- .checkbox {
- label {
- font-weight: 600;
- }
- }
- .has-error .form-control {
- border-color: #c9c0d1;
- box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.04);
- }
- .has-error .form-control:focus {
- border-color: #a598b2;
- box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.04), 0 0 6px rgba(177, 171, 225, 0.3);
- outline: none;
- }
- .error,
- .has-error .help-block,
- .has-error .control-label,
- .has-error .radio,
- .has-error .checkbox,
- .has-error .radio-inline,
- .has-error .checkbox-inline,
- .has-error.radio label,
- .has-error.checkbox label,
- .has-error.radio-inline label,
- .has-error.checkbox-inline label {
- color: @red;
- }
- input.form-control[disabled],
- textarea.form-control[disabled] {
- background: #f9f9f9;
- color: #999;
- }
- .disabled-indicator {
- margin-left: 5px;
- font-size: 80%;
- }
- .form-password {
- &.editing {
- div:first-child {
- width: 85%;
- display: inline-block;
- }
- div:last-child {
- line-height: 37px;
- margin-left: 10px;
- display: inline-block;
- }
- }
- &.saved {
- a {
- margin-left: 10px;
- }
- }
- }
- .deploy-form {
- display: flex;
- align-items: baseline;
- justify-content: space-between;
- .controls {
- display: flex;
- align-items: baseline;
- justify-content: space-around;
- }
- }
|