PluginProbe ʕ •ᴥ•ʔ
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 2.0.3
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v2.0.3
3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.10 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.6.1 1.6.7 1.7.0 1.7.0.1 1.7.0.2 1.7.0.3 1.7.1 1.7.2 1.7.2.1 1.7.2.2 1.7.3 1.7.4 1.7.5 1.7.5.1 1.7.5.2 1.7.6 1.7.7 1.7.7.1 1.7.7.2 1.7.8 1.7.9 1.8.0 1.8.0.1 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.0.1 1.9.1 1.9.2 1.9.3 1.9.4 1.9.4.1 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.0.1 2.0.1 2.0.2 2.0.3 2.0.3.1 2.0.4 2.0.4.1 2.0.5 2.0.6 2.0.7 2.0.8 2.0.8.1 2.0.9 3.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.3.1 3.0.4 3.0.4.1 3.0.4.2 3.0.5 3.0.5.1 3.0.5.2 3.0.6 3.0.6.1 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.0.9.1 3.0.9.2 3.0.9.3 3.0.9.4 3.0.9.5 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.4.0 3.4.1 3.4.2 3.4.2.1 3.4.3 3.4.4 3.4.5 trunk 1.0 1.0.1 1.0.2 1.0.3
everest-forms / assets / css / components / _buttons.scss
everest-forms / assets / css / components Last commit date
_badge.scss 5 years ago _buttons.scss 5 years ago _card.scss 5 years ago _forms.scss 5 years ago _table.scss 5 years ago
_buttons.scss
150 lines
1 /**
2 * Buttons
3 */
4 .everest-forms-btn,
5 a.everest-forms-btn,
6 button.everest-forms-btn {
7 border: none;
8 cursor: pointer;
9 overflow: hidden;
10 font-family: inherit;
11 padding: 10px 15px;
12 border-radius: 3px;
13 line-height: 1.25;
14 position: relative;
15 display: inline-block;
16 text-decoration: none;
17 color: $color_gray-base;
18 background: $color_gray-lighten;
19 transition: all 0.2s ease 0s;
20 z-index: 1;
21
22 .evf-loading {
23 width: 14px;
24 height: 14px;
25 background-size: 14px 14px;
26 }
27
28 &.everest-forms-btn-primary {
29 background-color: $everestforms;
30 color: $color-white;
31
32 &:hover {
33 color: $color-white;
34 background-color: darken($everestforms, 10%);
35 }
36 }
37
38 &.everest-forms-btn-small {
39 font-size: 12px;
40 padding: 5px 10px;
41 }
42
43 &.everest-forms-btn-link {
44 font-weight: 600;
45 color: $everestforms;
46 background: transparent;
47
48 &:hover {
49 color: darken($everestforms, 10%);
50 background: transparent;
51 }
52
53 &:focus {
54 box-shadow: none;
55 text-decoration: underline;
56 }
57 }
58
59 &.everest-forms-btn-icon {
60 background: $color_gray-more-lighten;
61 color: $color_gray-normal;
62 padding: 6px;
63
64 svg {
65 display: flex;
66 fill: currentColor;
67 height: 20px;
68 width: 20px;
69 }
70 }
71
72 &.dashicons {
73 padding: 8px 15px;
74
75 &::before {
76 width: 20px;
77 height: 20px;
78 line-height: 1;
79 font-size: 20px;
80 margin-right: 10px;
81 font-family: dashicons;
82 vertical-align: middle;
83 padding: 2px 12px 2px 0;
84 border-right: 1px solid transparentize($color_gray-base, 0.7);
85 }
86 }
87
88 &:hover {
89 background-color: darken($color_gray-lighten, 10%);
90 }
91
92 &:active,
93 &.is-active {
94 background: $everestforms;
95 color: $color-white;
96 }
97
98 &:focus {
99 outline: none;
100 box-shadow: 0 0 0 2px lighten($everestforms, 35%);
101 }
102 }
103
104 .everest-forms-btn-group {
105 display: inline-flex;
106
107 button,
108 .everest-forms-btn {
109 margin: 0 4px;
110
111 &:first-child {
112 margin-left: 0;
113 }
114
115 &:last-child {
116 margin-right: 0;
117 }
118
119 &.flex {
120 flex: 1;
121 display: inline-flex;
122 justify-content: space-around;
123 }
124 }
125
126 &.flex {
127 display: flex;
128 }
129
130 &.everest-forms-btn-group--inline {
131 background: $color_gray-lighten;
132 padding: 4px;
133 border-radius: 4px;
134 position: relative;
135 vertical-align: middle;
136
137 button,
138 .everest-forms-btn {
139 padding: 4px 6px;
140 margin: 0 2px;
141
142 &:active,
143 &.is-active {
144 background: $color-white;
145 color: $color_gray-base;
146 }
147 }
148 }
149 }
150