-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathall_admin.scss
155 lines (126 loc) · 3.05 KB
/
all_admin.scss
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
//auto-sizes.js is disabled in /textpattern/admin-themes/hive/hive.php
[name="article_form"] {
.txp-layout { // 12x
grid-template-areas:
// 'xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx
'headng headng headng paging paging paging paging paging paging save__ save__ save__'
'title_ title_ title_ title_ title_ title_ title_ title_ title_ author author author'
'title_ title_ title_ title_ title_ title_ title_ title_ title_ action action action'
'excrpt excrpt excrpt body__ body__ body__ body__ body__ body__ srtdsp srtdsp srtdsp'
'cf3___ cf3___ cf3___ body__ body__ body__ body__ body__ body__ datesg datesg datesg'
'cfgrop cfgrop cfgrop body__ body__ body__ body__ body__ body__ catsgp catsgp catsgp'
'artimg artimg artimg artimg artimg artimg artimg artimg artimg metagp metagp metagp'
'artimg artimg artimg artimg artimg artimg artimg artimg artimg comtgp comtgp comtgp'
'artimg artimg artimg artimg artimg artimg artimg artimg artimg recent recent recent'
;
grid-template-rows: min-content;
grid-auto-rows: auto;
}
.txp-layout-4col-3span,
.txp-layout-4col-alt,
#main_content,
#supporting_content,
#pane-text {
display: contents;
}
#supporting_content>* {
grid-column-end: -1;
grid-column: span 3;
height: max-content;
}
.txp-heading {
grid-area: headng;
}
.txp-save-zone {
grid-area: save__;
}
.nav-tertiary {
grid-area: paging;
}
.txp-actions {
grid-area: action;
}
#txp-write-sort-group {
grid-area: srtdsp;
}
#txp-dates-group {
grid-area: datesg;
}
#txp-categories-group {
grid-area: catsgp;
}
#txp-meta-group {
grid-area: metagp;
}
#txp-comments-group {
grid-area: comtgp;
}
#txp-image-group {
grid-area: artimg;
// position: absolute;
// top: 0;
// left: calc(100% + 1.5rem);
// width: 15vw;
}
#txp-custom-field-group {
grid-area: cfgrop;
}
#txp-recent-group {
grid-area: recent;
}
textarea {
height: calc(100% - 1.5rem) !important; // min-content;
// &:focus {
// min-height: 100%;
// // background: red;
// }
resize: vertical !important;
}
.title {
grid-area: title_;
}
.author {
grid-area: author;
align-self: end;
}
.txp-form-field-value {
height: 100%;
}
.body {
grid-area: body__;
}
.excerpt {
grid-area: excrpt;
}
.custom-1,
.video {
grid-area: cf1___;
}
.custom-3,
.cf-details {
grid-area: cf3___;
display: grid;
grid-template-columns: auto 1fr;
align-content: start;
grid-gap: 0 1rem;
.txp-form-field-value {
grid-column: span 2;
}
.txp-form-field-instructions {
margin-top: .25rem;
}
}
}
#txp-image-group-label+div+div {
display: none;
}
#txp-image-group-label.expanded+div+div {
display: block;
}
.ui-sortable-handle {
max-width: calc(20% - .5rem);
}
.bot_iu_ul_container {
display: grid !important;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
}