field-range.css
1.47 KB
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
50
51
52
53
54
55
56
57
58
59
60
/*!
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014
* @package yii2-field-range
* @version 1.3.0
*
* Styling for Field Range
* Built for Yii Framework 2.0
* Author: Kartik Visweswaran
* Year: 2014
* For more Yii related demos visit http://demos.krajee.com
*/
.kv-container-from, .kv-container-to {
padding: 0;
border: 0;
}
.kv-field-from {
border-radius: 4px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.kv-field-to {
border-radius: 4px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
text-align: left;
}
.kv-container-from .form-control {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.kv-container-from .input-group .form-control + .input-group-addon {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.kv-container-to .form-control {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.kv-container-to > .form-control {
border-radius: 4px !important;
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.kv-container-to .input-group .input-group-addon:first-child {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.kv-container-to .input-group .input-group-addon:last-child {
border-radius: 4px !important;
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}