Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / pybind / mgr / dashboard / static / AdminLTE-2.3.7 / build / bootstrap-less / mixins / forms.less
1 // Form validation states
2 //
3 // Used in forms.less to generate the form validation CSS for warnings, errors,
4 // and successes.
5
6 .form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
7   // Color the label and help text
8   .help-block,
9   .control-label,
10   .radio,
11   .checkbox,
12   .radio-inline,
13   .checkbox-inline,
14   &.radio label,
15   &.checkbox label,
16   &.radio-inline label,
17   &.checkbox-inline label {
18     color: @text-color;
19   }
20   // Set the border and box shadow on specific inputs to match
21   .form-control {
22     border-color: @border-color;
23     .box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075)); // Redeclare so transitions work
24     &:focus {
25       border-color: darken(@border-color, 10%);
26       @shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px lighten(@border-color, 20%);
27       .box-shadow(@shadow);
28     }
29   }
30   // Set validation states also for addons
31   .input-group-addon {
32     color: @text-color;
33     border-color: @border-color;
34     background-color: @background-color;
35   }
36   // Optional feedback icon
37   .form-control-feedback {
38     color: @text-color;
39   }
40 }
41
42 // Form control focus state
43 //
44 // Generate a customized focus state and for any input with the specified color,
45 // which defaults to the `@input-border-focus` variable.
46 //
47 // We highly encourage you to not customize the default value, but instead use
48 // this to tweak colors on an as-needed basis. This aesthetic change is based on
49 // WebKit's default styles, but applicable to a wider range of browsers. Its
50 // usability and accessibility should be taken into account with any change.
51 //
52 // Example usage: change the default blue border and shadow to white for better
53 // contrast against a dark gray background.
54 .form-control-focus(@color: @input-border-focus) {
55   @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
56   &:focus {
57     border-color: @color;
58     outline: 0;
59     .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
60   }
61 }
62
63 // Form control sizing
64 //
65 // Relative text size, padding, and border-radii changes for form controls. For
66 // horizontal sizing, wrap controls in the predefined grid classes. `<select>`
67 // element gets special love because it's special, and that's a fact!
68 .input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
69   height: @input-height;
70   padding: @padding-vertical @padding-horizontal;
71   font-size: @font-size;
72   line-height: @line-height;
73   border-radius: @border-radius;
74
75   select& {
76     height: @input-height;
77     line-height: @input-height;
78   }
79
80   textarea&,
81   select[multiple] & {
82     height: auto;
83   }
84 }