2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-06-27 15:23:11 +00:00
This commit is contained in:
2019-06-07 23:07:15 +03:00
parent 054a4a0bd8
commit 144db9ee8b
100 changed files with 25137 additions and 1552 deletions

2337
tools/manager/css/font-awesome.css vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,67 @@
.app
{
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
.app-tool-bar
{
display: flex;
width: 100%;
height: 60px;
background-color: var(--default-background-color);
}
.app-center
{
flex: 1;
width: 100%;
display: flex;
background-color: yellow;
}
.app-content
{
flex: 1;
}
.app-menu
{
min-width: 300px;
background-color: red;
}
.app-status-bar
{
height: 60px;
background-color: blue;
}
.browser
{
display: flex;
flex-wrap: wrap;
}
.browser > .bar
{
width: 100%;
flex-grow:2;
height: 40px;
}
.browser > .table:nth-child(2)
{
width: 200px;
height: calc(100% - 40px);
}
.browser > .table:nth-child(3)
{
width: calc(100% - 200px);
height: calc(100% - 40px);
}