﻿/*
//********************************************************************************
// タイムテーブル for REPS
//--------------------------------------------------------------------------------
// 作成：ACT-SYSTEMS OMI
// 日時：2017.08.24
//********************************************************************************
*/

/* ---------------------------------------- */
/* 全体 */
/* ---------------------------------------- */
/* タイムテーブル */
.er-timetable {
    font-family: "メイリオ";
    font-size: x-small;
    width: 100%;
    background-color:#eeeeee;
}
/* テーブル */
.er-timetable table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed; /* 見出し部折返し禁止(セル高さが変わらないように) */
    border: 1px solid #aaaaaa;
}
/* セル */
.er-timetable th{       /* ヘッダ領域セル */
    font-weight: normal;
    border-width:0px 1px 1px 0px;
    border-style:solid;
    border-color:#aaaaaa;
    text-align: left;
    padding: 0;
    overflow:hidden;
    vertical-align:top;
}
.er-timetable td {      /* クライアント領域セル */
    border-width:1px;
    border-top:1px solid #aaaaaa;
    border-left-style:none;
    border-bottom-style:none;
    border-right:1px solid #eeeeee;
    background-color:#ffffff;
}
.er-timetable .m00prev{ /*正時罫線*/
    border-right:1px dashed #888888;
}
.er-timetable .tt-closer{
    border-right:1px solid #aaaaaa;
}

/* ---------------------------------------- */
/* 領域枠 */
/* ---------------------------------------- */
/* コーナー */
.er-timetable .tt-corner{
    float:left;
}
.er-timetable .tt-corner-h{
    border-bottom:1px solid transparent;
}
.er-timetable .tt-corner-m{
    border-top-style:none;
}

/* 列ヘッダ */
.er-timetable .tt-colheader {
    background-color: #eeeeee;
    overflow:hidden;
}
/* 行ヘッダ */
.er-timetable .tt-rowheader {
    float:left;
    background-color: #eeeeee;
    width: 10em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    height:200px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch; /* iOSスクロール対応 */
}
/* クライアント領域 */
.er-timetable .tt-clientarea {
    background-color: #eeeeee;
}
/* フロート解除 */
/*.er-timetable .tt-clearfix{
    clear:both;
}*/
/* ---------------------------------------- */
/* スケジュール */
/* ---------------------------------------- */
/* スケジュール バー */
.tt-schedule {
    position:absolute;
    border: 1px solid #444444;
    border-radius: 3px;
    background-color: steelblue;
    color: white;
    font-size:x-small;
}
.tt-schedule:focus{
    outline: none;  //Chrome フォーカス枠対応
}
/* スケジュール パネル */
.tt-schedule-panel{
    /*background-color:steelblue;*/
    background-color:green;
    width:100%;
    height:100%;
    border-radius: 2px;
    opacity:.6;
}
/* スケジュール タイトル */
.tt-schedule-title{
    white-space:nowrap;
    overflow:hidden;
    line-height:1.5em;
    padding:3px;
}

.tt-schedule:focus{
    z-index:1;
}