| 1 |
#wpwrap { |
| 2 |
background-color: #fff; |
| 3 |
|
| 4 |
} |
| 5 |
|
| 6 |
th { |
| 7 |
cursor: pointer; |
| 8 |
} |
| 9 |
|
| 10 |
legend { |
| 11 |
display: none; |
| 12 |
} |
| 13 |
|
| 14 |
.fca_eoi_settings_text_input{ |
| 15 |
width: 100%; |
| 16 |
max-width: 280px; |
| 17 |
} |
| 18 |
.fca_eoi_help_text { |
| 19 |
font-style: italic; |
| 20 |
|
| 21 |
} |
| 22 |
.fca_eoi_license_status_text { |
| 23 |
text-align: center; |
| 24 |
display: inline-block; |
| 25 |
position: relative; |
| 26 |
left: -85px; |
| 27 |
min-width: 52px; |
| 28 |
padding: 3px 5px; |
| 29 |
margin-left: 3px; |
| 30 |
border-radius: 5px; |
| 31 |
color: #fff; |
| 32 |
|
| 33 |
} |
| 34 |
.fca_license_active { |
| 35 |
background: #7ad03a; |
| 36 |
margin-right: -67px; |
| 37 |
} |
| 38 |
|
| 39 |
.fca_license_inactive { |
| 40 |
background: #dd3d36; |
| 41 |
margin-right: -72px; |
| 42 |
} |
| 43 |
.fca_eoi_help_text a { |
| 44 |
text-decoration: none; |
| 45 |
} |
| 46 |
/* ON OFF SWITCH */ |
| 47 |
.onoffswitch { |
| 48 |
position: relative; |
| 49 |
width: 76px; |
| 50 |
-webkit-user-select:none; |
| 51 |
-moz-user-select:none; |
| 52 |
-ms-user-select: none; |
| 53 |
} |
| 54 |
.onoffswitch-checkbox { |
| 55 |
display: none; |
| 56 |
} |
| 57 |
.onoffswitch-label { |
| 58 |
display: block; |
| 59 |
overflow: hidden; |
| 60 |
cursor: pointer; |
| 61 |
border-radius: 30px; |
| 62 |
} |
| 63 |
.onoffswitch-inner { |
| 64 |
display: block; |
| 65 |
width: 200%; |
| 66 |
margin-left: -100%; |
| 67 |
transition: margin 0.3s ease-in-out 0s; |
| 68 |
} |
| 69 |
.onoffswitch-inner:before, .onoffswitch-inner:after { |
| 70 |
display: block; |
| 71 |
float: left; |
| 72 |
width: 50%; |
| 73 |
height: 30px; |
| 74 |
padding: 0; |
| 75 |
line-height: 30px; |
| 76 |
font-size: 14px; |
| 77 |
color: white; |
| 78 |
font-family: Trebuchet, Arial, sans-serif; |
| 79 |
font-weight: bold; |
| 80 |
box-sizing: border-box; |
| 81 |
} |
| 82 |
.onoffswitch-inner:before { |
| 83 |
content: attr(data-content-on); |
| 84 |
padding-left: 10px; |
| 85 |
background-color: #39b0ff; |
| 86 |
color: #FFFFFF; |
| 87 |
} |
| 88 |
.onoffswitch-inner:after { |
| 89 |
content: attr(data-content-off); |
| 90 |
padding-right: 10px; |
| 91 |
background-color: #EEE; |
| 92 |
color: #32373c; |
| 93 |
text-align: right; |
| 94 |
font-weight: 500; |
| 95 |
} |
| 96 |
.onoffswitch-switch { |
| 97 |
display: block; |
| 98 |
width: 30px; |
| 99 |
height: 30px; |
| 100 |
background: #FFFFFF; |
| 101 |
position: absolute; |
| 102 |
top: -1px; |
| 103 |
right: 50px; |
| 104 |
border: 1px solid #DDD; |
| 105 |
border-radius: 30px; |
| 106 |
transition: all 0.3s ease-in-out 0s; |
| 107 |
} |
| 108 |
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { |
| 109 |
margin-left: 0; |
| 110 |
} |
| 111 |
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { |
| 112 |
right: -1px; |
| 113 |
} |
| 114 |
|
| 115 |
|
| 116 |
|
| 117 |
/* MOBILE */ |
| 118 |
|
| 119 |
@media screen and (max-width: 782px) { |
| 120 |
.fca_eoi_license_status_text { |
| 121 |
position: initial; |
| 122 |
} |
| 123 |
|
| 124 |
} |
| 125 |
|