Changeset 50273
- Timestamp:
- 02/09/2021 05:08:31 PM (4 years ago)
- Location:
- trunk/src/wp-content/themes/twentytwentyone
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyone/assets/css/ie-editor.css
r50262 r50273 1181 1181 1182 1182 .wp-block-heading h1[style*="--wp--typography--line-height"] { 1183 line-height: --global--line-height-body;1183 line-height: 1.7; 1184 1184 } 1185 1185 1186 1186 h1[style*="--wp--typography--line-height"] { 1187 line-height: --global--line-height-body;1187 line-height: 1.7; 1188 1188 } 1189 1189 1190 1190 .h1[style*="--wp--typography--line-height"] { 1191 line-height: --global--line-height-body;1191 line-height: 1.7; 1192 1192 } 1193 1193 1194 1194 .wp-block-heading h2[style*="--wp--typography--line-height"] { 1195 line-height: --global--line-height-body;1195 line-height: 1.7; 1196 1196 } 1197 1197 1198 1198 h2[style*="--wp--typography--line-height"] { 1199 line-height: --global--line-height-body;1199 line-height: 1.7; 1200 1200 } 1201 1201 1202 1202 .h2[style*="--wp--typography--line-height"] { 1203 line-height: --global--line-height-body;1203 line-height: 1.7; 1204 1204 } 1205 1205 1206 1206 .wp-block-heading h3[style*="--wp--typography--line-height"] { 1207 line-height: --global--line-height-body;1207 line-height: 1.7; 1208 1208 } 1209 1209 1210 1210 h3[style*="--wp--typography--line-height"] { 1211 line-height: --global--line-height-body;1211 line-height: 1.7; 1212 1212 } 1213 1213 1214 1214 .h3[style*="--wp--typography--line-height"] { 1215 line-height: --global--line-height-body;1215 line-height: 1.7; 1216 1216 } 1217 1217 1218 1218 .wp-block-heading h4[style*="--wp--typography--line-height"] { 1219 line-height: --global--line-height-body;1219 line-height: 1.7; 1220 1220 } 1221 1221 1222 1222 h4[style*="--wp--typography--line-height"] { 1223 line-height: --global--line-height-body;1223 line-height: 1.7; 1224 1224 } 1225 1225 1226 1226 .h4[style*="--wp--typography--line-height"] { 1227 line-height: --global--line-height-body;1227 line-height: 1.7; 1228 1228 } 1229 1229 1230 1230 .wp-block-heading h5[style*="--wp--typography--line-height"] { 1231 line-height: --global--line-height-body;1231 line-height: 1.7; 1232 1232 } 1233 1233 1234 1234 h5[style*="--wp--typography--line-height"] { 1235 line-height: --global--line-height-body;1235 line-height: 1.7; 1236 1236 } 1237 1237 1238 1238 .h5[style*="--wp--typography--line-height"] { 1239 line-height: --global--line-height-body;1239 line-height: 1.7; 1240 1240 } 1241 1241 1242 1242 .wp-block-heading h6[style*="--wp--typography--line-height"] { 1243 line-height: --global--line-height-body;1243 line-height: 1.7; 1244 1244 } 1245 1245 1246 1246 h6[style*="--wp--typography--line-height"] { 1247 line-height: --global--line-height-body;1247 line-height: 1.7; 1248 1248 } 1249 1249 1250 1250 .h6[style*="--wp--typography--line-height"] { 1251 line-height: --global--line-height-body;1251 line-height: 1.7; 1252 1252 } 1253 1253 … … 1767 1767 1768 1768 p { 1769 line-height: --global--line-height-body;1769 line-height: 1.7; 1770 1770 } 1771 1771 -
trunk/src/wp-content/themes/twentytwentyone/assets/css/ie.css
r50261 r50273 4012 4012 4013 4013 p { 4014 line-height: --global--line-height-body;4014 line-height: 1.7; 4015 4015 } 4016 4016 -
trunk/src/wp-content/themes/twentytwentyone/assets/css/style-editor.css
r50262 r50273 1056 1056 h6[style*="--wp--typography--line-height"], 1057 1057 .h6[style*="--wp--typography--line-height"] { 1058 line-height: var(--wp--typography--line-height, --global--line-height-body);1058 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 1059 1059 } 1060 1060 … … 1416 1416 1417 1417 p { 1418 line-height: var(--wp--typography--line-height, --global--line-height-body);1418 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 1419 1419 } 1420 1420 -
trunk/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_editor.scss
r49574 r50273 26 26 27 27 &[style*="--wp--typography--line-height"] { 28 line-height: var(--wp--typography--line-height, --global--line-height-body);28 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 29 29 } 30 30 } -
trunk/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_editor.scss
r49574 r50273 1 1 p { 2 line-height: var(--wp--typography--line-height, --global--line-height-body);2 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 3 3 4 4 &.has-background { -
trunk/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_style.scss
r49574 r50273 1 1 p { 2 2 3 line-height: var(--wp--typography--line-height, --global--line-height-body);3 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 4 4 5 5 // inherits general font style set at <body> -
trunk/src/wp-content/themes/twentytwentyone/style-rtl.css
r50261 r50273 2856 2856 2857 2857 p { 2858 line-height: var(--wp--typography--line-height, --global--line-height-body);2858 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 2859 2859 } 2860 2860 -
trunk/src/wp-content/themes/twentytwentyone/style.css
r50261 r50273 2866 2866 2867 2867 p { 2868 line-height: var(--wp--typography--line-height, --global--line-height-body);2868 line-height: var(--wp--typography--line-height, var(--global--line-height-body)); 2869 2869 } 2870 2870
Note: See TracChangeset
for help on using the changeset viewer.