Skip to content

Commit 222257f

Browse files
authored
gw-style-numbers-like-total.css: Added a snippet for Gravity Forms that style number fields like total field.
1 parent 2b7a9cf commit 222257f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* Gravity Wiz // Gravity Forms // Style Number Fields like Total Field
3+
*
4+
* Use "gf_price" and "gf_total" CSS classes via the "CSS Class Name" setting to style your Number fields like a product
5+
* price (red) or total (green).
6+
*/
7+
.gform_wrapper .gf_price input[type=text],
8+
.gform_wrapper .gf_price input[type=number] {
9+
border: 0;
10+
font-size: 1.2em;
11+
color: #060;
12+
text-indent: 0;
13+
padding: 0;
14+
}
15+
.gform_wrapper .gf_total input[type=text],
16+
.gform_wrapper .gf_total input[type=number] {
17+
color: #060;
18+
}

0 commit comments

Comments
 (0)