PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.1.6
JetFormBuilder — Dynamic Blocks Form Builder v3.1.6
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 / assets / scss / admin / default.scss
jetformbuilder / assets / scss / admin Last commit date
default.scss 2 years ago single.scss 2 years ago static.scss 2 years ago
default.scss
185 lines
1 .jet-form-builder-page {
2 p.fb-description {
3 font-size: 13px;
4 color: #7b7e81;
5 margin: 0 0 1.5rem 0;
6 }
7
8 $error-color: rgba(252, 61, 49, 0.75);
9
10 .cx-vui-button {
11 &--style-accent-error {
12 background-color: $error-color;
13 color: white;
14 }
15
16 &--style-accent-error-border {
17 border: 1px solid $error-color;
18 color: $error-color;
19 }
20
21 &--size-mini-x2 {
22 padding: 0.3em 0.7em;
23 }
24
25 &.unset-box-shadow {
26 box-shadow: none;
27
28 &:hover {
29 box-shadow: 0 2px 6px rgb(35 40 45 / 24%);
30 }
31 }
32 &.background-light {
33 &:hover {
34 background-color: white;
35 }
36 }
37 }
38
39 &__panel {
40 min-width: 292px;
41 box-sizing: border-box;
42 border-radius: 4px;
43 padding: 30px;
44 background-color: white;
45 box-shadow: 0px 2px 6px rgba(35, 40, 45, 0.07);
46
47 & ~ .jet-form-builder-page__panel {
48 margin-top: 20px;
49 }
50
51 > .cx-vui-subtitle {
52 margin-bottom: 20px;
53 }
54 }
55
56 &__panel-header {
57 display: flex;
58 justify-content: flex-start;
59 align-items: center;
60
61 .panel-header-icon {
62 position: relative;
63 display: flex;
64 justify-content: center;
65 align-items: center;
66 width: 46px;
67 height: 46px;
68 border-radius: 50%;
69 border: 1px solid #7B7E81;
70 margin-right: 12px;
71 }
72
73 .panel-header-content {
74 display: flex;
75 flex-direction: column;
76
77 .panel-header-desc {
78 font-size: 14px;
79 line-height: 18px;
80 font-weight: 300;
81 color: #7B7E81;
82 margin-bottom: 3px;
83 }
84
85 .panel-header-title {
86 font-size: 20px;
87 line-height: 24px;
88 color: #23282D;
89 }
90 }
91 }
92
93 &__panel-content {
94 margin-top: 12px;
95 border-top: 1px solid #DCDCDD;
96 padding-top: 23px;
97
98 font-size: 12px;
99 line-height: 16px;
100 color: #7B7E81;
101 }
102
103 &__panel-controls {
104 display: flex;
105 justify-content: flex-start;
106 align-items: center;
107 margin-top: 20px;
108 }
109
110 &__guide {
111 width: 100%;
112
113 @media (max-width: 1140px) {
114 width: calc(100% / 2);
115 }
116 }
117
118 &__guide-videos {
119 }
120
121 &__guide-video {
122 display: flex;
123 justify-content: center;
124 align-items: center;
125 height: 162px;
126 background-color: white;
127 background-size: cover;
128 background-position: 50%;
129 overflow: hidden;
130 border-radius: 3px 3px 0 0;
131 cursor: pointer;
132
133 svg {
134 transition: all .25s ease;
135 }
136
137 &:hover {
138 svg {
139 transform: scale(1.1);
140 }
141 }
142 }
143
144 &__guide-content {
145 background-color: white;
146 padding: 20px 30px 40px 30px;
147 border-radius: 0 0 3px 3px;
148 }
149
150 &__guide-links {
151 display: flex;
152 flex-direction: column;
153 }
154
155 &__guide-link {
156 display: flex;
157 justify-content: flex-start;
158 margin-bottom: 22px;
159
160 &:last-child {
161 margin-bottom: 0;
162 }
163
164 a {
165 display: flex;
166 justify-content: flex-start;
167 align-items: flex-start;
168 font-size: 14px;
169 line-height: 18px;
170 color: #007CBA;
171 text-decoration: none;
172
173 &:hover {
174 color: #066EA2;
175 text-decoration: underline;
176 }
177
178 svg {
179 margin-top: 3px;
180 margin-left: 10px;
181 }
182 }
183 }
184
185 }