PluginProbe ʕ •ᴥ•ʔ
Easy HTTPS Redirection (SSL) / 2.0.1
Easy HTTPS Redirection (SSL) v2.0.1
trunk 1.5 1.6 1.8 1.9.1 1.9.2 2.0.0 2.0.1
https-redirection / css / ehssl-admin-styles.css
https-redirection / css Last commit date
ehssl-admin-styles.css 1 day ago ehssl-common-style.css 1 year ago
ehssl-admin-styles.css
189 lines
1 /* General CSS */
2 .ehssl-margin-10{
3 margin: 10px;
4 }
5 .ehssl-margin-top-10{
6 margin-top: 10px;
7 }
8 .ehssl-margin-bottom-10{
9 margin-bottom: 10px;
10 }
11 .ehssl-hidden{
12 display: none;
13 }
14 .ehssl-green-success-text{
15 font-weight: bold;
16 color: green;
17 }
18 .ehssl-red-error-text{
19 font-weight: bold;
20 color: red;
21 }
22 .ehssl-box-shadow {
23 box-shadow: 0 1px 1px rgba(0,0,0,.04);
24 }
25
26 /* Wrap directly with this class (not to be used with a paragraph tag) */
27 .ehssl-yellow-box{
28 margin: 10px 0px;
29 padding: 10px;
30 background-color: #FFFFE0;
31 border-color: #E6DB55;
32 border-radius: 3px 3px 3px 3px;
33 border-style: solid;
34 border-width: 1px;
35 }
36
37 /* Wrap directly with this class (not to be used with a paragraph tag) */
38 .ehssl-red-box {
39 margin: 10px 0px;
40 padding: 10px;
41 background-color: #FFEBE8;
42 border-color: #CC0000;
43 color: #333333;
44 border-radius: 3px 3px 3px 3px;
45 border-style: solid;
46 border-width: 1px;
47 }
48
49 /* Wrap directly with this class (not to be used with a paragraph tag) */
50 .ehssl-orange-box{
51 margin: 10px 0px;
52 padding: 15px 10px;
53 color: #3F2502;
54 background-color: #FFF6D5;
55 border-color: #D1B655;
56 border-radius: 3px 3px 3px 3px;
57 border-style: solid;
58 border-width: 1px;
59 }
60
61 /* Wrap directly with this class (not to be used with a paragraph tag) */
62 .ehssl-white-box{
63 margin: 10px 0px;
64 padding: 15px 10px;
65 color: #3c434a;
66 background-color: #fff;
67 border-color: #c3c4c7;
68 border-width: 1px;
69 border-radius: 3px 3px 3px 3px;
70 border-style: solid;
71 }
72
73 /* Wrap directly with this class (not to be used with a paragraph tag) */
74 .ehssl-grey-box{
75 margin: 10px 0px;
76 padding: 15px 10px;
77 background-color: #DDDDDD;
78 border-color: #CCCCCC;
79 border-radius: 3px 3px 3px 3px;
80 border-style: solid;
81 border-width: 1px;
82 }
83
84 /* Wrap directly with this class (not to be used with a paragraph tag) */
85 .ehssl-green-box {
86 margin: 10px 0px;
87 padding: 15px 10px;
88 background-color: #CCF4D6;
89 border-color: #059B53;
90 color: #043B14;
91 border-radius: 3px 3px 3px 3px;
92 border-style: solid;
93 border-width: 1px;
94 }
95
96 /* Wrap directly with this class (not to be used with a paragraph tag) */
97 .ehssl-blue-box {
98 margin: 10px 0px;
99 padding: 15px 10px;
100 background-color: #E7F4FE;
101 border-color: #AACEE6;
102 color: #1D263B;
103 border-radius: 3px 3px 3px 3px;
104 border-style: solid;
105 border-width: 1px;
106 }
107
108 /*
109 * styles for settings page
110 */
111 .rewrite_info {
112 color: rgb(136, 136, 136);
113 font-size: 10px;
114 clear: both;
115 }
116
117 .rewrite_item_delete_btn, .rewrite_item_add_btn {
118 padding-left: 6px !important;
119 padding-right: 6px !important;
120 cursor: pointer;
121 }
122 .rewrite_select_item .rewrite_delete_select_item{
123 padding: 0 6px 0 6px;
124 }
125
126 .rewrite_item_blank_error{
127 color: red;
128 display: none;
129 }
130
131 /*----- Email tags hint ----- */
132
133 .ehssl-tags-table-cont {
134 margin-top: 10px;
135 }
136
137 a.ehssl-toggle {
138 text-decoration: none;
139 border-bottom: 1px dashed;
140 }
141
142 a.ehssl-toggle.toggled-on::after {
143 content: "";
144 }
145
146 a.ehssl-toggle.toggled-off::after {
147 content: "";
148 }
149
150 table.ehssl-tags-hint td, table.ehssl-tags-hint th {
151 padding: 5px 10px;
152 }
153
154 table.ehssl-tags-hint {
155 background: #fff;
156 width: 100%;
157 }
158
159 table.ehssl-tags-hint td.ehssl-tag-name {
160 width: 150px;
161 border-bottom: 1px solid #ededed;
162 }
163
164 table.ehssl-tags-hint td.ehssl-tag-descr {
165 width: 70%;
166 border-bottom: 1px solid #ededed;
167 }
168
169 /*----- END Email tags hint ----- */
170
171 .ehssl-settings-field-cat-1{
172 width: 70px;
173 }
174
175 .ehssl-settings-field-cat-2{
176 width: 400px;
177 }
178
179 .ehssl-settings-field-cat-3{
180 width: 650px;
181 }
182
183 @media only screen and (max-width: 782px){
184 .ehssl-settings-field-cat-1,
185 .ehssl-settings-field-cat-2,
186 .ehssl-settings-field-cat-3{
187 width: 100%;
188 }
189 }