PluginProbe ʕ •ᴥ•ʔ
Strong Testimonials / 2.38
Strong Testimonials v2.38
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 / admin / css / number-spinner.css
strong-testimonials / admin / css Last commit date
about.css 7 years ago admin-compat.css 7 years ago admin-form.css 7 years ago fields.css 7 years ago form-preview.css 7 years ago number-spinner.css 7 years ago order.css 7 years ago polylang.css 7 years ago post-editor.css 7 years ago views.css 7 years ago wpml.css 7 years ago
number-spinner.css
99 lines
1 /**
2 * Number spinner
3 */
4 .number-style {
5 display: inline-block;
6 margin-right: 10px;
7 /**
8 * Disable text selection on buttons. Seems to help jittery pointers.
9 */
10 }
11 .number-style input {
12 margin: 0 5px;
13 font-family: Consolas, Monaco, monospace;
14 text-align: center;
15 width: 4em;
16 }
17 .number-style > span {
18 cursor: pointer;
19 }
20 .number-style > span.number-minus, .number-style > span.number-plus {
21 height: 24px;
22 width: 24px;
23 display: inline-block;
24 text-align: center;
25 vertical-align: top;
26 border-radius: 3px;
27 background: #0085ba;
28 border-width: 1px;
29 border-style: solid;
30 border-color: #0073aa #006799 #006799;
31 -webkit-box-shadow: 0 1px 0 #006799;
32 box-shadow: 0 1px 0 #006799;
33 text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
34 color: #FFF;
35 }
36 .number-style > span.number-minus:hover, .number-style > span.number-plus:hover {
37 background: #008ec2;
38 }
39 .number-style > span.number-minus:active, .number-style > span.number-plus:active {
40 background: #0073aa;
41 border-color: #006799;
42 -webkit-box-shadow: inset 0 2px 0 #006799;
43 box-shadow: inset 0 2px 0 #006799;
44 -webkit-transform: translateY(1px);
45 -ms-transform: translateY(1px);
46 transform: translateY(1px);
47 outline: none;
48 }
49 .number-style > span.number-minus.disabled, .number-style > span.number-plus.disabled {
50 background: #AAA;
51 border-color: #999 #777 #777;
52 -webkit-box-shadow: 0 1px 0 #777;
53 box-shadow: 0 1px 0 #777;
54 text-shadow: 0 -1px 1px #777, 1px 0 1px #777, 0 1px 1px #777, -1px 0 1px #777;
55 }
56 .number-style > span.number-minus::after, .number-style > span.number-plus::after {
57 font-family: dashicons;
58 font-size: 24px;
59 line-height: 24px;
60 height: 24px;
61 width: 24px;
62 display: inline-block;
63 color: #FFF;
64 text-align: center;
65 position: relative;
66 left: -1px;
67 }
68 .number-style > span.number-minus::after {
69 content: "\f140";
70 }
71 .number-style > span.number-plus::after {
72 content: "\f142";
73 }
74 .number-style input[type='number'] {
75 -moz-appearance: textfield;
76 }
77 .number-style input::-webkit-outer-spin-button,
78 .number-style input::-webkit-inner-spin-button {
79 -webkit-appearance: none;
80 }
81 .number-style .number-minus,
82 .number-style .number-plus,
83 .number-style .number-minus::after,
84 .number-style .number-plus::after {
85 -webkit-touch-callout: none;
86 /* iOS Safari */
87 -webkit-user-select: none;
88 /* Safari */
89 -khtml-user-select: none;
90 /* Konqueror HTML */
91 -moz-user-select: none;
92 /* Firefox */
93 -ms-user-select: none;
94 /* Internet Explorer/Edge */
95 user-select: none;
96 /* Non-prefixed version, currently
97 supported by Chrome and Opera */
98 }
99