PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 1.2.2
JetFormBuilder — Dynamic Blocks Form Builder v1.2.2
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 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / framework / vue-ui / assets / src / scss / components / _repeater.scss
jetformbuilder / framework / vue-ui / assets / src / scss / components Last commit date
_button.scss 5 years ago _checkbox.scss 5 years ago _collapse.scss 5 years ago _colorpicker.scss 5 years ago _dimensions.scss 5 years ago _f-select.scss 5 years ago _iconpicker.scss 5 years ago _input.scss 5 years ago _list-table.scss 5 years ago _notice.scss 5 years ago _pagination.scss 5 years ago _radio.scss 5 years ago _repeater.scss 5 years ago _select.scss 5 years ago _switcher.scss 5 years ago _tabs.scss 5 years ago _textarea.scss 5 years ago _time.scss 5 years ago _wp-media.scss 5 years ago
_repeater.scss
133 lines
1 .cx-vui-repeater {
2 &__actions {
3 display: flex;
4 align-items: center;
5 }
6 &__tip {
7 color: $color__text;
8 margin: 0 0 0 20px;
9 .rtl & {
10 margin: 0 20px 0 0;
11 }
12 }
13 .cx-vui-collapse__content > & {
14 margin-bottom: 25px;
15 }
16 }
17
18 .cx-vui-repeater-item {
19 &__handle {
20 cursor: n-resize;
21 display: flex;
22 align-items: center;
23 justify-content: center;
24 width: 40px;
25 height: 40px;
26 margin: -12px 0 -10px -16px;
27 .rtl & {
28 margin: -12px -16px -10px 0;
29 }
30 svg {
31 line {
32 stroke: $color__border-off-panel;
33 }
34 }
35 }
36 &__heading {
37 display: flex;
38 border-bottom: 1px solid $color__border-in-panel;
39 padding: 18px 20px 16px;
40 align-items: center;
41 justify-content: space-between;
42 -webkit-touch-callout: none;
43 -webkit-user-select: none;
44 -khtml-user-select: none;
45 -moz-user-select: none;
46 -ms-user-select: none;
47 user-select: none;
48 &--is-collpased {
49 border-bottom: none;
50 }
51 &-start {
52 display: flex;
53 align-items: center;
54 cursor: pointer;
55 }
56 &-end {
57 display: flex;
58 align-items: center;
59 }
60 }
61 &__title,
62 &__subtitle {
63 font-size: 15px;
64 line-height: 17px;
65 }
66 &__title {
67 font-weight: 500;
68 color: $color__accent;
69 margin: 0 10px 0 0;
70 .rtl & {
71 margin: 0 0 0 10px;
72 }
73 }
74 &__subtitle {
75 font-style: italic;
76 color: $color__text;
77 }
78 &__collapse {
79 margin: 0 8px 0 0;
80 .rtl & {
81 margin: 0 0 0 8px;
82 }
83
84 &--is-collpased {
85 margin: 0 8px 4px 0;
86 transform: rotate( -90deg );
87 .rtl & {
88 margin: 0 0 4px 8px;
89 }
90 }
91 path {
92 fill: $color__accent;
93 }
94 }
95 &__content {
96 &--is-collpased {
97 display: none;
98 }
99 }
100 &__copy,
101 &__clean {
102 cursor: pointer;
103 width: 20px;
104 height: 20px;
105 display: flex;
106 align-items: center;
107 justify-content: center;
108 margin: 0 0 0 10px;
109 position: relative;
110 .rtl & {
111 margin: 0 10px 0 0;
112 }
113 .cx-vui-tooltip {
114 width: 80px;
115 }
116 path {
117 transition: all 150ms linear;
118 fill: $color__text;
119 }
120 &:hover {
121 path {
122 fill: $color__accent;
123 }
124 }
125 }
126 &__confrim-del,
127 &__cancel-del {
128 text-decoration: underline;
129 }
130 &__confrim-del {
131 color: $color__error;
132 }
133 }