2023-05-03 22:47:23 +00:00
|
|
|
.FinderContent {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
/* Auto layout */
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.FinderContent .ToolBar{
|
|
|
|
width: 100%;
|
|
|
|
height: 20px;
|
2023-05-04 02:00:09 +00:00
|
|
|
border-bottom: 1px solid #555555;
|
|
|
|
background-color: #EEEEEE;
|
|
|
|
}
|
2023-05-03 22:47:23 +00:00
|
|
|
|
2023-05-04 02:00:09 +00:00
|
|
|
.Focused .FinderContent .ToolBar{
|
2023-05-03 22:47:23 +00:00
|
|
|
border-bottom: 1px solid #000000;
|
2023-05-04 02:00:09 +00:00
|
|
|
background-color: #DDDDDD;
|
2023-05-03 22:47:23 +00:00
|
|
|
}
|
2023-05-04 02:00:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-05-03 22:47:23 +00:00
|
|
|
.FinderContent .FinderFileView{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
|
|
|
/* Auto layout */
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 0px;
|
|
|
|
}
|