ed7b1ee29a7da1552ebcf5c5d9ff74a170844fc5
[portal/sdk.git] /
1 [draggable] {
2     -webkit-user-select: none;
3     -moz-user-select: none;
4     -ms-user-select: none;
5     user-select: none;
6     cursor: pointer;
7 }
8
9 .example-list {
10     width: 500px;
11     max-width: 100%;
12     border: solid 1px #ccc;
13     min-height: 60px;
14     display: block;
15     background: white;
16     border-radius: 4px;
17     overflow: hidden;
18   }
19   
20   .example-box {
21     padding: 20px 10px;
22     border-bottom: solid 1px #006496;
23     color: rgba(0, 0, 0, 0.87);
24     display: flex;
25     flex-direction: row;
26     align-items: center;
27     justify-content: space-between;
28     box-sizing: border-box;
29     cursor: move;
30     background: #ffffff00;
31     font-size: 14px;
32     border-radius: 15px;
33   }
34
35   tableWrapper{
36     height: 10px;
37     overflow-y: scroll;
38   }
39
40   table{
41       width: 50%;
42   }
43
44   tr {
45       width: 50%;
46   }
47
48   th{
49     width: 50%;
50   }
51
52   td{
53       width: 50%;
54   }
55
56   input {
57     width: 800px;
58     height: 35px;
59     border-radius: 10px;
60   }
61
62   
63 .field-group {
64   position: relative;
65   display: block;
66 }
67
68 label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row {
69   margin-top: 5px;
70 }
71
72 .data-table{
73   height: 400px;
74   overflow: scroll;
75 }