liuxiaolong
2019-05-06 8700cf1dc46c350371d865532c2914595187788e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.vnis {
  display: flex;
  flex-shrink: 1;
  width: 100%;
}
 
.vnis .form-control {
  flex-shrink: 1;
  border-radius: 0;
}
 
.vnis .btn:first-child {
  html:not([dir=rtl]) & {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
 
  [dir=rtl] & {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
 
.vnis .btn:last-child {
  html:not([dir=rtl]) & {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
 
  [dir=rtl] & {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
 
.material-style .vnis .form-control {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
 
.material-style .vnis .form-control-sm {
  padding-right: .5rem !important;
  padding-left: .5rem !important;
}
 
.material-style .vnis .form-control-lg {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}