2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel {
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2015-07-06 15:12:19 +08:00
|
|
|
background: #fff;
|
2015-06-09 15:21:44 +08:00
|
|
|
z-index: 10;
|
|
|
|
position: absolute;
|
|
|
|
outline: none;
|
2015-08-21 15:29:43 +08:00
|
|
|
border-radius: 6px;
|
2015-09-15 18:16:34 +08:00
|
|
|
border-radius: @border-radius-base;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-header {
|
2015-06-09 15:21:44 +08:00
|
|
|
padding: 0 10px;
|
|
|
|
height: 34px;
|
|
|
|
line-height: 34px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
user-select: none;
|
2015-06-11 18:08:00 +08:00
|
|
|
border-bottom: 1px solid #e9e9e9;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-body {
|
2015-06-12 15:39:01 +08:00
|
|
|
padding: 2px 10px;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-title {
|
2015-06-09 15:21:44 +08:00
|
|
|
width: 180px;
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 5px;
|
|
|
|
text-align: center;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 22px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-table {
|
2015-06-09 15:21:44 +08:00
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: separate;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-cell {
|
2015-06-09 15:21:44 +08:00
|
|
|
text-align: center;
|
2015-06-11 18:08:00 +08:00
|
|
|
height: 40px;
|
2015-06-09 15:21:44 +08:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-time {
|
2015-06-11 18:08:00 +08:00
|
|
|
line-height: 24px;
|
2015-06-09 15:21:44 +08:00
|
|
|
display: block;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 0 auto;
|
2015-06-14 13:20:59 +08:00
|
|
|
color: #666;
|
2015-06-09 15:21:44 +08:00
|
|
|
|
|
|
|
&:hover {
|
2015-07-06 11:20:30 +08:00
|
|
|
background: tint(@primary-color, 90%);
|
2015-06-09 15:21:44 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-time-panel-selected-cell .@{calendar-prefix-cls}-time-panel-time {
|
2015-07-06 10:36:58 +08:00
|
|
|
background: @primary-color;
|
2015-06-09 15:21:44 +08:00
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
&:hover {
|
2015-07-06 10:36:58 +08:00
|
|
|
background: @primary-color;
|
2015-06-09 15:21:44 +08:00
|
|
|
color: #fff;
|
|
|
|
}
|
2015-06-11 18:08:00 +08:00
|
|
|
}
|