PluginProbe
Canvas / 2.4.9
Canvas v2.4.9
2.5.5 2.5.4 trunk 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 All 54 releases
canvas / components / basic-elements / block-cover / block-editor.css

block-editor.css in Canvas 2.4.9, at components/basic-elements/block-cover/block-editor.css

32 lines 801 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * All of the CSS for your block editor functionality should be
3 * included in this file.
4 */
5 /*--------------------------------------------------------------*/
6 /**
7 * All of the CSS for your block editor functionality should be
8 * included in this file.
9 */
10 /**
11 * Environment for all styles (variables, additions, etc).
12 */
13 /*--------------------------------------------------------------*/
14 /*--------------------------------------------------------------*/
15 .wp-block-cover {
16 -webkit-box-align: start;
17 -ms-flex-align: start;
18 align-items: flex-start;
19 }
20
21 .wp-block-cover.is-cnvs-vert-align-middle {
22 -webkit-box-align: center;
23 -ms-flex-align: center;
24 align-items: center;
25 }
26
27 .wp-block-cover.is-cnvs-vert-align-bottom {
28 -webkit-box-align: end;
29 -ms-flex-align: end;
30 align-items: flex-end;
31 }
32