less/roojs-bootstrap/alert.scss
[roojs1] / less / roojs-bootstrap / money-field.scss
1
2 .roo-money-field {
3     
4     .roo-money-currency {
5         padding-right: 0px;
6     }
7     
8     .roo-money-amount {
9         padding-left: 0px;
10     }
11     
12     .roo-money-currency-input {
13         border-right: 0px;
14     }
15     
16     .input-group-addon {
17         background-color: transparent;
18         border-left: 0px;
19         border-right: 0px;
20         border-radius: 0px;
21     }
22     
23     .roo-money-amount-input {
24         border-top-left-radius: 0px;
25         border-bottom-left-radius: 0px;
26         text-align: right;
27     }
28     
29 }
30
31 .has-success .roo-money-currency .roo-select2-container .input-group-addon {
32     border-color: $state-success-text;
33     box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px $state-success-text;
34 }
35
36 .has-warning .roo-money-currency .roo-select2-container .input-group-addon {
37     border-color: $state-warning-text;
38     box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px $state-warning-text;
39 }
40
41 .has-error .roo-money-currency .roo-select2-container .input-group-addon {
42     border-color: $state-danger-text;
43     box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px $state-danger-text;
44 }