Mercurial > hg > orthanc-stone
annotate Resources/CodeGeneration/testWasmIntegrated/styles.css @ 967:e3234630df9c toa2019082801
Removed pragma-no-cache header that seems to be useless (and even nefarious)
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Wed, 28 Aug 2019 10:54:15 +0200 |
parents | f185cfcb72a0 |
children |
rev | line source |
---|---|
498 | 1 .TestWasm-grid-container { |
2 display: grid; | |
3 grid-template-columns: 0.55fr 0.55fr 0.55fr 0.55fr 0.6fr 1.1fr 1.1fr; | |
4 grid-template-rows: 1.1fr 0.9fr 0.2fr 0.3fr 0.1fr 0.3fr 0.1fr; | |
5 grid-template-areas: | |
500
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
6 "SerializedInput SerializedInput SerializedInput SerializedInput ButtonContainer CppOutput CppOutput" |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
7 "SerializedInput SerializedInput SerializedInput SerializedInput ButtonContainer CppOutput CppOutput" |
498 | 8 ". . . . . . ." |
9 "Test1 Test2 Test3 Test4 . . ." | |
10 ". . . . . . ." | |
11 "Test5 Test6 Test7 Test8 . . ." | |
690 | 12 "TestTsCppTs . . . . . ." |
498 | 13 ". . . . . . ." |
14 ; | |
15 height: 480px; | |
16 } | |
17 | |
500
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
18 .TestWasm-ButtonContainer { |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
19 display: grid; |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
20 grid-template-columns: 0.2fr 0.8fr 0.2fr; |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
21 grid-template-rows: 0.2fr 0.5fr 0.2fr 0.5fr 0.2fr 0.5fr 0.2fr; |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
22 grid-template-areas: |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
23 ". . ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
24 ". TriggerButton ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
25 ". . ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
26 ". ClearButton ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
27 ". . ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
28 ". ShowSchemaButton ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
29 ". . ." |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
30 ; |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
31 } |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
32 |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
33 .TestWasm-TriggerButton { grid-area: TriggerButton; } |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
34 |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
35 .TestWasm-ClearButton { grid-area: ClearButton; } |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
36 |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
37 .TestWasm-ShowSchemaButton { grid-area: ShowSchemaButton; } |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
38 |
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
39 |
498 | 40 .TestWasm-SerializedInput { grid-area: SerializedInput; } |
41 | |
42 .TestWasm-CppOutput { grid-area: CppOutput; } | |
43 | |
500
329f229c2794
Improvements to the integrated demo for TS <--> C++
bgo-osimis
parents:
498
diff
changeset
|
44 .TestWasm-ButtonContainer { grid-area: ButtonContainer; } |
498 | 45 |
46 .TestWasm-Test1 { grid-area: Test1; } | |
47 | |
48 .TestWasm-Test2 { grid-area: Test2; } | |
49 | |
50 .TestWasm-Test3 { grid-area: Test3; } | |
51 | |
52 .TestWasm-Test4 { grid-area: Test4; } | |
53 | |
54 .TestWasm-Test5 { grid-area: Test5; } | |
55 | |
56 .TestWasm-Test6 { grid-area: Test6; } | |
57 | |
58 .TestWasm-Test7 { grid-area: Test7; } | |
59 | |
60 .TestWasm-Test8 { grid-area: Test8; } | |
61 | |
690 | 62 .TestWasm-ts-cpp-ts { grid-area: TestTsCppTs; } |
63 | |
498 | 64 .TestWasm-button { |
65 width:80px; | |
66 } |