Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7350 stevensc 1
/*!
2
 * https://github.com/arqex/react-datetime
3
 */
4
 
5
.rdt {
6
  position: relative;
7
}
8
.rdtPicker {
9
  display: none;
10
  position: absolute;
11
  min-width: 250px;
12
  padding: 4px;
13
  margin-top: 1px;
14
  z-index: 99999 !important;
15
  background: #fff;
16
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
17
  border: 1px solid #f9f9f9;
18
}
19
.rdtOpen .rdtPicker {
20
  display: block;
21
}
22
.rdtStatic .rdtPicker {
23
  box-shadow: none;
24
  position: static;
25
}
26
 
27
.rdtPicker .rdtTimeToggle {
28
  text-align: center;
29
}
30
 
31
.rdtPicker table {
32
  width: 100%;
33
  margin: 0;
34
}
35
.rdtPicker td,
36
.rdtPicker th {
37
  text-align: center;
38
  height: 28px;
39
}
40
.rdtPicker td {
41
  cursor: pointer;
42
}
43
.rdtPicker td.rdtDay:hover,
44
.rdtPicker td.rdtHour:hover,
45
.rdtPicker td.rdtMinute:hover,
46
.rdtPicker td.rdtSecond:hover,
47
.rdtPicker .rdtTimeToggle:hover {
48
  background: #eeeeee;
49
  cursor: pointer;
50
}
51
.rdtPicker td.rdtOld,
52
.rdtPicker td.rdtNew {
53
  color: #999999;
54
}
55
.rdtPicker td.rdtToday {
56
  position: relative;
57
}
58
.rdtPicker td.rdtToday:before {
59
  content: '';
60
  display: inline-block;
61
  border-left: 7px solid transparent;
62
  border-bottom: 7px solid #428bca;
63
  border-top-color: rgba(0, 0, 0, 0.2);
64
  position: absolute;
65
  bottom: 4px;
66
  right: 4px;
67
}
68
.rdtPicker td.rdtActive,
69
.rdtPicker td.rdtActive:hover {
70
  background-color: #428bca;
71
  color: #fff;
72
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
73
}
74
.rdtPicker td.rdtActive.rdtToday:before {
75
  border-bottom-color: #fff;
76
}
77
.rdtPicker td.rdtDisabled,
78
.rdtPicker td.rdtDisabled:hover {
79
  background: none;
80
  color: #999999;
81
  cursor: not-allowed;
82
}
83
 
84
.rdtPicker td span.rdtOld {
85
  color: #999999;
86
}
87
.rdtPicker td span.rdtDisabled,
88
.rdtPicker td span.rdtDisabled:hover {
89
  background: none;
90
  color: #999999;
91
  cursor: not-allowed;
92
}
93
.rdtPicker th {
94
  border-bottom: 1px solid #f9f9f9;
95
}
96
.rdtPicker .dow {
97
  width: 14.2857%;
98
  border-bottom: none;
99
  cursor: default;
100
}
101
.rdtPicker th.rdtSwitch {
102
  width: 100px;
103
}
104
.rdtPicker th.rdtNext,
105
.rdtPicker th.rdtPrev {
106
  font-size: 21px;
107
  vertical-align: top;
108
}
109
 
110
.rdtPrev span,
111
.rdtNext span {
112
  display: block;
113
  -webkit-touch-callout: none; /* iOS Safari */
114
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
115
  -khtml-user-select: none;    /* Konqueror */
116
  -moz-user-select: none;      /* Firefox */
117
  -ms-user-select: none;       /* Internet Explorer/Edge */
118
  user-select: none;
119
}
120
 
121
.rdtPicker th.rdtDisabled,
122
.rdtPicker th.rdtDisabled:hover {
123
  background: none;
124
  color: #999999;
125
  cursor: not-allowed;
126
}
127
.rdtPicker thead tr:first-of-type th {
128
  cursor: pointer;
129
}
130
.rdtPicker thead tr:first-of-type th:hover {
131
  background: #eeeeee;
132
}
133
 
134
.rdtPicker tfoot {
135
  border-top: 1px solid #f9f9f9;
136
}
137
 
138
.rdtPicker button {
139
  border: none;
140
  background: none;
141
  cursor: pointer;
142
}
143
.rdtPicker button:hover {
144
  background-color: #eee;
145
}
146
 
147
.rdtPicker thead button {
148
  width: 100%;
149
  height: 100%;
150
}
151
 
152
td.rdtMonth,
153
td.rdtYear {
154
  height: 50px;
155
  width: 25%;
156
  cursor: pointer;
157
}
158
td.rdtMonth:hover,
159
td.rdtYear:hover {
160
  background: #eee;
161
}
162
 
163
.rdtCounters {
164
  display: inline-block;
165
}
166
 
167
.rdtCounters > div {
168
  float: left;
169
}
170
 
171
.rdtCounter {
172
  height: 100px;
173
}
174
 
175
.rdtCounter {
176
  width: 40px;
177
}
178
 
179
.rdtCounterSeparator {
180
  line-height: 100px;
181
}
182
 
183
.rdtCounter .rdtBtn {
184
  height: 40%;
185
  line-height: 40px;
186
  cursor: pointer;
187
  display: block;
188
 
189
  -webkit-touch-callout: none; /* iOS Safari */
190
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
191
  -khtml-user-select: none;    /* Konqueror */
192
  -moz-user-select: none;      /* Firefox */
193
  -ms-user-select: none;       /* Internet Explorer/Edge */
194
  user-select: none;
195
}
196
.rdtCounter .rdtBtn:hover {
197
  background: #eee;
198
}
199
.rdtCounter .rdtCount {
200
  height: 20%;
201
  font-size: 1.2em;
202
}
203
 
204
.rdtMilli {
205
  vertical-align: middle;
206
  padding-left: 8px;
207
  width: 48px;
208
}
209
 
210
.rdtMilli input {
211
  width: 100%;
212
  font-size: 1.2em;
213
  margin-top: 37px;
214
}
215
 
216
.rdtTime td {
217
  cursor: default;
218
}
219