83 lines
1.8 KiB
Plaintext
83 lines
1.8 KiB
Plaintext
:root {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
flex-basis: 0;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#gantt-container {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
flex-direction: column;
|
|
background-color: rgb(250, 250, 250);
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.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-row:hover {
|
|
background-color: rgb(228, 236, 255);
|
|
}
|
|
|
|
.task-txt {
|
|
width: 40px;
|
|
height: 40px;
|
|
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);
|
|
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: 1px;
|
|
border-bottom-width: 0;
|
|
margin-top: 0;
|
|
margin-right: 0;
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
padding-top: 0;
|
|
padding-right: 0;
|
|
padding-bottom: 0;
|
|
padding-left: 0;
|
|
flex-direction: row;
|
|
border-right-color: rgb(255, 255, 255);
|
|
}
|
|
|
|
.task-txt:first-child {
|
|
border-left-width: 0;
|
|
}
|