blob: 223ee4e1e2c5296b24a85c9063b9cbd7cb39a103 [file] [log] [blame]
srikanth116e6e82014-08-19 07:22:37 -07001 ul.bsntimeinterval {
2 list-style: none;
3 margin: 2px;
4 padding: 0px;
5 vertical-align: middle;
6 clear: both;
7 }
8 ul.bsntimeinterval li {
9 float: left;
10 margin: 0;
11 padding: 0;
12 height: 30px;
13 display: table;
14 border-spacing: 0px;
15 }
16 .bsntimeinterval div.center {
17 display: table-cell;
18 vertical-align: middle;
19 }
20 .bsntimeinterval a {
21 display: block;
22 }
23 a.bsnselector {
24 cursor: pointer;
25 margin: 0px;
26 padding: 3px;
27 border: solid 1px #333333;
28 border-right: none;
29 color: #2E6E9E;
30 vertical-align: middle;
31
32 background-color: #EEEEEE;
33 /* Firefox 3.6+ */
34 background: -moz-linear-gradient(100% 100% 90deg, #CCCCCC, #EEEEEE);
35
36 /* Safari 5.1+, Chrome 10+ */
37 background: -webkit-linear-gradient(#EEEEEE, #CCCCCC);
38
39 /* Opera 11.10+ */
40 background: -o-linear-gradient(#CCCCCC, #EEEEEE);
41
42 }
43 a.bsnselector.left {
44 border-top-left-radius: .5em;
45 border-bottom-left-radius: .5em;
46 }
47 a.bsnselector.right {
48 border-top-right-radius: .5em;
49 border-bottom-right-radius: .5em;
50 border-right: solid 1px #333333;
51 }
52 a.bsnselector:hover {
53 background-color: #DDDDDD;
54
55 /* Firefox 3.6+ */
56 background: -moz-linear-gradient(100% 100% 90deg, #BBBBBB, #DDDDDD);
57
58 /* Safari 5.1+, Chrome 10+ */
59 background: -webkit-linear-gradient(#DDDDDD, #BBBBBB);
60
61 /* Opera 11.10+ */
62 background: -o-linear-gradient(#BBBBBB, #DDDDDD);
63 }
64 a.bsnselector.selected {
65 color: #EEEEEE;
66 background-color: #2E6E9E;
67
68 /* Firefox 3.6+ */
69 background: -moz-linear-gradient(100% 100% 90deg, #2E6E9E, #3D92C2);
70
71 /* Safari 5.1+, Chrome 10+ */
72 background: -webkit-linear-gradient(#3D92C2, #2E6E9E);
73
74 /* Opera 11.10+ */
75 background: -o-linear-gradient(#2E6E9E, #3D92C2);
76 }
77 .bsnlabel {
78 margin-left: 5px;
79 margin-right: 2px;
80 }
81 .bsnlabel.disabled {
82 color: #BBBBBB;
83 }
84 .bsntimepicker {
85 width: 10em;
86 }
87 .bsncheckbox {
88 vertical-align: middle;
89 margin-left: 5px;
90 margin-right: 0px;
91 }
92 .bsnarrow {
93 cursor: pointer;
94 padding-left: 3px;
95 padding-right: 3px;
96 }
97 .bsnarrow div {
98 width: 0;
99 height: 0;
100 }
101 .bsnarrow.left div {
102 border-top: 11px solid transparent;
103 border-bottom: 11px solid transparent;
104 border-right:10px solid #CCCCCC;
105 }
106 .bsnarrow.left:hover div {
107 border-right:10px solid #2E6E9E;
108 }
109 .bsnarrow.right div {
110 border-top: 11px solid transparent;
111 border-bottom: 11px solid transparent;
112 border-left: 10px solid #CCCCCC;
113 }
114 .bsnarrow.right:hover div {
115 border-left: 10px solid #2E6E9E;
116 }
117 .bsncheckbox {
118 display: inline;
119 }
120 .clear {
121 clear: both;
122 }