PluginProbe ʕ •ᴥ•ʔ
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 1.7.3
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v1.7.3
4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 2.0.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.2 2.3.3 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.4.0 3.4.1 3.4.2 3.4.3 3.5.0 3.5.1 3.5.2 3.5.3 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.7.0 3.7.1 3.7.2 3.7.3 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.9.0 3.9.1 3.9.10 3.9.11 3.9.12 3.9.13 3.9.14 3.9.15 3.9.16 3.9.17 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 3.9.7 3.9.8 3.9.9 4.0.0 4.0.1 4.0.10 4.0.11 4.0.12 4.0.13 4.0.14 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.10 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.4.0 4.4.1 4.4.10 4.4.11 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5.0 4.5.1
embedpress / freemius / assets / scss / admin / debug.scss
embedpress / freemius / assets / scss / admin Last commit date
_deactivation-feedback.scss 9 years ago _license-activation.scss 9 years ago _license-key-resend.scss 9 years ago _modal-common.scss 9 years ago account.scss 9 years ago add-ons.scss 9 years ago checkout.scss 9 years ago common.scss 9 years ago connect.scss 9 years ago debug.scss 9 years ago dialog-boxes.scss 9 years ago
debug.scss
135 lines
1 @import "../start";
2
3 .switch
4 {
5 position: relative;
6 display: inline-block;
7 font-size: 1.6em;
8 font-weight: bold;
9 color: #ccc;
10 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
11 height: 18px;
12 padding: 6px 6px 5px 6px;
13 border: 1px solid #ccc;
14 border: 1px solid rgba(0, 0, 0, 0.2);
15 border-radius: 4px;
16 background: #ececec;
17 box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
18 cursor: pointer;
19
20 span
21 {
22 display: inline-block; width: 35px;
23 text-transform: uppercase;
24
25 &.on
26 {
27 color: $button-primary-bkg;
28 }
29 }
30
31 .toggle
32 {
33 position: absolute;
34 top: 1px;
35 width: 37px;
36 height: 25px;
37 border: 1px solid #ccc;
38 border: 1px solid rgba(0, 0, 0, 0.3);
39 border-radius: 4px;
40 background: #fff;
41 background: -moz-linear-gradient(top, #ececec 0%, #fff 100%);
42 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ececec), color-stop(100%, #fff));
43 background: -webkit-linear-gradient(top, #ececec 0%, #fff 100%);
44 background: -o-linear-gradient(top, #ececec 0%, #fff 100%);
45 background: -ms-linear-gradient(top, #ececec 0%, #fff 100%);
46 background: linear-gradient(top, #ececec 0%, #fff 100%);
47 box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
48 z-index: 999;
49 @include transition(all 0.15s ease-in-out);
50 }
51
52 &.on .toggle
53 {
54 left: 2%;
55 }
56 &.off .toggle
57 {
58 left: 54%;
59 }
60
61 /* Round switch */
62 &.round
63 {
64 padding: 0px 20px;
65 border-radius: 40px;
66
67 .toggle
68 {
69 border-radius: 40px;
70 width: 14px;
71 height: 14px;
72 }
73
74 &.on .toggle
75 {
76 left: 3%;
77 background: $button-primary-bkg;
78 }
79 &.off .toggle
80 {
81 left: 58%;
82 }
83 }
84 }
85
86 .switch-label
87 {
88 font-size: 20px;
89 line-height: 31px;
90 margin: 0 5px;
91 }
92
93 #fs_log_book {
94 table {
95 font-family: Consolas,Monaco,monospace;
96 font-size: 12px;
97
98 th {
99 color: #ccc;
100 }
101
102 tr {
103 background: #232525;
104
105 &.alternate {
106 background: #2b2b2b;
107 }
108
109 td {
110 &.fs-col--logger {
111 color: #5a7435;
112 }
113 &.fs-col--type {
114 color: #ffc861;
115 }
116 &.fs-col--function {
117 color: #a7b7b1;
118 font-weight: bold;
119 }
120 &.fs-col--message {
121 &, a
122 {
123 color: #9a73ac !important;
124 }
125 }
126 &.fs-col--file {
127 color: #d07922;
128 }
129 &.fs-col--timestamp {
130 color: #6596be;
131 }
132 }
133 }
134 }
135 }