-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpost.css
More file actions
228 lines (188 loc) · 4.22 KB
/
post.css
File metadata and controls
228 lines (188 loc) · 4.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#tsf-inpost-box .inside {
margin: 0;
padding: 14px;
}
#tsf-inpost-box:not( .tsf-is-block-editor ) .inside,
#edit-post\:document #tsf-inpost-box .inside { /* edit-post\:document is Gutenberg's sidebar */
width: 100%;
padding: 0;
}
#tsf-inpost-box.closed .inside {
display: none;
}
.tsf-flex-inside-wrap {
flex-direction: row;
width: 100%; /* WP 5.4+ fix -- no longer needed, but will mitigate future issues. https://tsf.fyi/p/3505 */
}
.tsf-is-block-editor .tsf-flex-inside-wrap {
border: 1px solid #ddd;
}
/* edit-post\:document is Gutenberg's sidebar; .tsf-is-block-editor is used to override specificity */
#edit-post\:document .tsf-is-block-editor .tsf-flex-inside-wrap {
border: 0;
}
.tsf-flex-setting {
width: 100%;
flex-direction: row;
border-bottom: 1px solid #e2e4e7;
}
.tsf-flex-setting:last-of-type {
border-bottom: 0;
}
/* sub-flex-setting boxes. */
.tsf-flex-setting-input .tsf-flex-setting {
border-left: 1px solid #e2e4e7;
border-right: 1px solid #e2e4e7;
}
.tsf-flex-setting-input .tsf-flex-setting:first-of-type {
border-top: 1px solid #e2e4e7;
}
.tsf-flex-setting-input .tsf-flex-setting:last-of-type {
border-bottom: 1px solid #e2e4e7;
}
#tsf-inpost-box .inside select {
width: 100%;
max-width: 99%;
text-overflow: ellipsis;
}
.tsf-flex-setting-label,
.tsf-flex-setting-input {
background-color: #fff;
padding: 15px 12px;
flex: 10 1 350px;
}
.tsf-flex-setting-label {
background-color: #f9f9f9;
flex: 1 1 200px;
}
.tsf-flex-setting-input {
justify-content: center;
flex-wrap: nowrap;
}
.tsf-flex-setting-label-item {
flex-flow: row nowrap;
justify-content: space-between;
flex-grow: 0;
}
.tsf-flex-setting-label-inner-wrap {
justify-content: center;
}
.tsf-flex-setting-label-item > * {
margin-right: 4px;
}
.tsf-flex-setting-label-item > *:last-child {
margin-right: 0;
}
.tsf-flex-setting-label-sub-item {
margin-top: 15px;
}
.tsf-social-image-buttons {
margin-top: 15px;
margin-inline-start: 1px;
}
.tsf-flex-setting-input textarea {
max-height: 250px;
}
/* Start inpost tabs */
input.tsf-flex-nav-tab-radio {
position: absolute;
width: 0;
height: 0;
opacity: 0;
margin: 0;
padding: 0;
border: 0;
z-index: -1;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.tsf-flex-nav-tab-wrapper {
background-color: #f5f5f5;
border-bottom: 1px solid #dadada;
align-items: baseline;
flex-flow: row nowrap;
max-width: 100%;
overflow: hidden;
font-weight: 600;
}
.tsf-is-block-editor .tsf-flex-nav-tab-wrapper {
background-color: #f3f4f5;
border-bottom-color: #e2e4e7;
}
.tsf-flex-nav-tab-inner {
flex-flow: row nowrap;
}
.tsf-flex-nav-tab {
flex-direction: row;
max-width: max-content;
}
.tsf-flex-nav-tab-label {
padding: 12px;
text-align: center;
flex-direction: row;
box-shadow: 0 0 0 0 transparent inset;
transition: box-shadow .15s ease-out;
align-items: center;
align-content: space-around;
position: relative;
cursor: pointer;
gap: 4px;
}
.tsf-flex-nav-dashicon,
.tsf-flex-nav-name {
align-items: center;
justify-content: center;
margin: 0 2px;
}
.tsf-flex-nav-tab .tsf-flex-nav-tab-radio:checked + .tsf-flex-nav-tab-label {
box-shadow: 0 -2px 0 0 #2271b1 inset, 0 0 0 0 #2271b1 inset;
transition: box-shadow .25s ease-in;
}
.tsf-flex-nav-tab .tsf-flex-nav-tab-radio:focus + .tsf-flex-nav-tab-label:not( .tsf-no-focus-ring ) {
box-shadow: 0 0 0 0 #2271b1 inset, 0 0 0 1px #2271b1 inset;
}
.tsf-flex-tab-content {
flex: 1 0 100%;
/* EdgeHTML overflow fix */
max-width: 100%;
flex-wrap: nowrap;
}
body.js .tsf-flex-tab-content {
display: none;
}
body.js .tsf-flex-tab-content.tsf-flex-tab-content-active {
display: flex;
}
.tsf-flex-tabs-content-no-js {
background-color: #f3f3f3;
border-bottom: 1px solid #dadada;
box-shadow: 0 2px 0 0 #dadada inset;
}
.tsf-flex-tab-no-js {
align-items: baseline;
flex-direction: row;
flex: 1 1 100%;
}
.tsf-flex-tab-no-js .tsf-flex-nav-tab {
padding: 12px;
min-width: 125px;
box-shadow: 0 -2px 0 0 #2271b1 inset;
flex-direction: row;
flex: 0 1 auto;
}
#tsf-inpost-box .hndle {
justify-content: unset;
white-space: pre-wrap;
}
#tsf-inpost-box .hndle .tsf-tooltip-wrap a {
font-size: 14px;
line-height: 1em;
}
/**
* Start override
*/
.tsf-js .tsf-flex-hide-if-js,
.tsf-no-js .tsf-flex-hide-if-no-js {
display: none;
}