1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .app {
- font-family: sans-serif;
- padding: 0;
- display: flex;
- position: relative;
- height: 100%;
- }
- .app-stencil {
- width: 200px;
- border: 1px solid #f0f0f0;
- position: relative;
- }
- .app-content {
- flex: 3;
- height: 100%;
- margin-left: 8px;
- margin-right: 8px;
- position: relative;
- box-shadow: 0 0 10px 1px #e9e9e9;
- }
- .app-graph {
- height: 100% !important;
- width: auto !important;
- }
- .x6-graph-scroller {
- border: 1px solid #f0f0f0;
- margin-left: -1px;
- }
- .app-tool {
- position: absolute;
- top: 20px;
- left: 20px;
- background: #edf0f6;
- /* left: 0px; */
- /* left: 220px; */
- }
- .table_toolbar {
- display: flex;
- justify-content: flex-end;
- font-size: 12px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #4a4a4a;
- line-height: 20px;
- margin-bottom: 20px;
- }
- .toolbar_label {
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #7d7d7d;
- margin: 0 24px 0 16px;
- }
- .log {
- background-color: #012b36;
- height: 650px;
- overflow-y: auto;
- color: #638691;
- padding: 8px 10px;
- -ms-overflow-style: none; /* IE 10+ */
- scrollbar-width: none; /* Firefox */
- }
- ::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
|