diff --git src/wp-admin/css/customize-controls.css src/wp-admin/css/customize-controls.css
index b1b5915..3baf73e 100644
|
|
|
p.customize-section-description {
|
| 1135 | 1135 | /** |
| 1136 | 1136 | * Custom CSS Section |
| 1137 | 1137 | * |
| 1138 | | * Modifications to the Section Container to |
| 1139 | | * make the textarea full-width. |
| | 1138 | * Modifications to the Section Container to make the textarea full-width and |
| | 1139 | * full-height, if the control is the only control in the section. |
| 1140 | 1140 | */ |
| 1141 | | #customize-theme-controls #sub-accordion-section-custom_css { |
| 1142 | | padding-left: 0; |
| 1143 | | padding-right: 0; |
| 1144 | | } |
| 1145 | 1141 | |
| 1146 | | #customize-theme-controls #sub-accordion-section-custom_css .customize-section-title { |
| 1147 | | margin-left: 0; |
| | 1142 | #customize-controls .customize-section-description-container.section-meta.customize-info { |
| | 1143 | border-bottom: none; |
| 1148 | 1144 | } |
| 1149 | 1145 | |
| 1150 | | #customize-theme-controls #sub-accordion-section-custom_css .customize-control-title, |
| 1151 | | #customize-theme-controls #sub-accordion-section-custom_css .notice { |
| 1152 | | margin-left: 10px; |
| 1153 | | margin-right: 10px; |
| | 1146 | #sub-accordion-section-custom_css .customize-control-notifications-container { |
| | 1147 | margin-bottom: 15px; |
| 1154 | 1148 | } |
| 1155 | | #customize-theme-controls #sub-accordion-section-custom_css textarea { |
| | 1149 | |
| | 1150 | #customize-control-custom_css textarea { |
| | 1151 | display: block; |
| | 1152 | font-family: Consolas, Monaco, monospace; |
| | 1153 | font-size: 12px; |
| | 1154 | padding: 6px 8px; |
| | 1155 | height: 500px; |
| 1156 | 1156 | -moz-tab-size: 4; |
| 1157 | 1157 | -o-tab-size: 4; |
| 1158 | 1158 | tab-size: 4; |
| 1159 | 1159 | } |
| 1160 | 1160 | |
| 1161 | | #sub-accordion-section-custom_css .customize-control-notifications-container { |
| 1162 | | margin-bottom: 15px; |
| 1163 | | } |
| 1164 | | |
| 1165 | | #sub-accordion-section-custom_css textarea { |
| | 1161 | .customize-section-description-container + #customize-control-custom_css:last-child textarea { |
| 1166 | 1162 | border-right: 0; |
| 1167 | 1163 | border-left: 0; |
| 1168 | | font-family: Consolas, Monaco, monospace; |
| 1169 | | font-size: 12px; |
| 1170 | | padding: 6px 8px; |
| 1171 | | height: 553px; |
| | 1164 | height: calc( 100vh - 185px ); |
| | 1165 | resize: none; |
| | 1166 | } |
| | 1167 | .customize-section-description-container + #customize-control-custom_css:last-child { |
| | 1168 | margin-left: -12px; |
| | 1169 | width: 299px; |
| | 1170 | margin-bottom: -12px; |
| | 1171 | } |
| | 1172 | |
| | 1173 | @media screen and ( max-width: 640px ) { |
| | 1174 | .customize-section-description-container + #customize-control-custom_css:last-child { |
| | 1175 | margin-left: 0; |
| | 1176 | margin-right: 0; |
| | 1177 | width: 100%; |
| | 1178 | } |
| | 1179 | .customize-section-description-container + #customize-control-custom_css:last-child textarea { |
| | 1180 | height: calc( 100vh - 140px ); |
| | 1181 | width: 100%; |
| | 1182 | border: solid 1px #ddd; |
| | 1183 | } |
| 1172 | 1184 | } |
| 1173 | 1185 | |
| 1174 | 1186 | /** |