Add validation for int and float constraints
[sdc.git] / catalog-ui / src / app / view-models / forms / property-forms / base-property-form / property-form-base.less
1 .sdc-edit-property-container {
2     .scrollbar-container{
3         height: 475px;
4         width: 830px;
5         .perfect-scrollbar;
6     }
7
8     form{
9         [name="description"]{
10             min-height:50px;
11         }
12     }
13
14     .sdc-modal-top-bar{
15         height: 40px;
16         .sdc-modal-top-bar-buttons {
17             float: right;
18
19             > span:not(.delimiter){
20                 vertical-align: middle;
21                 .hand;
22
23                 &.sprite-new {
24                     text-indent: 100%;
25                 }
26                 &.disabled, &:hover.disabled {
27                     pointer-events: none;
28                 }
29             }
30
31             .delete-btn{
32                 margin-right: 6px;
33             }
34
35             .left-arrow{
36                 margin-right: 8px;
37             }
38
39             .delimiter {
40                 height: 20px;
41                 width: 1px;
42                 background-color: #959595;
43                 display: inline-block;
44                 vertical-align: middle;
45                 margin-right: 10px;
46             }
47         }
48     }
49
50     .w-sdc-form-note {
51         .h_9;
52         display: block;
53         position: relative;
54         top: 13px;
55     }
56
57     .default-value-section, .constraints-section {
58         border-top: solid 1px @main_color_a;
59         padding-top: 15px;
60         margin-top: 15px;
61     }
62 }