PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 1.7.1
GenerateBlocks v1.7.1
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / src / components / dimensions / editor.scss
generateblocks / src / components / dimensions Last commit date
editor.scss 3 years ago index.js 3 years ago
editor.scss
69 lines
1 .components-gblocks-dimensions-control {
2 &__inputs {
3 display: flex;
4
5 & > div {
6 width: calc(25% - 5px);
7 }
8
9 input[type="number"]="number""],
10 input[type="text"]="text""] {
11 border-top-right-radius: 0;
12 border-bottom-right-radius: 0;
13 height: 30px;
14 margin: 0;
15 padding: 5px;
16 -moz-appearance: textfield;
17 appearance: textfield;
18 width: 100%;
19 border-right: 0;
20 }
21
22 div:nth-child(1) input {
23 border-top-right-radius: 0;
24 border-bottom-right-radius: 0;
25 }
26
27 div:not(:nth-child(1)) input {
28 border-radius: 0;
29 }
30 }
31 }
32
33 .gblocks-dimensions-control__label {
34 font-size: 10px;
35 opacity: 0.5;
36 line-height: 1;
37 }
38
39 .components-gblocks-dimensions-control_sync {
40 &.components-button {
41 border-top-left-radius: 0;
42 border-bottom-left-radius: 0;
43 box-shadow: none;
44 justify-content: center;
45 padding: 0;
46 text-align: center;
47 text-shadow: none;
48 width: 30px;
49 height: 30px;
50
51 &:not(.is-primary) {
52 background: #fff;
53 border: 1px solid #8d96a0;
54 color: #555d66;
55 }
56
57 svg {
58 width: 18px;
59 height: 18px;
60 fill: currentColor;
61 }
62
63 &:hover,
64 &:focus {
65 box-shadow: none !important;
66 }
67 }
68 }
69