PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 2.1.4
JetFormBuilder — Dynamic Blocks Form Builder v2.1.4
3.6.5.2 3.6.5.1 3.6.5 3.6.4.2 3.6.4.1 3.6.4 3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 All 130 releases
jetformbuilder / framework / vue-ui / assets / src / scss / components / _dimensions.scss
_dimensions.scss
76 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .cx-vui-dimensions {
2 display: flex;
3 flex-direction: column;
4 justify-content: flex-start;
5 align-items: stretch;
6
7 &__units {
8 display: flex;
9 justify-content: flex-end;
10 align-items: center;
11 margin: 0 42px 5px 0;
12 .rtl & {
13 margin: 0 0 5px 42px;
14 }
15
16 span {
17 color: #7B7E81;
18 cursor: pointer;
19 margin: 0 0 0 2px;
20 .rtl & {
21 margin: 0 2px 0 0;
22 }
23
24 &:first-child {
25 margin: 0;
26 }
27
28 &.active {
29 color: $color__accent;
30 }
31 }
32 }
33
34 &__inputs {
35 display: flex;
36 justify-content: flex-start;
37 align-items: flex-start;
38
39 .cx-vui-component-raw {
40 flex: 1 1 100px;
41 margin: 0 0 0 5px;
42 .rtl & {
43 margin: 0 5px 0 0;
44 }
45
46 &:first-child {
47 margin: 0;
48 }
49 }
50 }
51
52 &__link {
53 width: 32px;
54 height: 32px;
55 display: flex;
56 justify-content: center;
57 align-items: center;
58 flex-shrink: 0;
59 margin: 0 0 0 10px;
60 cursor: pointer;
61 .rtl & {
62 margin: 0 10px 0 0;
63 }
64 }
65
66 &.size-default {
67 max-width: 100%;
68 width: 442px;
69 }
70
71 &.size-fullwidth {
72 max-width: 100%;
73 width: 100%;
74 }
75 }
76