1+ <!doctype html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="UTF-8 ">
6+ < meta name ="viewport "
7+ content ="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0 ">
8+ < meta http-equiv ="X-UA-Compatible " content ="ie=edge ">
9+
10+ < link rel ="stylesheet " href ="https://fonts.googleapis.com/icon?family=Material+Icons ">
11+ < link rel ="icon " type ="image/x-icon " href ="https://thatopen.github.io/engine_components/resources/favicon.ico ">
12+ < title > Edit Elements</ title >
13+ < style >
14+ body {
15+ margin : 0 ;
16+ padding : 0 ;
17+ font-family : "Plus Jakarta Sans" , sans-serif;
18+ overflow : hidden;
19+ }
20+
21+ .full-screen {
22+ width : 100vw ;
23+ height : 100vh ;
24+ position : relative;
25+ overflow : hidden;
26+ }
27+
28+ .options-menu {
29+ position : fixed;
30+ min-width : unset;
31+ top : 5px ;
32+ right : 5px ;
33+ max-height : calc (100vh - 10px );
34+ max-width : 15rem ;
35+ }
36+
37+ .main-container {
38+ display : grid;
39+ grid-template :
40+ "history main" 1fr
41+ / 20% 80% ;
42+ }
43+
44+ .history-request {
45+ display : flex;
46+ gap : 0.5rem ;
47+ position : relative;
48+ margin : -5px 0 ;
49+ }
50+
51+ .history-request bim-button {
52+ max-width : fit-content;
53+ height : fit-content;
54+ border-radius : 100% ;
55+ border : 1px solid white;
56+ transform : scale (0.75 );
57+ }
58+
59+ .history-request-title {
60+ font-weight : bold;
61+ text-wrap : auto;
62+ }
63+
64+ .history-request-subtitle {
65+ font-size : 0.8rem ;
66+ opacity : 0.5 ;
67+ }
68+
69+ .history-line {
70+ position : absolute;
71+ width : 1px ;
72+ height : 100% ;
73+ background-color : white;
74+ opacity : 0.5 ;
75+ left : 0.9rem ;
76+ top : 1rem ;
77+ }
78+
79+ .selected-request {
80+ background-color : var (--bim-ui_main-base );
81+ }
82+
83+ .phone-menu-toggler {
84+ visibility : hidden;
85+ }
86+
87+ @media (max-width : 480px ) {
88+ .options-menu {
89+ visibility : hidden;
90+ bottom : 5px ;
91+ left : 5px ;
92+ max-width : none;
93+ }
94+
95+ .options-menu-visible {
96+ visibility : visible;
97+ }
98+
99+ .phone-menu-toggler {
100+ visibility : visible;
101+ position : fixed;
102+ top : 5px ;
103+ right : 5px ;
104+ }
105+ }
106+ </ style >
107+ < script type ="module " crossorigin src ="../../assets/editElements.js "> </ script >
108+ < link rel ="modulepreload " crossorigin href ="../../assets/virtual-memory-controller-ZSRKHGNY.js ">
109+ < link rel ="modulepreload " crossorigin href ="../../assets/stats.min-Cj8wREqt.js ">
110+ < link rel ="modulepreload " crossorigin href ="../../assets/index-CWj6LyOo.js ">
111+ < link rel ="modulepreload " crossorigin href ="../../assets/index-CqDgYQyW.js ">
112+ </ head >
113+
114+ < body >
115+ < div class ="full-screen main-container ">
116+ < bim-panel style ="grid-area: history; border-radius: 0; " class ="history-panel ">
117+ < bim-panel-section id ="history-menu " fixed label ="History "> </ bim-panel-section >
118+ </ bim-panel >
119+ < div style ="grid-area: main; " id ="container "> </ div >
120+ </ div >
121+ </ body >
122+
123+ </ html >
0 commit comments