148 lines
3.1 KiB
Plaintext
148 lines
3.1 KiB
Plaintext
#task-list-header {
|
|
align-items: flex-start;
|
|
padding-top: 6px;
|
|
}
|
|
|
|
#gantt-container {
|
|
flex-grow: 1;
|
|
flex-direction: row;
|
|
background-color: rgb(250, 250, 250);
|
|
}
|
|
|
|
#task-list-panel {
|
|
width: 390px;
|
|
background-color: white;
|
|
border-right-width: 1px;
|
|
border-right-color: rgb(51, 51, 51);
|
|
}
|
|
|
|
#task-list-header {
|
|
height: 54px;
|
|
background-color: rgb(123, 183, 226);
|
|
border-bottom-width: 1px;
|
|
border-bottom-color: black;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
font-size: 12px;
|
|
-unity-text-align: upper-center;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
#task-list-header Label {
|
|
font-size: 12px;
|
|
-unity-font-style: normal;
|
|
color: black;
|
|
margin-bottom: 4px;
|
|
-unity-background-scale-mode: stretch-to-fill;
|
|
justify-content: center;
|
|
align-self: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
-unity-text-align: middle-left;
|
|
}
|
|
|
|
#task-list-view {
|
|
flex-grow: 1;
|
|
background-color: rgb(228, 236, 255);
|
|
}
|
|
|
|
#task-list-view .unity-list-view__item {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.task-row {
|
|
flex-direction: row;
|
|
height: 49px;
|
|
width: 390px;
|
|
background-color: rgb(136, 190, 230);
|
|
border-top-style: solid;
|
|
border-bottom-style: solid;
|
|
border-left-style: solid;
|
|
border-right-style: solid;
|
|
border-top-width: 0;
|
|
border-bottom-width: 0;
|
|
border-left-width: 0;
|
|
border-right-width: 0;
|
|
border-bottom-color: rgb(136, 190, 230);
|
|
border-left-color: rgb(136, 190, 230);
|
|
border-right-color: rgb(136, 190, 230);
|
|
box-sizing: border-box;
|
|
-unity-font-definition: resource('Fonts/Pretendard/Pretendard-Regular');
|
|
font-size: 10px;
|
|
color: rgb(34, 34, 34);
|
|
}
|
|
|
|
.task-row:first-child {
|
|
border-top-width: 1px;
|
|
border-top-color: rgb(136, 190, 230);
|
|
}
|
|
|
|
.task-cell {
|
|
width: 48px;
|
|
height: 48px;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
-unity-text-align: middle-center;
|
|
font-size: 10px;
|
|
color: rgb(34, 34, 34);
|
|
background-color: rgb(228, 236, 255);
|
|
border-left-width: 0;
|
|
border-left-color: rgb(136, 190, 230);
|
|
border-left-style: solid;
|
|
box-sizing: border-box;
|
|
-unity-font-definition: resource('Fonts/Pretendard/Pretendard-Regular');
|
|
border-top-width: 0;
|
|
border-right-width: 0;
|
|
border-bottom-width: 0;
|
|
margin-top: 0;
|
|
margin-right: 1px;
|
|
margin-bottom: 1px;
|
|
margin-left: 0;
|
|
padding-top: 0;
|
|
padding-right: 0;
|
|
padding-bottom: 0;
|
|
padding-left: 0;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.task-cell:first-child {
|
|
border-left-width: 0;
|
|
}
|
|
|
|
.task-row:hover {
|
|
background-color: rgb(228, 236, 255);
|
|
}
|
|
|
|
#timeline-panel {
|
|
flex-grow: 1;
|
|
background-color: white;
|
|
}
|
|
|
|
#timeline-header {
|
|
height: 54px;
|
|
background-color: rgb(240, 240, 240);
|
|
border-bottom-width: 1px;
|
|
border-bottom-color: black;
|
|
}
|
|
|
|
#time-axis-scroll {
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#time-axis-container {
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
#timeline-scroll-view {
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
}
|