inviton-powerduck 0.0.147 → 0.0.149

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,85 @@
1
- .inv-mdfw-radio > .inv-cbrb-inner > label {
2
- line-height: 20px;
1
+ @keyframes invMdRadioRipple {
2
+ 0% {
3
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
4
+ }
5
+
6
+ 50% {
7
+ box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
8
+ }
9
+
10
+ 100% {
11
+ box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
12
+ }
13
+ }
14
+
15
+ .inv-md-radio {
16
+ margin: 0;
17
+ padding: 3px 0px;
18
+ box-sizing: border-box;
19
+ }
20
+
21
+ .inv-md-radio.inv-md-radio-inline {
22
+ display: inline-block;
23
+ }
24
+
25
+ .inv-md-radio input[type='radio'] {
26
+ display: none;
27
+ }
28
+
29
+ .inv-md-radio input[type='radio']:checked+label:before {
30
+ border-color: #337ab7;
31
+ animation: invMdRadioRipple 0.2s linear forwards;
32
+ }
33
+
34
+ .inv-md-radio input[type='radio']:checked+label:after {
35
+ transform: scale(1);
3
36
  }
37
+
38
+ .inv-md-radio label,
39
+ input[type='radio']+label {
40
+ display: inline-block;
41
+ min-height: 20px;
42
+ position: relative;
43
+ padding: 0 30px;
44
+ margin-bottom: 0;
45
+ cursor: pointer;
46
+ vertical-align: bottom;
47
+ width: 100%;
48
+ margin-left: 0px !important;
49
+ }
50
+
51
+ .inv-md-radio label:before,
52
+ .inv-md-radio label:after {
53
+ position: absolute;
54
+ content: '';
55
+ border-radius: 50%;
56
+ transition: all 0.3s ease;
57
+ transition-property: transform, border-color;
58
+ }
59
+
60
+ .inv-md-radio label:before {
61
+ left: 0;
62
+ top: 0;
63
+ width: 20px;
64
+ height: 20px;
65
+ border: 2px solid rgba(0, 0, 0, 0.54);
66
+ }
67
+
68
+ .inv-md-radio label:after {
69
+ top: 5px;
70
+ left: 5px;
71
+ width: 10px;
72
+ height: 10px;
73
+ transform: scale(0);
74
+ background: #337ab7;
75
+ }
76
+
77
+ .inv-md-radio *,
78
+ .inv-md-radio *:before,
79
+ .inv-md-radio *:after {
80
+ box-sizing: border-box;
81
+ }
82
+
83
+ .inv-mdfw-radio>.inv-cbrb-inner>label {
84
+ line-height: 20px;
85
+ }