blob: 1cfd4474b2d9db12fc3ca86237e004b6c82041c4 [file] [log] [blame]
Jonghwan Hyun13a430d2018-07-22 17:02:51 +09001/* css for sample app custom view */
2
3#ov-int-app-main {
4 padding: 20px;
5}
6.light #ov-int-app-main {
7 color: navy;
8}
9.dark #ov-int-app-main {
10 color: #88f;
11}
12
13#ov-int-app-main .button-panel {
14 margin: 10px;
15 width: 200px;
16}
17
18.light #ov-int-app-main .button-panel {
19 background-color: #ccf;
20}
21
22.dark #ov-int-app-main .button-panel {
23 background-color: #444;
24}
25
26#ov-int-app-main .int-app-button {
27 cursor: pointer;
28 padding: 4px;
29 text-align: center;
30}
31
32
33.light #ov-int-app-main .int-app-button {
34 color: white;
35 background-color: #99d;
36}
37.dark #ov-int-app-main .int-app-button {
38 color: black;
39 background-color: #aaa;
40}
41
42#ov-int-app-main .config-button-panel {
43 margin: 10px;
44 width: 200px;
45}
46
47.light #ov-int-app-main .config-button-panel {
48 background-color: #ccf;
49}
50
51.dark #ov-int-app-main .config-button-panel {
52 background-color: #444;
53}
54
55#ov-int-app-main .int-app-config-button {
56 cursor: pointer;
57 padding: 4px;
58 text-align: center;
59}
60
61
62.light #ov-int-app-main .int-app-config-button {
63 color: white;
64 background-color: #99d;
65}
66.dark #ov-int-app-main .int-app-config-button {
67 color: black;
68 background-color: #aaa;
69}
70/*---------------------------------------------------------------------------*/
71#ov-int-app-main h2 {
72 display: inline-block;
73}
74/* #ov-int-app-main .table-body{
75 display: inline-block;
76 overflow-y: scroll;
77 max-height:100px;
78} */
79
80/* Panel Styling */
81#ov-int-app-main-item-details-panel.floatpanel {
82 position: absolute;
83 top: 115px;
84}
85
86.light #ov-int-app-main-item-details-panel.floatpanel {
87 background-color: rgb(229, 234, 237);
88}
89.dark #ov-int-app-main-item-details-panel.floatpanel {
90 background-color: #3A4042;
91}
92
93#ov-int-app-main-item-details-panel h3 {
94 margin: 0;
95 font-size: large;
96}
97
98#ov-int-app-main-item-details-panel h4 {
99 margin: 0;
100}
101
102#ov-int-app-main-item-details-panel td {
103 padding: 5px;
104}
105#ov-int-app-main-item-details-panel td.label {
106 font-style: italic;
107 opacity: 0.8;
108}