PluginProbe ʕ •ᴥ•ʔ
Strong Testimonials / 2.33
Strong Testimonials v2.33
3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.0.1 2.30.9 2.31.10 2.32 2.32.1 2.32.2 2.32.3 2.32.4 2.33 2.34 2.35 2.36 2.37 2.38 2.38.1 2.39 2.39.1 2.39.2 2.39.3 2.40.0 2.40.1 2.40.2 2.40.3 2.40.4 2.40.5 2.40.6 2.40.7 2.41.0 2.41.1 2.50.0 2.50.1 2.50.2 2.50.3 2.50.4 2.51.0 2.51.1 2.51.2 2.51.3 2.51.4 2.51.5 2.51.6 2.51.7 2.51.8 2.51.9 3.0.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 3.1.19 3.1.2 3.1.20 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.10 3.2.11 3.2.12 3.2.13 3.2.14 3.2.15 3.2.16 3.2.17 3.2.18 3.2.19 3.2.2 3.2.20 3.2.21 3.2.22 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0
strong-testimonials / public / css / rating-form.css
strong-testimonials / public / css Last commit date
animate.min.css 7 years ago columns.css 8 years ago grid.css 8 years ago masonry.css 9 years ago rating-display.css 8 years ago rating-form.css 8 years ago slider-controls-full-buttons.css 8 years ago slider-controls-full-buttons2.css 8 years ago slider-controls-full-buttons3.css 8 years ago slider-controls-full-text.css 8 years ago slider-controls-sides-buttons-pager-buttons.css 8 years ago slider-controls-sides-buttons-pager-text.css 8 years ago slider-controls-sides-buttons.css 8 years ago slider-controls-sides-buttons2-pager-buttons.css 8 years ago slider-controls-sides-buttons2-pager-text.css 8 years ago slider-controls-sides-buttons2.css 8 years ago slider-controls-sides-buttons3-pager-buttons.css 8 years ago slider-controls-sides-buttons3-pager-text.css 8 years ago slider-controls-sides-buttons3.css 8 years ago slider-controls-sides-inside-buttons-pager-buttons.css 8 years ago slider-controls-sides-inside-buttons-pager-text.css 8 years ago slider-controls-sides-inside-buttons.css 8 years ago slider-controls-sides-inside-buttons2-pager-buttons.css 8 years ago slider-controls-sides-inside-buttons2-pager-text.css 8 years ago slider-controls-sides-inside-buttons2.css 8 years ago slider-controls-sides-inside-buttons3-pager-buttons.css 8 years ago slider-controls-sides-inside-buttons3-pager-text.css 8 years ago slider-controls-sides-inside-buttons3.css 8 years ago slider-controls-sides-outside-buttons-pager-buttons.css 8 years ago slider-controls-sides-outside-buttons-pager-text.css 8 years ago slider-controls-sides-outside-buttons.css 8 years ago slider-controls-sides-outside-buttons2-pager-buttons.css 8 years ago slider-controls-sides-outside-buttons2-pager-text.css 8 years ago slider-controls-sides-outside-buttons2.css 8 years ago slider-controls-sides-outside-buttons3-pager-buttons.css 8 years ago slider-controls-sides-outside-buttons3-pager-text.css 8 years ago slider-controls-sides-outside-buttons3.css 8 years ago slider-controls-simple-buttons-pager-buttons.css 8 years ago slider-controls-simple-buttons-pager-text.css 8 years ago slider-controls-simple-buttons.css 8 years ago slider-controls-simple-buttons2-pager-buttons.css 8 years ago slider-controls-simple-buttons2-pager-text.css 8 years ago slider-controls-simple-buttons2.css 8 years ago slider-controls-simple-buttons3-pager-buttons.css 8 years ago slider-controls-simple-buttons3-pager-text.css 8 years ago slider-controls-simple-buttons3.css 8 years ago slider-controls-simple-text-pager-buttons.css 8 years ago slider-controls-simple-text-pager-text.css 8 years ago slider-controls-simple-text.css 8 years ago slider-pager-buttons.css 8 years ago slider-pager-text.css 8 years ago
rating-form.css
132 lines
1 /**
2 * Star Ratings
3 *
4 * Pure CSS. No floats or bidi. HTML inputs makes it ideal for use in a form. Simple em-based sizing.
5 *
6 * http://codepen.io/cdillon/pen/vXNbBw
7 *
8 * Based on Pure CSS Star Rating Widget by James Barnett
9 * http://codepen.io/jamesbarnett/pen/vlpkh
10 */
11
12 /* the container */
13 .strong-rating-wrapper {
14 }
15
16 /* the fieldset */
17 .strong-rating {
18 display: inline-block;
19 border: 0;
20 margin: 0;
21 padding: 5px;
22 }
23
24 .strong-rating:focus {
25 outline: 1px solid #CCC;
26 }
27
28 /* the stars */
29 .strong-rating input[type=radio] {
30 display: none !important;
31 }
32
33 .strong-rating label {
34 font-weight: normal;
35 }
36
37 .strong-rating label:before {
38 font-family: FontAwesome;
39 content: "\f005";
40 display: inline-block;
41 font-size: 1.25em;
42 line-height: 1;
43 /* use padding not margin */
44 padding: 4px;
45 transition: color 0.3s ease;
46 }
47
48 .strong-rating label:hover {
49 cursor: pointer;
50 }
51
52 /* fieldset tweaks */
53
54 /* in a form */
55 .strong-rating-wrapper.in-form .strong-rating {}
56
57 /* in a view */
58 .strong-rating-wrapper.in-view .strong-rating {
59 margin: 0;
60 padding: 0;
61 }
62
63 /* in the post editor */
64 .strong-rating-wrapper.in-metabox .strong-rating > label:before {
65 font-size: 20px;
66 line-height: 27px;
67 padding: 0 4px;
68 color: #0073aa;
69 }
70
71 /* the magic */
72
73 /* this is how we highlight stars before the checked one (siblings before): */
74
75 /* hide the first label which is initially checked */
76 /* added bonus of POSTing the default value so no need for isset(...) */
77 .strong-rating label[for$="star0"] {
78 display: none !important;
79 }
80
81 /* and turn all on */
82 .strong-rating label:before {
83 color: #FFB900;
84 }
85
86 /* turn off stars after the one we're on */
87 .strong-rating label:hover ~ label:before {
88 content: "\f006";
89 }
90 /* maybe use different color if validation error */
91 .error .strong-rating label:hover ~ label:before {
92 }
93
94 /* turn off stars after the current rating */
95 .strong-rating input:checked ~ label:before {
96 content: "\f006";
97 }
98 /* maybe use different color if validation error */
99 .error .strong-rating input:checked ~ label:before {
100 }
101
102 /* turn on the current rating */
103 .strong-rating input[type="radio"]:checked + label:before,
104 .error .strong-rating input:checked + label:before {
105 content: "\f005";
106 }
107 .strong-rating-wrapper.in-metabox input[type="radio"]:checked + label:before {
108 color: #00b9eb;
109 }
110
111 /* when hovering the entire fieldset: */
112
113 /* (1) turn all on */
114 .strong-rating:hover input ~ label:before,
115 .error .strong-rating:hover input ~ label:before {
116 content: "\f005";
117 }
118
119 /* (2) indicate current selection (optional) */
120 .strong-rating:hover input:checked + label:before,
121 .error .strong-rating:hover input:checked + label:before {
122 color: #FFE39E;
123 }
124
125 /* (3) then turn off siblings after the hovered star */
126 .strong-rating:hover label:hover ~ input:not(:checked) + label:before {
127 content: "\f006";
128 }
129 /* maybe use different color if validation error */
130 .error .strong-rating:hover label:hover ~ input:not(:checked) + label:before {
131 }
132