blob: 7c2bbe2542da8d153dc1d2cbdbab749382cb05ca [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
Carmelo Casconefa421582018-09-13 10:05:57 -070061#ov-int-app-main input {
62 padding: 4px;
63 font-size: inherit;
64}
Jonghwan Hyun13a430d2018-07-22 17:02:51 +090065
66.light #ov-int-app-main .int-app-config-button {
67 color: white;
68 background-color: #99d;
69}
70.dark #ov-int-app-main .int-app-config-button {
71 color: black;
72 background-color: #aaa;
73}
74/*---------------------------------------------------------------------------*/
Carmelo Casconefa421582018-09-13 10:05:57 -070075#ov-int-app-main hr {
76 border: 0;
77 height: 1px;
78 background: #333;
79}
80
Jonghwan Hyun13a430d2018-07-22 17:02:51 +090081#ov-int-app-main h2 {
82 display: inline-block;
Carmelo Casconefa421582018-09-13 10:05:57 -070083 margin: 15px 0px 15px;
84}
85
86#ov-int-app-main h3 {
87 display: inline-block;
88 margin-bottom: 10px;
89}
90
91#ov-int-app-main h4 {
92 display: inline-block;
93 margin-bottom: 10px;
Jonghwan Hyun13a430d2018-07-22 17:02:51 +090094}
95/* #ov-int-app-main .table-body{
96 display: inline-block;
97 overflow-y: scroll;
98 max-height:100px;
99} */
100
101/* Panel Styling */
102#ov-int-app-main-item-details-panel.floatpanel {
103 position: absolute;
104 top: 115px;
105}
106
107.light #ov-int-app-main-item-details-panel.floatpanel {
108 background-color: rgb(229, 234, 237);
109}
110.dark #ov-int-app-main-item-details-panel.floatpanel {
111 background-color: #3A4042;
112}
113
114#ov-int-app-main-item-details-panel h3 {
115 margin: 0;
116 font-size: large;
117}
118
119#ov-int-app-main-item-details-panel h4 {
120 margin: 0;
121}
122
123#ov-int-app-main-item-details-panel td {
124 padding: 5px;
125}
126#ov-int-app-main-item-details-panel td.label {
127 font-style: italic;
128 opacity: 0.8;
129}