@lingk/sync 1.1.51 → 1.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,334 @@
1
+ /* BASICS */
2
+
3
+ .CodeMirror {
4
+ /* Set height, width, borders, and global font properties here */
5
+ font-family: monospace;
6
+ height: 300px;
7
+ color: black;
8
+ direction: ltr;
9
+ }
10
+
11
+ /* PADDING */
12
+
13
+ .CodeMirror-lines {
14
+ padding: 4px 0; /* Vertical padding around content */
15
+ }
16
+ .CodeMirror pre {
17
+ padding: 0 4px; /* Horizontal padding of content */
18
+ }
19
+
20
+ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
21
+ background-color: white; /* The little square between H and V scrollbars */
22
+ }
23
+
24
+ /* GUTTER */
25
+
26
+ .CodeMirror-gutters {
27
+ border-right: 1px solid #ddd;
28
+ background-color: #f7f7f7;
29
+ white-space: nowrap;
30
+ }
31
+ .CodeMirror-linenumbers {}
32
+ .CodeMirror-linenumber {
33
+ padding: 0 3px 0 5px;
34
+ min-width: 20px;
35
+ text-align: right;
36
+ color: #999;
37
+ white-space: nowrap;
38
+ }
39
+
40
+ .CodeMirror-guttermarker { color: black; }
41
+ .CodeMirror-guttermarker-subtle { color: #999; }
42
+
43
+ /* CURSOR */
44
+
45
+ .CodeMirror-cursor {
46
+ border-left: 1px solid black;
47
+ border-right: none;
48
+ width: 0;
49
+ }
50
+ /* Shown when moving in bi-directional text */
51
+ .CodeMirror div.CodeMirror-secondarycursor {
52
+ border-left: 1px solid silver;
53
+ }
54
+ .cm-fat-cursor .CodeMirror-cursor {
55
+ width: auto;
56
+ border: 0 !important;
57
+ background: #7e7;
58
+ }
59
+ .cm-fat-cursor div.CodeMirror-cursors {
60
+ z-index: 1;
61
+ }
62
+ .cm-fat-cursor-mark {
63
+ background-color: rgba(20, 255, 20, 0.5);
64
+ animation: blink 1.06s steps(1) infinite;
65
+ }
66
+ .cm-animate-fat-cursor {
67
+ width: auto;
68
+ border: 0;
69
+ animation: blink 1.06s steps(1) infinite;
70
+ background-color: #7e7;
71
+ }
72
+ @keyframes blink {
73
+ 0% {}
74
+ 50% { background-color: transparent; }
75
+ 100% {}
76
+ }
77
+
78
+ /* Can style cursor different in overwrite (non-insert) mode */
79
+ .CodeMirror-overwrite .CodeMirror-cursor {}
80
+
81
+ .cm-tab { display: inline-block; text-decoration: inherit; }
82
+
83
+ .CodeMirror-rulers {
84
+ position: absolute;
85
+ left: 0; right: 0; top: -50px; bottom: -20px;
86
+ overflow: hidden;
87
+ }
88
+ .CodeMirror-ruler {
89
+ border-left: 1px solid #ccc;
90
+ top: 0; bottom: 0;
91
+ position: absolute;
92
+ }
93
+
94
+ /* DEFAULT THEME */
95
+
96
+ .cm-s-default .cm-header {color: blue;}
97
+ .cm-s-default .cm-quote {color: #090;}
98
+ .cm-negative {color: #d44;}
99
+ .cm-positive {color: #292;}
100
+ .cm-header, .cm-strong {font-weight: bold;}
101
+ .cm-em {font-style: italic;}
102
+ .cm-link {text-decoration: underline;}
103
+ .cm-strikethrough {text-decoration: line-through;}
104
+
105
+ .cm-s-default .cm-keyword {color: #708;}
106
+ .cm-s-default .cm-atom {color: #219;}
107
+ .cm-s-default .cm-number {color: #164;}
108
+ .cm-s-default .cm-def {color: #00f;}
109
+ .cm-s-default .cm-variable,
110
+ .cm-s-default .cm-punctuation,
111
+ .cm-s-default .cm-property,
112
+ .cm-s-default .cm-operator {}
113
+ .cm-s-default .cm-variable-2 {color: #05a;}
114
+ .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
115
+ .cm-s-default .cm-comment {color: #a50;}
116
+ .cm-s-default .cm-string {color: #a11;}
117
+ .cm-s-default .cm-string-2 {color: #f50;}
118
+ .cm-s-default .cm-meta {color: #555;}
119
+ .cm-s-default .cm-qualifier {color: #555;}
120
+ .cm-s-default .cm-builtin {color: #30a;}
121
+ .cm-s-default .cm-bracket {color: #997;}
122
+ .cm-s-default .cm-tag {color: #170;}
123
+ .cm-s-default .cm-attribute {color: #00c;}
124
+ .cm-s-default .cm-hr {color: #999;}
125
+ .cm-s-default .cm-link {color: #00c;}
126
+
127
+ .cm-s-default .cm-error {color: #f00;}
128
+ .cm-invalidchar {color: #f00;}
129
+
130
+ .CodeMirror-composing { border-bottom: 2px solid; }
131
+
132
+ /* Default styles for common addons */
133
+
134
+ div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
135
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
136
+ .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
137
+ .CodeMirror-activeline-background {background: #e8f2ff;}
138
+
139
+ /* STOP */
140
+
141
+ /* The rest of this file contains styles related to the mechanics of
142
+ the editor. You probably shouldn't touch them. */
143
+
144
+ .CodeMirror {
145
+ position: relative;
146
+ overflow: hidden;
147
+ background: white;
148
+ }
149
+
150
+ .CodeMirror-scroll {
151
+ overflow: scroll !important; /* Things will break if this is overridden */
152
+ /* 30px is the magic margin used to hide the element's real scrollbars */
153
+ /* See overflow: hidden in .CodeMirror */
154
+ margin-bottom: -30px; margin-right: -30px;
155
+ padding-bottom: 30px;
156
+ height: 100%;
157
+ outline: none; /* Prevent dragging from highlighting the element */
158
+ position: relative;
159
+ }
160
+ .CodeMirror-sizer {
161
+ position: relative;
162
+ border-right: 30px solid transparent;
163
+ }
164
+
165
+ /* The fake, visible scrollbars. Used to force redraw during scrolling
166
+ before actual scrolling happens, thus preventing shaking and
167
+ flickering artifacts. */
168
+ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
169
+ position: absolute;
170
+ z-index: 6;
171
+ display: none;
172
+ }
173
+ .CodeMirror-vscrollbar {
174
+ right: 0; top: 0;
175
+ overflow-x: hidden;
176
+ overflow-y: scroll;
177
+ }
178
+ .CodeMirror-hscrollbar {
179
+ bottom: 0; left: 0;
180
+ overflow-y: hidden;
181
+ overflow-x: scroll;
182
+ }
183
+ .CodeMirror-scrollbar-filler {
184
+ right: 0; bottom: 0;
185
+ }
186
+ .CodeMirror-gutter-filler {
187
+ left: 0; bottom: 0;
188
+ }
189
+
190
+ .CodeMirror-gutters {
191
+ position: absolute; left: 0; top: 0;
192
+ min-height: 100%;
193
+ z-index: 3;
194
+ }
195
+ .CodeMirror-gutter {
196
+ white-space: normal;
197
+ height: 100%;
198
+ display: inline-block;
199
+ vertical-align: top;
200
+ margin-bottom: -30px;
201
+ }
202
+ .CodeMirror-gutter-wrapper {
203
+ position: absolute;
204
+ z-index: 4;
205
+ background: none !important;
206
+ border: none !important;
207
+ }
208
+ .CodeMirror-gutter-background {
209
+ position: absolute;
210
+ top: 0; bottom: 0;
211
+ z-index: 4;
212
+ }
213
+ .CodeMirror-gutter-elt {
214
+ position: absolute;
215
+ cursor: default;
216
+ z-index: 4;
217
+ }
218
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
219
+ .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
220
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
221
+
222
+ .CodeMirror-lines {
223
+ cursor: text;
224
+ min-height: 1px; /* prevents collapsing before first draw */
225
+ }
226
+ .CodeMirror pre {
227
+ /* Reset some styles that the rest of the page might have set */ border-radius: 0;
228
+ border-width: 0;
229
+ background: transparent;
230
+ font-family: inherit;
231
+ font-size: inherit;
232
+ margin: 0;
233
+ white-space: pre;
234
+ word-wrap: normal;
235
+ line-height: inherit;
236
+ color: inherit;
237
+ z-index: 2;
238
+ position: relative;
239
+ overflow: visible;
240
+ -webkit-tap-highlight-color: transparent;
241
+ -webkit-font-variant-ligatures: contextual;
242
+ font-variant-ligatures: contextual;
243
+ }
244
+ .CodeMirror-wrap pre {
245
+ word-wrap: break-word;
246
+ white-space: pre-wrap;
247
+ word-break: normal;
248
+ }
249
+
250
+ .CodeMirror-linebackground {
251
+ position: absolute;
252
+ left: 0; right: 0; top: 0; bottom: 0;
253
+ z-index: 0;
254
+ }
255
+
256
+ .CodeMirror-linewidget {
257
+ position: relative;
258
+ z-index: 2;
259
+ padding: 0.1px; /* Force widget margins to stay inside of the container */
260
+ }
261
+
262
+ .CodeMirror-widget {}
263
+
264
+ .CodeMirror-rtl pre { direction: rtl; }
265
+
266
+ .CodeMirror-code {
267
+ outline: none;
268
+ }
269
+
270
+ /* Force content-box sizing for the elements where we expect it */
271
+ .CodeMirror-scroll,
272
+ .CodeMirror-sizer,
273
+ .CodeMirror-gutter,
274
+ .CodeMirror-gutters,
275
+ .CodeMirror-linenumber {
276
+ box-sizing: content-box;
277
+ }
278
+
279
+ .CodeMirror-measure {
280
+ position: absolute;
281
+ width: 100%;
282
+ height: 0;
283
+ overflow: hidden;
284
+ visibility: hidden;
285
+ }
286
+
287
+ .CodeMirror-cursor {
288
+ position: absolute;
289
+ pointer-events: none;
290
+ }
291
+ .CodeMirror-measure pre { position: static; }
292
+
293
+ div.CodeMirror-cursors {
294
+ visibility: hidden;
295
+ position: relative;
296
+ z-index: 3;
297
+ }
298
+ div.CodeMirror-dragcursors {
299
+ visibility: visible;
300
+ }
301
+
302
+ .CodeMirror-focused div.CodeMirror-cursors {
303
+ visibility: visible;
304
+ }
305
+
306
+ .CodeMirror-selected { background: #d9d9d9; }
307
+ .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
308
+ .CodeMirror-crosshair { cursor: crosshair; }
309
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
310
+ .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
311
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
312
+
313
+ .cm-searching {
314
+ background-color: #ffa;
315
+ background-color: rgba(255, 255, 0, .4);
316
+ }
317
+
318
+ /* Used to force a border model for a node */
319
+ .cm-force-border { padding-right: .1px; }
320
+
321
+ @media print {
322
+ /* Hide the cursor when printing */
323
+ .CodeMirror div.CodeMirror-cursors {
324
+ visibility: hidden;
325
+ }
326
+ }
327
+
328
+ /* See issue #2901 */
329
+ .cm-tab-wrap-hack:after { content: ''; }
330
+
331
+ /* Help users use markselection to safely style text background */
332
+ span.CodeMirror-selectedtext { background: none; }
333
+
334
+ /*# sourceMappingURL=credentialSections.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"css/credentialSections.css","sourceRoot":""}
@@ -0,0 +1,170 @@
1
+ /* LIGHTNING CUSTOM STYLES */
2
+ body, td {
3
+ font-family: "Salesforce Sans", Arial, sans-serif !important;
4
+ }
5
+
6
+ /* SLDS OVERWRITES */
7
+ button:focus {outline:0!important;}
8
+ a:focus {outline:0!important;}
9
+ .slds-checkbox [type="checkbox"]:focus + .slds-checkbox--faux,
10
+ .slds-checkbox [type="checkbox"]:focus ~ .slds-checkbox--faux,
11
+ .slds-checkbox [type="checkbox"]:focus + .slds-checkbox__label .slds-checkbox--faux {
12
+ content: '';
13
+ border-color: #d8dde6;
14
+ box-shadow: none; }
15
+ .slds-checkbox [type="checkbox"]:checked + .slds-checkbox--faux,
16
+ .slds-checkbox [type="checkbox"]:checked ~ .slds-checkbox--faux,
17
+ .slds-checkbox [type="checkbox"]:checked + .slds-checkbox__label .slds-checkbox--faux {
18
+ border-color: #9faab5;
19
+ background-color: white; }
20
+
21
+ .noSidebarCell, .sidebarCell .fixed{
22
+ margin: 0;
23
+ padding: 0 !important;
24
+ }
25
+
26
+ ul li, ol li {
27
+ margin-left: 0 !important;
28
+ }
29
+
30
+ .sidebar-leaf-disabled{
31
+ background: white !important;
32
+ cursor: default !important;
33
+ }
34
+ .sidebar-leaf-disabled a{
35
+ cursor: default !important;
36
+ }
37
+ .sidebar-leaf-enabled a{
38
+ color: #0070BC !important;
39
+ }
40
+
41
+ .connect-modal .slds-modal__content{
42
+ padding:0 !important;
43
+ }
44
+ .connect-modal-tab-bar{
45
+ background: #3a91dc;
46
+ }
47
+
48
+ .slds-radio--faux{
49
+ margin-right: 0.5rem !important;
50
+ }
51
+
52
+ /* UI */
53
+
54
+ .wizard-sidebar{
55
+ width:210px;
56
+ }
57
+ .wizard-content{
58
+ width: calc(100% - 210px);
59
+ }
60
+ .accordion-panel{
61
+ border: 1px solid #0070d2;
62
+ }
63
+ .accordion-panel-header{
64
+ background: #0070d2;
65
+ transition: all .2s;
66
+ }
67
+ .accordion-panel-header-selected{
68
+ background: #005fb2;
69
+ }
70
+ .accordion-panel-header:hover{
71
+ background: #005fb2;
72
+ }
73
+ .filter-step-resource{
74
+ background: #0070d2;
75
+ }
76
+ .filter-step-panel{
77
+ border: 1px solid #0070d2;
78
+ }
79
+
80
+ .transform-data-type{
81
+ border: 1px solid #d8dde6;
82
+ }
83
+ .transform-data-type:hover{
84
+ border: 1px solid #0070d2;
85
+ }
86
+ .transform-data-type-sel{
87
+ color: white;
88
+ background: #0070d2;
89
+ border: 1px solid #0070d2;
90
+ }
91
+
92
+
93
+ .extra-select-button-class > button{
94
+ font-size: 32px;
95
+ line-height: 12px;
96
+ font-weight: bold;
97
+ width:88px;
98
+ }
99
+ .select-dropdown-button{
100
+ font-weight:normal;
101
+ }
102
+ .select-dropdown-button > button{
103
+ max-width: 205px;
104
+ text-overflow: ellipsis;
105
+ white-space: nowrap;
106
+ overflow: hidden;
107
+ padding-right:30px;
108
+ }
109
+ .select-dropdown-button > button > svg{
110
+ float: right;
111
+ position: absolute;
112
+ right: 10px;
113
+ top: 9px;
114
+ }
115
+ .select-button-unselected > button{
116
+ font-weight: bold;
117
+ }
118
+ .map-table-transform-icon:hover > svg{
119
+ fill:#0070d2;
120
+ -ms-transform:scale(1.2, 1.2);
121
+ transform:scale(1.2, 1.2);
122
+ }
123
+
124
+ .labelz{
125
+ color: #54698d;
126
+ font-size: 0.75rem;
127
+ }
128
+
129
+
130
+ .rf-picklist-dropdown-button{
131
+ font-weight:normal;
132
+ }
133
+ .rf-picklist-dropdown-button > button{
134
+ max-width: 165px;
135
+ text-overflow: ellipsis;
136
+ white-space: nowrap;
137
+ overflow: hidden;
138
+ padding-right:30px;
139
+ border: 1px solid transparent;
140
+ background: transparent;
141
+ }
142
+ .rf-picklist-dropdown-button > button > svg{
143
+ float: right;
144
+ position: absolute;
145
+ right: 10px;
146
+ top: 9px;
147
+ }
148
+ .rf-picklist-button-unselected > button{
149
+ font-weight: bold;
150
+ }
151
+
152
+ .rf-picklist-wrap .slds-dropdown{
153
+ max-height: 273px;
154
+ overflow-y: scroll;
155
+ margin-bottom: 12px;
156
+ right: 0;
157
+ left: auto;
158
+ }
159
+ .bundle-table-header{
160
+ border-top: 1px solid rgb(204, 205, 207);
161
+ border-bottom: 1px solid rgb(204, 205, 207);
162
+ }
163
+ .schema-accordion-overlay{
164
+ background: white;
165
+ z-index: 9000;
166
+ }
167
+
168
+
169
+
170
+ /*# sourceMappingURL=lightningStyles.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"css/lightningStyles.css","sourceRoot":""}
@@ -0,0 +1,222 @@
1
+ body {
2
+ margin: 0;
3
+ padding: 0;
4
+ }
5
+
6
+ body, td {
7
+ font-family: "Lingk", Arial, sans-serif;
8
+ }
9
+ .form-control{
10
+ width: 300px;
11
+ }
12
+ input.form-control::-webkit-input-placeholder{
13
+ font-size: 12px;
14
+ }
15
+ input.form-control::-moz-placeholder{
16
+ font-size: 12px;
17
+ }
18
+ input.form-control:-ms-input-placeholder{
19
+ font-size: 12px;
20
+ }
21
+ input.form-control::placeholder{
22
+ font-size: 12px;
23
+ }
24
+ .select-button.dropdown-toggle.btn.btn-default{
25
+ padding-right:28px;
26
+ }
27
+ .select-button.dropdown-toggle.btn.btn-default .caret{
28
+ position: absolute;
29
+ top:14px;
30
+ right:12px;
31
+ }
32
+ .lingk-dropdown-menu-wrapper.larger-dropdown div .select-button.dropdown-toggle.btn.btn-default .caret{
33
+ top:17px;
34
+ }
35
+ .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
36
+ outline:none;
37
+ }
38
+ .checkbox label, .radio label {
39
+ cursor:default;
40
+ }
41
+ .modal{
42
+ z-index:9999 !important;
43
+ }
44
+ .modal-backdrop{
45
+ z-index:9999 !important;
46
+ }
47
+ .modal-body{
48
+ padding:0 !important;
49
+ }
50
+ .tooltip-inner p{
51
+ text-overflow:ellipsis;
52
+ overflow: hidden;
53
+ }
54
+ .tooltip-inner{
55
+ padding: 8px 10px 1px 10px !important;
56
+ }
57
+ .tooltip-arrow{
58
+ top: 19px !important;
59
+ }
60
+ .btn{
61
+ border-radius: 0;
62
+ }
63
+ .dropdown .btn{
64
+ border-radius: 4px;
65
+ }
66
+
67
+ .wizard-body{
68
+ background: #eCeFeF
69
+ }
70
+ .wizard-sidebar{
71
+ width:190px;
72
+ }
73
+ .wizard-content{
74
+ width: calc(100% - 190px);
75
+ }
76
+
77
+
78
+ .wizard-step-circle {
79
+ width: 35px;
80
+ height: 35px;
81
+ border-radius: 50%;
82
+ padding-top: 8px;
83
+ text-align: center;
84
+ margin: 10px;
85
+ display: inline-block;
86
+ border:1px solid #BBBBBB;
87
+ }
88
+ .wizard-sidebar:hover .wizard-sidebar-content::-webkit-scrollbar {
89
+ -webkit-appearance: none;
90
+ width: 7px;
91
+ }
92
+ .wizard-sidebar:hover .wizard-sidebar-content::-webkit-scrollbar-thumb {
93
+ border-radius: 4px;
94
+ background-color: rgba(0,0,0,.5);
95
+ -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
96
+ }
97
+
98
+ .btn-primary {
99
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
100
+ color: #fff;
101
+ }
102
+
103
+ .schema-panel-header .btn{
104
+ max-width:283px;
105
+ text-overflow: ellipsis;
106
+ white-space: nowrap;
107
+ overflow: hidden;
108
+ }
109
+ .accordion-panel{
110
+ border: 1px solid #2e6da4;
111
+ }
112
+ .accordion-panel-header{
113
+ background: #337ab7;
114
+ transition: all .2s;
115
+ }
116
+ .accordion-panel-header-selected{
117
+ background: #005fb2;
118
+ }
119
+ .accordion-panel-header:hover{
120
+ background: #005fb2;
121
+ }
122
+ .accordion-panel-collapse{
123
+ line-height: 18px;
124
+ }
125
+
126
+ .filter-step-resource{
127
+ background: #337ab7;
128
+ }
129
+ .filter-step-resource:hover{
130
+ background: #286090;
131
+ }
132
+
133
+ .transform-data-type{
134
+ border: 1px solid #d8dde6;
135
+ }
136
+ .transform-data-type:hover{
137
+ border: 1px solid #0070d2;
138
+ }
139
+ .transform-data-type-sel{
140
+ color: white;
141
+ background: #0070d2;
142
+ border: 1px solid #0070d2;
143
+ }
144
+
145
+ .rf-select{
146
+ max-width: 205px;
147
+ text-overflow: ellipsis;
148
+ white-space: nowrap;
149
+ overflow: hidden;
150
+ padding-right:30px;
151
+ font-weight:normal;
152
+ cursor: pointer;
153
+ }
154
+ .rf-select .caret{
155
+ position: absolute;
156
+ right: 14px;
157
+ top: 15px;
158
+ }
159
+ .rf-select-unselected{
160
+ font-weight: bold;
161
+ }
162
+ .select-button{
163
+ max-width: 200px;
164
+ text-overflow: ellipsis;
165
+ white-space: nowrap;
166
+ overflow: hidden;
167
+ cursor:pointer;
168
+
169
+ }
170
+
171
+ .labelz{
172
+ color: #54698d;
173
+ }
174
+ .lingk-wizard-bundle-table td{
175
+ vertical-align: middle !important;
176
+ }
177
+ .connect-modal-tab-bar{
178
+ background: #337ab7;
179
+ }
180
+ .map-table-transform-icon:hover > svg{
181
+ fill:#4499e2;
182
+ -ms-transform:scale(1.2, 1.2);
183
+ transform:scale(1.2, 1.2);
184
+ }
185
+ .lingk-dropdown-menu-wrapper .dropdown-menu{
186
+ max-height: 273px;
187
+ overflow-y: scroll;
188
+ margin-bottom: 5px;
189
+ box-shadow: rgba(0, 0, 0, 0.36) 0px 2px 3px 0px;
190
+ z-index: 9990;
191
+ min-width: 260px;
192
+ margin-top: 4px;
193
+ }
194
+
195
+ .bundle-table-header{
196
+ font-weight: bold;
197
+ }
198
+ .mapping-table-header{
199
+ color: #54698d;
200
+ text-transform:uppercase;
201
+ letter-spacing:1px;
202
+ width:100%;
203
+ padding:8px 16px;
204
+ font-size: 12px;
205
+ -webkit-font-smoothing: antialiased;
206
+ }
207
+ .external-keys-column .btn{
208
+ max-width:265px;
209
+ padding-right:28px;
210
+ }
211
+ .external-keys-column .caret{
212
+ position: absolute;
213
+ right: 14px;
214
+ top: 15px;
215
+ }
216
+ .schema-accordion-overlay{
217
+ background: rgb(236, 239, 239);
218
+ z-index: 9988;
219
+ }
220
+
221
+
222
+ /*# sourceMappingURL=lingkStyles.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"css/lingkStyles.css","sourceRoot":""}