File tree Expand file tree Collapse file tree 2 files changed +65
-27
lines changed Expand file tree Collapse file tree 2 files changed +65
-27
lines changed Original file line number Diff line number Diff line change @@ -44,19 +44,21 @@ When you first create an audience, Personas sends an Identify call for every use
44
44
## Settings
45
45
46
46
Segment lets you change these destination settings from the Segment app without having to touch any code.
47
- <table >
47
+ <table class =" settings " >
48
+ <thead >
48
49
<tr >
49
- <th >Setting Name </th >
50
+ <th >Setting</th >
50
51
<th >Data Type</th >
51
52
<th >Default</th >
52
53
<th >Description</th >
53
54
</tr >
55
+ </thead >
54
56
{% for item in currentIntegration.settings %}
55
57
{% unless item.deprecated == true %}
56
58
<tr >
57
- <td class =" def " id =" {{item.name | slugify}} " style = " cursor : pointer " > {{item.name}}</td >
59
+ <td class =" def " id =" {{item.name | slugify}} " >< code > {{item.name}}</ code > </td >
58
60
<td >{{item.type}}</td >
59
- <td >{{item.defaultValue}}</td >
61
+ <td >< code > {{item.defaultValue}}</ code > </td >
60
62
<td markdown =" span " >{{item.description}}</td >
61
63
</tr >
62
64
Original file line number Diff line number Diff line change 1
1
.markdown {
2
- & > h1 ,
3
- & > h2 ,
4
- & > h3 ,
5
- & > h4 ,
6
- & > h5 ,
7
- & > h6 {
2
+
3
+ & >h1 ,
4
+ & >h2 ,
5
+ & >h3 ,
6
+ & >h4 ,
7
+ & >h5 ,
8
+ & >h6 {
8
9
position : relative ;
9
10
cursor : pointer ;
10
11
padding-left : 30px ;
32
33
}
33
34
}
34
35
35
- & > h1 {
36
+ & > h1 {
36
37
@include breakpoint (medium up ) {
37
38
margin-top : 32px ;
38
39
}
39
40
}
40
41
41
- & > h2 {
42
+ & > h2 {
42
43
margin-top : 32px ;
43
44
44
45
@include breakpoint (medium up ) {
45
46
margin-top : 48px ;
46
47
}
47
48
}
48
49
49
- & > h3 {
50
+ & > h3 {
50
51
margin-top : 24px ;
51
52
52
53
@include breakpoint (medium up ) {
53
54
margin-top : 48px ;
54
55
}
55
56
}
56
57
57
- & > h4 {
58
+ & > h4 {
58
59
margin-top : 16px ;
59
60
60
61
@include breakpoint (medium up ) {
61
62
margin-top : 24px ;
62
63
}
63
64
}
64
65
65
- & > h5 {
66
+ & > h5 {
66
67
margin-top : 16px ;
67
68
68
69
@include breakpoint (medium up ) {
69
70
margin-top : 24px ;
70
71
}
71
72
}
72
73
73
- & > h6 {
74
+ & > h6 {
74
75
margin-top : 8px ;
75
76
76
77
@include breakpoint (medium up ) {
77
78
margin-top : 16px ;
78
79
}
79
80
}
80
81
81
- & > p {
82
+ & > p {
82
83
margin-top : 8px ;
83
84
overflow-wrap : break-word ;
84
85
line-height : 26px ;
93
94
overflow-y : auto ;
94
95
}
95
96
96
- & > pre {
97
+ & > pre {
97
98
margin-top : 24px ;
98
99
margin-bottom : 24px ;
99
100
}
100
101
101
- & > hr {
102
+ & > hr {
102
103
margin-top : 40px ;
103
104
margin-bottom : 40px ;
104
105
108
109
}
109
110
}
110
111
111
- & > div {
112
+ & > div {
112
113
margin-top : 16px ;
113
114
}
114
115
121
122
border : 1px solid #ddd ;
122
123
display : block ;
123
124
margin : 24px auto ;
124
- border-radius : 5px ;;
125
+ border-radius : 5px ;
126
+ ;
125
127
}
126
128
}
127
129
128
- ul , ol {
130
+ ul ,
131
+ ol {
129
132
padding-left : 25px ;
130
133
line-height : 26px ;
131
134
list-style-type : none ;
142
145
left : 0 ;
143
146
}
144
147
145
- & > ul , ol {
148
+ & >ul ,
149
+ ol {
146
150
margin-top : 0 ;
147
151
}
148
152
}
149
153
}
150
154
151
155
ul {
152
- & > li {
156
+ & > li {
153
157
& ::before {
154
158
width : 8px ;
155
159
height : 8px ;
163
167
ol {
164
168
counter-reset : list- items;
165
169
166
- & > li {
170
+ & > li {
167
171
counter-increment : list- items;
168
172
169
173
& ::before {
218
222
}
219
223
}
220
224
221
- & > table {
225
+ table .settings {
226
+ width : 100% ;
227
+ table-layout : fixed ;
228
+
229
+ th :first-of-type {
230
+ width : 25% ;
231
+ }
232
+
233
+ th :nth-of-type (2 n ) {
234
+ width : 15%
235
+ }
236
+
237
+ th :nth-of-type (3 n ) {
238
+ width : 15%
239
+ }
240
+
241
+ th :nth-of-type (4 n ) {
242
+ width : 45%
243
+ }
244
+
245
+ td .def {
246
+ font-size : 12px ;
247
+ cursor : pointer ;
248
+ code {
249
+ max-width : 100% ;
250
+ word-break : break-all ;
251
+ }
252
+
253
+
254
+ }
255
+ }
256
+
257
+ & >table {
222
258
margin-top : 24px ;
223
259
}
224
260
225
- & > * :first-child {
261
+ & > * :first-child {
226
262
margin-top : 0 ;
227
263
}
228
264
You can’t perform that action at this time.
0 commit comments