ability_engine 0.0.1
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.
- data/.gitignore +18 -0
- data/.rvmrc +1 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +118 -0
- data/LICENSE +22 -0
- data/README.md +57 -0
- data/Rakefile +2 -0
- data/ability_engine.gemspec +22 -0
- data/app/controllers/current_ability_controller.rb +7 -0
- data/config/routes.rb +3 -0
- data/lib/ability_engine.rb +6 -0
- data/lib/ability_engine/version.rb +3 -0
- data/spec/controllers/current_ability_controller_spec.rb +16 -0
- data/spec/dummy/.gitignore +1 -0
- data/spec/dummy/Rakefile +8 -0
- data/spec/dummy/app/assets/javascripts/application.js +47 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/home_controller.rb +9 -0
- data/spec/dummy/app/helpers/application_helper.rb +13 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/views/layouts/application.html.haml +22 -0
- data/spec/dummy/app/views/layouts/common/_agent_banner.html.haml +14 -0
- data/spec/dummy/app/views/layouts/common/_footer.html.haml +16 -0
- data/spec/dummy/app/views/layouts/common/_login_banner.html.haml +12 -0
- data/spec/dummy/app/views/layouts/common/_login_footer.html.haml +26 -0
- data/spec/dummy/app/views/layouts/devise/sessions.html.haml +18 -0
- data/spec/dummy/config.ru +7 -0
- data/spec/dummy/config/application.rb +50 -0
- data/spec/dummy/config/boot.rb +17 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +25 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/locales/devise.en.yml +56 -0
- data/spec/dummy/config/locales/en.yml +7 -0
- data/spec/dummy/config/routes.rb +67 -0
- data/spec/dummy/lib/tasks/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/login.html +1 -0
- data/spec/dummy/public/robots.txt +5 -0
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/public/stylesheets/application.css +4702 -0
- data/spec/dummy/public/stylesheets/home.css.css +0 -0
- data/spec/dummy/public/stylesheets/ie.css +122 -0
- data/spec/dummy/public/stylesheets/ie7.css +199 -0
- data/spec/dummy/public/stylesheets/ie8.css +14 -0
- data/spec/dummy/public/stylesheets/jquery/fileuploader.css +99 -0
- data/spec/dummy/public/stylesheets/jquery/ui-lightness/jquery.ui.autocomplete.css +70 -0
- data/spec/dummy/public/stylesheets/jquery/ui-lightness/jquery.ui.datepicker.css +1562 -0
- data/spec/dummy/public/stylesheets/jquery/ui-lightness/jquery.ui.dialog.css +131 -0
- data/spec/dummy/public/stylesheets/users.css.css +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/vendor/plugins/.gitkeep +0 -0
- data/spec/spec_helper.rb +39 -0
- metadata +221 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
This is the login page
|
File without changes
|
@@ -0,0 +1,4702 @@
|
|
1
|
+
/* normalize.css 2011-08-11T09:26 UTC · http://github.com/necolas/normalize.css */
|
2
|
+
/* =============================================================================
|
3
|
+
HTML5 display definitions
|
4
|
+
========================================================================== */
|
5
|
+
/*
|
6
|
+
* Corrects block display not defined in IE6/7/8/9 & FF3
|
7
|
+
*/
|
8
|
+
/* line 20, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
9
|
+
article,
|
10
|
+
aside,
|
11
|
+
details,
|
12
|
+
figcaption,
|
13
|
+
figure,
|
14
|
+
footer,
|
15
|
+
header,
|
16
|
+
hgroup,
|
17
|
+
nav,
|
18
|
+
section {
|
19
|
+
display: block;
|
20
|
+
}
|
21
|
+
|
22
|
+
/*
|
23
|
+
* Corrects inline-block display not defined in IE6/7/8/9 & FF3
|
24
|
+
*/
|
25
|
+
/* line 30, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
26
|
+
audio,
|
27
|
+
canvas,
|
28
|
+
video {
|
29
|
+
display: inline-block;
|
30
|
+
*display: inline;
|
31
|
+
*zoom: 1;
|
32
|
+
}
|
33
|
+
|
34
|
+
/*
|
35
|
+
* Prevents modern browsers from displaying 'audio' without controls
|
36
|
+
*/
|
37
|
+
/* line 40, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
38
|
+
audio:not([controls]) {
|
39
|
+
display: none;
|
40
|
+
}
|
41
|
+
|
42
|
+
/*
|
43
|
+
* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
|
44
|
+
* Known issue: no IE6 support
|
45
|
+
*/
|
46
|
+
/* line 49, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
47
|
+
[hidden] {
|
48
|
+
display: none;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* =============================================================================
|
52
|
+
Base
|
53
|
+
========================================================================== */
|
54
|
+
/*
|
55
|
+
* 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
|
56
|
+
* http://clagnut.com/blog/348/#c790
|
57
|
+
* 2. Keeps page centred in all browsers regardless of content height
|
58
|
+
* 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
|
59
|
+
* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
|
60
|
+
*/
|
61
|
+
/* line 66, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
62
|
+
html {
|
63
|
+
font-size: 100%;
|
64
|
+
/* 1 */
|
65
|
+
overflow-y: scroll;
|
66
|
+
/* 2 */
|
67
|
+
-webkit-text-size-adjust: 100%;
|
68
|
+
/* 3 */
|
69
|
+
-ms-text-size-adjust: 100%;
|
70
|
+
/* 3 */
|
71
|
+
}
|
72
|
+
|
73
|
+
/*
|
74
|
+
* Addresses margins handled incorrectly in IE6/7
|
75
|
+
*/
|
76
|
+
/* line 77, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
77
|
+
body {
|
78
|
+
margin: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
/*
|
82
|
+
* Addresses font-family inconsistency between 'textarea' and other form elements.
|
83
|
+
*/
|
84
|
+
/* line 89, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
85
|
+
body,
|
86
|
+
button,
|
87
|
+
input,
|
88
|
+
select,
|
89
|
+
textarea {
|
90
|
+
font-family: sans-serif;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* =============================================================================
|
94
|
+
Links
|
95
|
+
========================================================================== */
|
96
|
+
/* line 98, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
97
|
+
a {
|
98
|
+
color: #00e;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* line 102, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
102
|
+
a:visited {
|
103
|
+
color: #551a8b;
|
104
|
+
}
|
105
|
+
|
106
|
+
/*
|
107
|
+
* Addresses outline displayed oddly in Chrome
|
108
|
+
*/
|
109
|
+
/* line 110, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
110
|
+
a:focus {
|
111
|
+
outline: thin dotted;
|
112
|
+
}
|
113
|
+
|
114
|
+
/*
|
115
|
+
* Improves readability when focused and also mouse hovered in all browsers
|
116
|
+
* people.opera.com/patrickl/experiments/keyboard/test
|
117
|
+
*/
|
118
|
+
/* line 120, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
119
|
+
a:hover,
|
120
|
+
a:active {
|
121
|
+
outline: 0;
|
122
|
+
}
|
123
|
+
|
124
|
+
/* =============================================================================
|
125
|
+
Typography
|
126
|
+
========================================================================== */
|
127
|
+
/*
|
128
|
+
* Addresses styling not present in IE7/8/9, S5, Chrome
|
129
|
+
*/
|
130
|
+
/* line 133, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
131
|
+
abbr[title] {
|
132
|
+
/*border-bottom: 1px dotted;*/
|
133
|
+
}
|
134
|
+
|
135
|
+
/*
|
136
|
+
* Addresses style set to 'bolder' in FF3/4, S4/5, Chrome
|
137
|
+
*/
|
138
|
+
/* line 142, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
139
|
+
b,
|
140
|
+
strong {
|
141
|
+
font-weight: bold;
|
142
|
+
}
|
143
|
+
|
144
|
+
/* line 146, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
145
|
+
blockquote {
|
146
|
+
margin: 1em 40px;
|
147
|
+
}
|
148
|
+
|
149
|
+
/*
|
150
|
+
* Addresses styling not present in S5, Chrome
|
151
|
+
*/
|
152
|
+
/* line 154, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
153
|
+
dfn {
|
154
|
+
font-style: italic;
|
155
|
+
}
|
156
|
+
|
157
|
+
/*
|
158
|
+
* Addresses styling not present in IE6/7/8/9
|
159
|
+
*/
|
160
|
+
/* line 162, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
161
|
+
mark {
|
162
|
+
background: #ff0;
|
163
|
+
color: #000;
|
164
|
+
}
|
165
|
+
|
166
|
+
/*
|
167
|
+
* Corrects font family set oddly in IE6, S4/5, Chrome
|
168
|
+
* en.wikipedia.org/wiki/User:Davidgothberg/Test59
|
169
|
+
*/
|
170
|
+
/* line 175, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
171
|
+
pre,
|
172
|
+
code,
|
173
|
+
kbd,
|
174
|
+
samp {
|
175
|
+
font-family: monospace, serif;
|
176
|
+
_font-family: 'courier new', monospace;
|
177
|
+
font-size: 1em;
|
178
|
+
}
|
179
|
+
|
180
|
+
/*
|
181
|
+
* Improves readability of pre-formatted text in all browsers
|
182
|
+
*/
|
183
|
+
/* line 185, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
184
|
+
pre {
|
185
|
+
white-space: pre;
|
186
|
+
white-space: pre-wrap;
|
187
|
+
word-wrap: break-word;
|
188
|
+
}
|
189
|
+
|
190
|
+
/*
|
191
|
+
* 1. Addresses CSS quotes not supported in IE6/7
|
192
|
+
* 2. Addresses quote property not supported in S4
|
193
|
+
*/
|
194
|
+
/* 1 */
|
195
|
+
/* line 198, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
196
|
+
q {
|
197
|
+
quotes: none;
|
198
|
+
}
|
199
|
+
|
200
|
+
/* 2 */
|
201
|
+
/* line 205, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
202
|
+
q:before,
|
203
|
+
q:after {
|
204
|
+
content: '';
|
205
|
+
content: none;
|
206
|
+
}
|
207
|
+
|
208
|
+
/* line 210, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
209
|
+
small {
|
210
|
+
font-size: 75%;
|
211
|
+
}
|
212
|
+
|
213
|
+
/*
|
214
|
+
* Prevents sub and sup affecting line-height in all browsers
|
215
|
+
* gist.github.com/413930
|
216
|
+
*/
|
217
|
+
/* line 220, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
218
|
+
sub,
|
219
|
+
sup {
|
220
|
+
font-size: 75%;
|
221
|
+
line-height: 0;
|
222
|
+
position: relative;
|
223
|
+
vertical-align: baseline;
|
224
|
+
}
|
225
|
+
|
226
|
+
/* line 227, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
227
|
+
sup {
|
228
|
+
top: -0.5em;
|
229
|
+
}
|
230
|
+
|
231
|
+
/* line 231, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
232
|
+
sub {
|
233
|
+
bottom: -0.25em;
|
234
|
+
}
|
235
|
+
|
236
|
+
/* =============================================================================
|
237
|
+
Lists
|
238
|
+
========================================================================== */
|
239
|
+
/* line 241, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
240
|
+
ul,
|
241
|
+
ol {
|
242
|
+
margin: 1em 0;
|
243
|
+
padding: 0 0 0 40px;
|
244
|
+
}
|
245
|
+
|
246
|
+
/* line 246, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
247
|
+
dd {
|
248
|
+
margin: 0 0 0 40px;
|
249
|
+
}
|
250
|
+
|
251
|
+
/* line 251, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
252
|
+
nav ul,
|
253
|
+
nav ol {
|
254
|
+
list-style: none;
|
255
|
+
list-style-image: none;
|
256
|
+
}
|
257
|
+
|
258
|
+
/* =============================================================================
|
259
|
+
Embedded content
|
260
|
+
========================================================================== */
|
261
|
+
/*
|
262
|
+
* 1. Removes border when inside 'a' element in IE6/7/8/9
|
263
|
+
* 2. Improves image quality when scaled in IE7
|
264
|
+
* code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
|
265
|
+
*/
|
266
|
+
/* line 267, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
267
|
+
img {
|
268
|
+
border: 0;
|
269
|
+
/* 1 */
|
270
|
+
-ms-interpolation-mode: bicubic;
|
271
|
+
/* 2 */
|
272
|
+
}
|
273
|
+
|
274
|
+
/*
|
275
|
+
* Corrects overflow displayed oddly in IE9
|
276
|
+
*/
|
277
|
+
/* line 276, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
278
|
+
svg:not(:root) {
|
279
|
+
overflow: hidden;
|
280
|
+
}
|
281
|
+
|
282
|
+
/* =============================================================================
|
283
|
+
Figures
|
284
|
+
========================================================================== */
|
285
|
+
/*
|
286
|
+
* Addresses margin not present in IE6/7/8/9, S5, O11
|
287
|
+
*/
|
288
|
+
/* line 289, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
289
|
+
figure {
|
290
|
+
margin: 0;
|
291
|
+
}
|
292
|
+
|
293
|
+
/* =============================================================================
|
294
|
+
Forms
|
295
|
+
========================================================================== */
|
296
|
+
/*
|
297
|
+
* Corrects margin displayed oddly in IE6/7
|
298
|
+
*/
|
299
|
+
/* line 302, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
300
|
+
form {
|
301
|
+
margin: 0;
|
302
|
+
}
|
303
|
+
|
304
|
+
/*
|
305
|
+
* Define consistent margin and padding
|
306
|
+
*/
|
307
|
+
/* line 310, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
308
|
+
fieldset {
|
309
|
+
margin: 0 2px;
|
310
|
+
padding: 0.35em 0.625em 0.75em;
|
311
|
+
}
|
312
|
+
|
313
|
+
/*
|
314
|
+
* 1. Corrects color not being inherited in IE6/7/8/9
|
315
|
+
* 2. Corrects alignment displayed oddly in IE6/7
|
316
|
+
*/
|
317
|
+
/* line 320, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
318
|
+
legend {
|
319
|
+
border: 0;
|
320
|
+
/* 1 */
|
321
|
+
*margin-left: -7px;
|
322
|
+
/* 2 */
|
323
|
+
}
|
324
|
+
|
325
|
+
/*
|
326
|
+
* 1. Corrects font size not being inherited in all browsers
|
327
|
+
* 2. Addresses margins set differently in IE6/7, F3/4, S5, Chrome
|
328
|
+
* 3. Improves appearance and consistency in all browsers
|
329
|
+
*/
|
330
|
+
/* line 334, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
331
|
+
button,
|
332
|
+
input,
|
333
|
+
select,
|
334
|
+
textarea {
|
335
|
+
font-size: 100%;
|
336
|
+
/* 1 */
|
337
|
+
margin: 0;
|
338
|
+
/* 2 */
|
339
|
+
vertical-align: baseline;
|
340
|
+
/* 3 */
|
341
|
+
*vertical-align: middle;
|
342
|
+
/* 3 */
|
343
|
+
}
|
344
|
+
|
345
|
+
/*
|
346
|
+
* 1. Addresses FF3/4 setting line-height using !important in the UA stylesheet
|
347
|
+
*/
|
348
|
+
/* line 346, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
349
|
+
button,
|
350
|
+
input {
|
351
|
+
line-height: normal;
|
352
|
+
/* 1 */
|
353
|
+
}
|
354
|
+
|
355
|
+
/*
|
356
|
+
* Corrects overlap and whitespace issue for buttons and inputs in IE6/7
|
357
|
+
* Known issue: reintroduces inner spacing
|
358
|
+
*/
|
359
|
+
/* line 356, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
360
|
+
table button,
|
361
|
+
table input {
|
362
|
+
*overflow: auto;
|
363
|
+
}
|
364
|
+
|
365
|
+
/*
|
366
|
+
* 1. Improves usability and consistency of cursor style between image-type 'input' and others
|
367
|
+
* 2. Corrects inability to style clickable 'input' types in iOS
|
368
|
+
* 3. Corrects inner spacing displayed oddly in IE6/7
|
369
|
+
*/
|
370
|
+
/* line 369, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
371
|
+
button,
|
372
|
+
html input[type="button"],
|
373
|
+
input[type="reset"],
|
374
|
+
input[type="submit"] {
|
375
|
+
cursor: pointer;
|
376
|
+
/* 1 */
|
377
|
+
-webkit-appearance: button;
|
378
|
+
/* 2 */
|
379
|
+
*overflow: visible;
|
380
|
+
/* 3 */
|
381
|
+
}
|
382
|
+
|
383
|
+
/*
|
384
|
+
* Addresses box sizing set to content-box in IE8/9
|
385
|
+
*/
|
386
|
+
/* line 380, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
387
|
+
input[type="checkbox"],
|
388
|
+
input[type="radio"] {
|
389
|
+
box-sizing: border-box;
|
390
|
+
}
|
391
|
+
|
392
|
+
/*
|
393
|
+
* 1. Addresses appearance set to searchfield in S5, Chrome
|
394
|
+
* 2. Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof)
|
395
|
+
*/
|
396
|
+
/* line 389, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
397
|
+
input[type="search"] {
|
398
|
+
-webkit-appearance: textfield;
|
399
|
+
/* 1 */
|
400
|
+
-moz-box-sizing: content-box;
|
401
|
+
-webkit-box-sizing: content-box;
|
402
|
+
/* 2 */
|
403
|
+
box-sizing: content-box;
|
404
|
+
}
|
405
|
+
|
406
|
+
/*
|
407
|
+
* Corrects inner padding displayed oddly in S5, Chrome on OSX
|
408
|
+
*/
|
409
|
+
/* line 400, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
410
|
+
input[type="search"]::-webkit-search-decoration {
|
411
|
+
-webkit-appearance: none;
|
412
|
+
}
|
413
|
+
|
414
|
+
/*
|
415
|
+
* Corrects inner padding and border displayed oddly in FF3/4
|
416
|
+
* www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
|
417
|
+
*/
|
418
|
+
/* line 410, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
419
|
+
button::-moz-focus-inner,
|
420
|
+
input::-moz-focus-inner {
|
421
|
+
border: 0;
|
422
|
+
padding: 0;
|
423
|
+
}
|
424
|
+
|
425
|
+
/*
|
426
|
+
* 1. Removes default vertical scrollbar in IE6/7/8/9
|
427
|
+
* 2. Improves readability and alignment in all browsers
|
428
|
+
*/
|
429
|
+
/* line 420, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
430
|
+
textarea {
|
431
|
+
overflow: auto;
|
432
|
+
/* 1 */
|
433
|
+
vertical-align: top;
|
434
|
+
/* 2 */
|
435
|
+
}
|
436
|
+
|
437
|
+
/* =============================================================================
|
438
|
+
Tables
|
439
|
+
========================================================================== */
|
440
|
+
/*
|
441
|
+
* Remove most spacing between table cells
|
442
|
+
*/
|
443
|
+
/* line 434, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/normalize.scss */
|
444
|
+
table {
|
445
|
+
border-collapse: collapse;
|
446
|
+
border-spacing: 0;
|
447
|
+
}
|
448
|
+
|
449
|
+
/* --------- typography --------------- */
|
450
|
+
@font-face {
|
451
|
+
font-family: 'SansaConSoftProSemiBold';
|
452
|
+
src: url("/fonts/sansaconsoftpro-semibold-webfont.eot");
|
453
|
+
src: url("/fonts/sansaconsoftpro-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/sansaconsoftpro-semibold-webfont.woff") format("woff"), url("/fonts/sansaconsoftpro-semibold-webfont.ttf") format("truetype"), url("/fonts/sansaconsoftpro-semibold-webfont.svg#SansaConSoftProSemiBold") format("svg");
|
454
|
+
}
|
455
|
+
|
456
|
+
/* Normal weight font for regular text, logo tagline */
|
457
|
+
@font-face {
|
458
|
+
font-family: 'SansaConSoftProNormal';
|
459
|
+
src: url("/fonts/sansaconsoftpro-normal-webfont.eot");
|
460
|
+
src: url("/fonts/sansaconsoftpro-normal-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/sansaconsoftpro-normal-webfont.woff") format("woff"), url("/fonts/sansaconsoftpro-normal-webfont.ttf") format("truetype"), url("/fonts/sansaconsoftpro-normal-webfont.svg#SansaConSoftProNormal") format("svg");
|
461
|
+
}
|
462
|
+
|
463
|
+
/* Alwyn New Rounded Medium */
|
464
|
+
@font-face {
|
465
|
+
font-family: 'REAMedium';
|
466
|
+
src: url("/fonts/rea-medium.eot?#iefix") format("embedded-opentype"), url("/fonts/rea-medium.woff") format("woff"), url("/fonts/rea-medium.ttf") format("truetype"), url("/fonts/rea-medium.svg#REAMedium") format("svg");
|
467
|
+
}
|
468
|
+
|
469
|
+
/* Using more and more REALight or REARegular instead of Sansa */
|
470
|
+
/* line 48, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
471
|
+
body {
|
472
|
+
font-family: "Helvetica Neue", "Arial", "Clean", sans-serif;
|
473
|
+
font-size: 13px;
|
474
|
+
color: #333333;
|
475
|
+
line-height: 18px;
|
476
|
+
}
|
477
|
+
|
478
|
+
/* line 55, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
479
|
+
h1, h2, h3, h4, h5 {
|
480
|
+
font-family: 'SansaConSoftProSemiBold', 'Helvetica Neue', helvetica, arial, clean, sans-serif;
|
481
|
+
color: #454545;
|
482
|
+
font-weight: normal;
|
483
|
+
line-height: 36px;
|
484
|
+
margin: 0;
|
485
|
+
}
|
486
|
+
|
487
|
+
/* line 63, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
488
|
+
h1 {
|
489
|
+
font-size: 24px;
|
490
|
+
margin: 9px 0 0px 0;
|
491
|
+
}
|
492
|
+
|
493
|
+
/* line 68, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
494
|
+
h2 {
|
495
|
+
font-size: 18px;
|
496
|
+
}
|
497
|
+
|
498
|
+
/* line 72, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
499
|
+
h3 {
|
500
|
+
font-size: 14px;
|
501
|
+
}
|
502
|
+
|
503
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
504
|
+
h4 {
|
505
|
+
color: #777777;
|
506
|
+
font-size: 10px;
|
507
|
+
text-transform: uppercase;
|
508
|
+
}
|
509
|
+
|
510
|
+
/* line 82, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
511
|
+
a {
|
512
|
+
color: #2d7eb3;
|
513
|
+
text-decoration: none;
|
514
|
+
outline: none;
|
515
|
+
font-size: 13px;
|
516
|
+
}
|
517
|
+
/* line 87, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
518
|
+
a:hover {
|
519
|
+
color: #2d7eb3;
|
520
|
+
text-decoration: underline;
|
521
|
+
}
|
522
|
+
/* line 91, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
523
|
+
a:visited {
|
524
|
+
color: #538dc2;
|
525
|
+
}
|
526
|
+
/* line 95, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
527
|
+
a.disabled:hover {
|
528
|
+
cursor: default;
|
529
|
+
text-decoration: none !important;
|
530
|
+
}
|
531
|
+
/* line 99, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
532
|
+
a.disabled:visited {
|
533
|
+
color: #2d7eb3;
|
534
|
+
}
|
535
|
+
/* line 103, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
536
|
+
a:focus {
|
537
|
+
outline: none;
|
538
|
+
}
|
539
|
+
|
540
|
+
/* line 108, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
541
|
+
p {
|
542
|
+
font-size: 13px;
|
543
|
+
margin: 0 0 9px 0;
|
544
|
+
}
|
545
|
+
|
546
|
+
/* line 113, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
547
|
+
.bold {
|
548
|
+
font-weight: bold;
|
549
|
+
}
|
550
|
+
|
551
|
+
/* line 116, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
552
|
+
.loud {
|
553
|
+
font-weight: bold;
|
554
|
+
}
|
555
|
+
|
556
|
+
/* line 120, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
557
|
+
.light {
|
558
|
+
color: #858383;
|
559
|
+
}
|
560
|
+
|
561
|
+
/* line 124, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
562
|
+
.large {
|
563
|
+
font-size: 14px;
|
564
|
+
}
|
565
|
+
|
566
|
+
/* line 128, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
567
|
+
.small {
|
568
|
+
font-size: 11px;
|
569
|
+
}
|
570
|
+
|
571
|
+
/* line 147, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
572
|
+
ul, li {
|
573
|
+
margin: 0px;
|
574
|
+
padding: 0px;
|
575
|
+
}
|
576
|
+
|
577
|
+
/* line 152, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
578
|
+
.asterisk, label abbr {
|
579
|
+
color: #c4414d;
|
580
|
+
font-size: 14px;
|
581
|
+
border: none;
|
582
|
+
}
|
583
|
+
|
584
|
+
/* --------- layout --------------- */
|
585
|
+
/* line 46, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
586
|
+
#container {
|
587
|
+
margin: 0 auto;
|
588
|
+
width: 1008px;
|
589
|
+
padding: 15px 0px 0px 0px;
|
590
|
+
background: url("/images/container-bg.png") repeat-x scroll center top transparent;
|
591
|
+
}
|
592
|
+
|
593
|
+
/* line 53, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
594
|
+
html {
|
595
|
+
background: #e3e3e3 url("/images/shell-bg-ad2.png") top center repeat-y;
|
596
|
+
min-width: 1008px;
|
597
|
+
}
|
598
|
+
|
599
|
+
/* line 58, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
600
|
+
body {
|
601
|
+
margin: 0;
|
602
|
+
}
|
603
|
+
|
604
|
+
/* line 62, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
605
|
+
#header {
|
606
|
+
background-color: #fff;
|
607
|
+
margin: 0 auto;
|
608
|
+
position: relative;
|
609
|
+
width: 1008px;
|
610
|
+
z-index: 2;
|
611
|
+
height: 90px;
|
612
|
+
}
|
613
|
+
/* line 69, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
614
|
+
#header ul#accessibility {
|
615
|
+
float: left;
|
616
|
+
height: 40px;
|
617
|
+
}
|
618
|
+
/* line 74, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
619
|
+
#header li.accessibilityLink {
|
620
|
+
display: none;
|
621
|
+
}
|
622
|
+
|
623
|
+
/* line 79, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
624
|
+
#left-col {
|
625
|
+
float: left;
|
626
|
+
width: 182px;
|
627
|
+
min-height: 500px;
|
628
|
+
margin: 0px 17px 0 0;
|
629
|
+
}
|
630
|
+
|
631
|
+
/* line 86, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
632
|
+
#right-col {
|
633
|
+
width: 794px;
|
634
|
+
float: left;
|
635
|
+
margin-top: 10px;
|
636
|
+
}
|
637
|
+
|
638
|
+
/* line 93, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
639
|
+
.editing-mode-block {
|
640
|
+
float: left;
|
641
|
+
margin-top: 47px;
|
642
|
+
margin-left: 15px;
|
643
|
+
color: #8c8c8c;
|
644
|
+
font-size: 14px;
|
645
|
+
width: 330px;
|
646
|
+
}
|
647
|
+
/* line 100, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
648
|
+
.editing-mode-block img {
|
649
|
+
float: left;
|
650
|
+
margin: 3px 5px 0px 0px;
|
651
|
+
}
|
652
|
+
/* line 104, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
653
|
+
.editing-mode-block span {
|
654
|
+
font-size: 11px;
|
655
|
+
display: block;
|
656
|
+
}
|
657
|
+
|
658
|
+
/* line 110, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
659
|
+
li#rea-logo {
|
660
|
+
list-style-image: none;
|
661
|
+
list-style-type: none;
|
662
|
+
margin-left: 0;
|
663
|
+
margin-top: 35px;
|
664
|
+
margin-left: 10px;
|
665
|
+
}
|
666
|
+
/* line 114, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
667
|
+
li#rea-logo a {
|
668
|
+
background: transparent url("/images/rea_brand.png") no-repeat scroll 0 0;
|
669
|
+
display: block;
|
670
|
+
height: 53px;
|
671
|
+
margin: 10px 0 20px;
|
672
|
+
width: 235px;
|
673
|
+
}
|
674
|
+
/* line 120, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
675
|
+
li#rea-logo a strong {
|
676
|
+
display: none;
|
677
|
+
}
|
678
|
+
|
679
|
+
/* line 126, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
680
|
+
.feature {
|
681
|
+
background: #fbfbfb;
|
682
|
+
padding-top: 15px;
|
683
|
+
padding-bottom: 15px;
|
684
|
+
}
|
685
|
+
|
686
|
+
/* line 132, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
687
|
+
.footer-container {
|
688
|
+
color: #6f6f6f;
|
689
|
+
zoom: 1;
|
690
|
+
margin: 0 auto;
|
691
|
+
padding-top: 0px;
|
692
|
+
width: 1008px;
|
693
|
+
text-align: left;
|
694
|
+
}
|
695
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
696
|
+
.footer-container:before, .footer-container:after {
|
697
|
+
display: table;
|
698
|
+
content: "";
|
699
|
+
}
|
700
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
701
|
+
.footer-container:after {
|
702
|
+
clear: both;
|
703
|
+
}
|
704
|
+
/* line 139, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
705
|
+
.footer-container .footer {
|
706
|
+
border-top: 1px solid #e3e3e3;
|
707
|
+
margin-top: 64px;
|
708
|
+
margin-left: 180px;
|
709
|
+
height: 40px;
|
710
|
+
padding: 0 0 0 24px;
|
711
|
+
text-align: left;
|
712
|
+
font-size: 11px;
|
713
|
+
}
|
714
|
+
/* line 147, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
715
|
+
.footer-container .footer .footer-left {
|
716
|
+
float: left;
|
717
|
+
padding: 10px 0px;
|
718
|
+
}
|
719
|
+
/* line 151, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
720
|
+
.footer-container .footer .footer-right {
|
721
|
+
float: right;
|
722
|
+
padding: 10px 30px;
|
723
|
+
}
|
724
|
+
/* line 154, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
725
|
+
.footer-container .footer .footer-right a {
|
726
|
+
font-size: 11px;
|
727
|
+
}
|
728
|
+
/* line 157, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
729
|
+
.footer-container .footer .footer-right .divider {
|
730
|
+
padding: 0 7px;
|
731
|
+
}
|
732
|
+
|
733
|
+
/* --------- general and utility styles --------------- */
|
734
|
+
/* line 4, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
735
|
+
.heading-line {
|
736
|
+
border-bottom: 1px solid #efefef;
|
737
|
+
clear: both;
|
738
|
+
height: 1px;
|
739
|
+
margin: 9px 0px 18px 0px;
|
740
|
+
}
|
741
|
+
|
742
|
+
/* line 11, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
743
|
+
.no-border-right {
|
744
|
+
border-right: 1px solid transparent;
|
745
|
+
}
|
746
|
+
|
747
|
+
/* line 14, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
748
|
+
.align-left {
|
749
|
+
text-align: left;
|
750
|
+
}
|
751
|
+
|
752
|
+
/* line 17, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
753
|
+
.align-right {
|
754
|
+
text-align: right;
|
755
|
+
}
|
756
|
+
|
757
|
+
/* line 20, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
758
|
+
.align-top {
|
759
|
+
vertical-align: top;
|
760
|
+
}
|
761
|
+
|
762
|
+
/* line 23, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
763
|
+
.align-bottom {
|
764
|
+
vertical-align: bottom;
|
765
|
+
}
|
766
|
+
|
767
|
+
/* line 26, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
768
|
+
.align-middle {
|
769
|
+
display: table-cell;
|
770
|
+
vertical-align: middle;
|
771
|
+
height: 110px;
|
772
|
+
}
|
773
|
+
|
774
|
+
/* line 31, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
775
|
+
.normal-text {
|
776
|
+
color: #515151;
|
777
|
+
}
|
778
|
+
|
779
|
+
/* line 34, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
780
|
+
.push-text-top {
|
781
|
+
padding-top: 15px;
|
782
|
+
}
|
783
|
+
|
784
|
+
/* line 37, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
785
|
+
.equal {
|
786
|
+
background: url("/images/equal2.png") right center no-repeat;
|
787
|
+
}
|
788
|
+
|
789
|
+
/* line 40, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
790
|
+
.ticked {
|
791
|
+
min-height: 24px;
|
792
|
+
padding-right: 40px;
|
793
|
+
background: url("/images/ticked2.png") right center no-repeat;
|
794
|
+
}
|
795
|
+
|
796
|
+
/* line 45, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
797
|
+
.block {
|
798
|
+
display: block;
|
799
|
+
}
|
800
|
+
|
801
|
+
/* line 48, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
802
|
+
.top-border {
|
803
|
+
border-top: 1px solid #e0dddb;
|
804
|
+
}
|
805
|
+
|
806
|
+
/* line 51, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
807
|
+
.new {
|
808
|
+
margin-left: 10px;
|
809
|
+
position: relative;
|
810
|
+
margin-bottom: -2px;
|
811
|
+
z-index: 10;
|
812
|
+
}
|
813
|
+
|
814
|
+
/* line 57, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
815
|
+
.inline1 {
|
816
|
+
border-width: 1px;
|
817
|
+
width: 700px;
|
818
|
+
height: 400px;
|
819
|
+
overflow: auto;
|
820
|
+
}
|
821
|
+
|
822
|
+
/* line 63, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
823
|
+
.border-right {
|
824
|
+
border-right: 1px solid #757272;
|
825
|
+
}
|
826
|
+
|
827
|
+
/* line 66, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
828
|
+
.even {
|
829
|
+
background: white;
|
830
|
+
border-bottom: 1px solid #e0dddb;
|
831
|
+
width: auto;
|
832
|
+
list-style-image: none;
|
833
|
+
list-style-type: none;
|
834
|
+
margin-left: 0;
|
835
|
+
}
|
836
|
+
|
837
|
+
/* line 73, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
838
|
+
.odd {
|
839
|
+
background: #f9f9f9 none repeat scroll 0 0;
|
840
|
+
border-bottom: 1px solid #e0dddb;
|
841
|
+
width: auto;
|
842
|
+
list-style-image: none;
|
843
|
+
list-style-type: none;
|
844
|
+
margin-left: 0;
|
845
|
+
}
|
846
|
+
|
847
|
+
/* line 79, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
848
|
+
.odd-product {
|
849
|
+
background: #f7f7f0;
|
850
|
+
border-bottom: 1px solid #e0dddb;
|
851
|
+
width: auto;
|
852
|
+
list-style-image: none;
|
853
|
+
list-style-type: none;
|
854
|
+
margin-left: 0;
|
855
|
+
}
|
856
|
+
|
857
|
+
/* line 86, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
858
|
+
.im-error {
|
859
|
+
background-color: #ce8e8e;
|
860
|
+
}
|
861
|
+
|
862
|
+
/* line 90, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
863
|
+
.right {
|
864
|
+
float: right;
|
865
|
+
}
|
866
|
+
|
867
|
+
/* line 94, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
868
|
+
.left {
|
869
|
+
float: left;
|
870
|
+
}
|
871
|
+
|
872
|
+
/* line 98, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
873
|
+
.hide, .hidden {
|
874
|
+
display: none;
|
875
|
+
}
|
876
|
+
|
877
|
+
/* line 102, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
878
|
+
.show {
|
879
|
+
display: visible;
|
880
|
+
}
|
881
|
+
|
882
|
+
/* line 106, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
883
|
+
.clear-list {
|
884
|
+
clear: both;
|
885
|
+
}
|
886
|
+
|
887
|
+
/* line 110, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
888
|
+
.clear {
|
889
|
+
clear: both;
|
890
|
+
}
|
891
|
+
|
892
|
+
/* line 115, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
893
|
+
.center-aligned {
|
894
|
+
margin: 0px auto;
|
895
|
+
}
|
896
|
+
|
897
|
+
/* line 119, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
898
|
+
#types-container {
|
899
|
+
background: white;
|
900
|
+
display: none;
|
901
|
+
margin-left: 0;
|
902
|
+
padding-bottom: 9px;
|
903
|
+
position: absolute;
|
904
|
+
width: 150px;
|
905
|
+
z-index: 150;
|
906
|
+
border: 1px solid grey;
|
907
|
+
}
|
908
|
+
|
909
|
+
/* line 130, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
910
|
+
.upgrade {
|
911
|
+
display: block;
|
912
|
+
float: right;
|
913
|
+
font-size: 0.79em;
|
914
|
+
text-align: left;
|
915
|
+
width: 162px;
|
916
|
+
}
|
917
|
+
|
918
|
+
/* line 138, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
919
|
+
.divider-line {
|
920
|
+
border-bottom: 1px solid #e5e5e5;
|
921
|
+
margin: 8px 0px 8px 0px;
|
922
|
+
}
|
923
|
+
|
924
|
+
/* line 143, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
925
|
+
th, td, caption {
|
926
|
+
padding: 4px 10px 4px 5px;
|
927
|
+
}
|
928
|
+
|
929
|
+
/* line 148, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
930
|
+
table {
|
931
|
+
width: 100%;
|
932
|
+
}
|
933
|
+
|
934
|
+
/* line 152, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
935
|
+
img {
|
936
|
+
border: 0 transparent solid;
|
937
|
+
}
|
938
|
+
|
939
|
+
/* line 156, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
940
|
+
.focus {
|
941
|
+
background: #fff7c0;
|
942
|
+
}
|
943
|
+
|
944
|
+
/* line 161, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
945
|
+
.jqEasyCounterMsg {
|
946
|
+
text-align: right;
|
947
|
+
}
|
948
|
+
|
949
|
+
/* line 166, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
950
|
+
div.links a {
|
951
|
+
color: #2d7eb3;
|
952
|
+
}
|
953
|
+
/* line 168, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
954
|
+
div.links a:hover {
|
955
|
+
text-decoration: underline;
|
956
|
+
}
|
957
|
+
/* line 171, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
958
|
+
div.links a span {
|
959
|
+
text-decoration: none;
|
960
|
+
color: #2d7eb3;
|
961
|
+
}
|
962
|
+
|
963
|
+
/* line 178, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
964
|
+
.wait-loading {
|
965
|
+
top: 0px;
|
966
|
+
padding: 16px 45px 16px 83px;
|
967
|
+
border: 1px solid #FFDF65;
|
968
|
+
width: auto;
|
969
|
+
margin-left: 45%;
|
970
|
+
margin-top: -42px;
|
971
|
+
opacity: 0;
|
972
|
+
-moz-border-radius-bottomleft: 4px;
|
973
|
+
-webkit-border-bottom-left-radius: 4px;
|
974
|
+
-o-border-bottom-left-radius: 4px;
|
975
|
+
-ms-border-bottom-left-radius: 4px;
|
976
|
+
-khtml-border-bottom-left-radius: 4px;
|
977
|
+
border-bottom-left-radius: 4px;
|
978
|
+
-moz-border-radius-bottomright: 4px;
|
979
|
+
-webkit-border-bottom-right-radius: 4px;
|
980
|
+
-o-border-bottom-right-radius: 4px;
|
981
|
+
-ms-border-bottom-right-radius: 4px;
|
982
|
+
-khtml-border-bottom-right-radius: 4px;
|
983
|
+
border-bottom-right-radius: 4px;
|
984
|
+
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -2px 2px 2px rgba(0, 0, 0, 0.1);
|
985
|
+
-moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -2px 2px 2px rgba(0, 0, 0, 0.1);
|
986
|
+
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -2px 2px 2px rgba(0, 0, 0, 0.1);
|
987
|
+
position: fixed;
|
988
|
+
z-index: 950;
|
989
|
+
background: #fdf7ce url("/images/loading.gif") 39px 20px no-repeat;
|
990
|
+
color: #333333;
|
991
|
+
font-size: 18px;
|
992
|
+
text-shadow: white 0 1px 1px;
|
993
|
+
}
|
994
|
+
|
995
|
+
/* line 210, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
996
|
+
.red {
|
997
|
+
color: #c4414d !important;
|
998
|
+
}
|
999
|
+
|
1000
|
+
/* line 214, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_general.scss */
|
1001
|
+
.green {
|
1002
|
+
color: #c7e5d2;
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
/* line 24, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1006
|
+
#flash-messages {
|
1007
|
+
clear: both;
|
1008
|
+
margin-bottom: 9px;
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
/* line 29, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1012
|
+
.box {
|
1013
|
+
padding: 0 1.3em;
|
1014
|
+
margin-bottom: 1.3em;
|
1015
|
+
border: 1px solid #e0dddb;
|
1016
|
+
}
|
1017
|
+
/* line 33, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1018
|
+
.box h3 {
|
1019
|
+
text-shadow: white 0 0px 1px;
|
1020
|
+
margin: 1.0em 0;
|
1021
|
+
}
|
1022
|
+
/* line 37, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1023
|
+
.box p {
|
1024
|
+
margin: 0 20px 30px 0;
|
1025
|
+
}
|
1026
|
+
/* line 40, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1027
|
+
.box.video {
|
1028
|
+
padding-top: 40px;
|
1029
|
+
}
|
1030
|
+
/* line 43, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1031
|
+
.box.successful {
|
1032
|
+
border: 1px solid #63b982;
|
1033
|
+
color: #216d3c;
|
1034
|
+
background: url("/images/sq-white.gif") top repeat-x;
|
1035
|
+
background-color: #c7e5d2;
|
1036
|
+
}
|
1037
|
+
/* line 48, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1038
|
+
.box.successful h3 {
|
1039
|
+
color: #216d3c;
|
1040
|
+
}
|
1041
|
+
/* line 49, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1042
|
+
.box.successful img {
|
1043
|
+
float: left;
|
1044
|
+
margin: 10px;
|
1045
|
+
}
|
1046
|
+
/* line 51, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1047
|
+
.box.warning {
|
1048
|
+
border: 1px solid #b9b463;
|
1049
|
+
color: #333333;
|
1050
|
+
background: #fff7c0 url("/images/sq-white.gif") top repeat-x;
|
1051
|
+
}
|
1052
|
+
/* line 55, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1053
|
+
.box.warning h3 {
|
1054
|
+
color: #6f6e3f;
|
1055
|
+
background: url("/images/icons/icon-holder-w.gif") no-repeat;
|
1056
|
+
padding-left: 70px;
|
1057
|
+
}
|
1058
|
+
/* line 60, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1059
|
+
.box.warning img {
|
1060
|
+
float: left;
|
1061
|
+
margin: 10px;
|
1062
|
+
}
|
1063
|
+
/* line 62, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1064
|
+
.box.error {
|
1065
|
+
border: 1px solid #ce8e8e;
|
1066
|
+
color: #c4414d;
|
1067
|
+
background: #f6e3e7 url("/images/sq-white.gif") top repeat-x;
|
1068
|
+
}
|
1069
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1070
|
+
.box.error h3 {
|
1071
|
+
color: #c4414d;
|
1072
|
+
}
|
1073
|
+
/* line 11, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1074
|
+
.box.error img {
|
1075
|
+
float: left;
|
1076
|
+
margin: 10px;
|
1077
|
+
}
|
1078
|
+
/* line 12, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1079
|
+
.box.error ul {
|
1080
|
+
margin: 0px 0px 30px 95px;
|
1081
|
+
}
|
1082
|
+
/* line 65, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1083
|
+
.box.info {
|
1084
|
+
border: 1px solid #afc5d2;
|
1085
|
+
color: #4f7489;
|
1086
|
+
background: #e7f1f7 url("/images/sq-white.gif") top repeat-x;
|
1087
|
+
padding-bottom: 30px;
|
1088
|
+
}
|
1089
|
+
/* line 70, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1090
|
+
.box.info h3 {
|
1091
|
+
color: #4f7489;
|
1092
|
+
}
|
1093
|
+
/* line 71, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1094
|
+
.box.info img {
|
1095
|
+
float: left;
|
1096
|
+
margin: 10px;
|
1097
|
+
}
|
1098
|
+
/* line 72, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1099
|
+
.box.info p {
|
1100
|
+
margin-left: 0px;
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
/* line 77, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_boxes.scss */
|
1104
|
+
#stocklist .box {
|
1105
|
+
margin: 10px 0px 0px 0px;
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
/* --------- buttons --------------- */
|
1109
|
+
/* line 57, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1110
|
+
.button {
|
1111
|
+
display: inline-block;
|
1112
|
+
font-size: 13px;
|
1113
|
+
color: white;
|
1114
|
+
height: 37px;
|
1115
|
+
line-height: 15px;
|
1116
|
+
padding: 0 0 0 19px;
|
1117
|
+
background: url("/images/btn.png") no-repeat left -82px;
|
1118
|
+
text-decoration: none;
|
1119
|
+
position: relative;
|
1120
|
+
}
|
1121
|
+
/* line 12, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1122
|
+
.button span {
|
1123
|
+
display: block;
|
1124
|
+
padding: 11px 20px 0 0;
|
1125
|
+
height: 26px;
|
1126
|
+
background: url("/images/btn.png") no-repeat right top;
|
1127
|
+
cursor: pointer;
|
1128
|
+
float: left;
|
1129
|
+
color: white;
|
1130
|
+
text-shadow: #838383 0 -1 1px;
|
1131
|
+
}
|
1132
|
+
/* line 22, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1133
|
+
.button:hover {
|
1134
|
+
text-decoration: none;
|
1135
|
+
background-position: left -123px;
|
1136
|
+
}
|
1137
|
+
/* line 25, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1138
|
+
.button:hover span {
|
1139
|
+
background-position: right -41px;
|
1140
|
+
}
|
1141
|
+
/* line 31, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1142
|
+
.button:active {
|
1143
|
+
text-decoration: none;
|
1144
|
+
background-position: left -122px;
|
1145
|
+
}
|
1146
|
+
/* line 34, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1147
|
+
.button:active span {
|
1148
|
+
padding: 12px 20px 0 0;
|
1149
|
+
height: 25px;
|
1150
|
+
background-position: right -40px;
|
1151
|
+
}
|
1152
|
+
/* line 40, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1153
|
+
.button.disabled {
|
1154
|
+
background-position: left -289px;
|
1155
|
+
}
|
1156
|
+
/* line 42, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1157
|
+
.button.disabled:hover {
|
1158
|
+
cursor: default;
|
1159
|
+
}
|
1160
|
+
/* line 45, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1161
|
+
.button.disabled span {
|
1162
|
+
background-position: right -207px;
|
1163
|
+
color: #f9fbfc;
|
1164
|
+
text-shadow: transparent, 0, 0px, 0px;
|
1165
|
+
}
|
1166
|
+
/* line 50, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1167
|
+
.button.disabled span:hover {
|
1168
|
+
cursor: default;
|
1169
|
+
}
|
1170
|
+
/* line 59, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1171
|
+
.button.back, .button.cancel {
|
1172
|
+
background-image: url("/images/back-btn.png");
|
1173
|
+
}
|
1174
|
+
/* line 61, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1175
|
+
.button.back span, .button.cancel span {
|
1176
|
+
color: #2F2F2F;
|
1177
|
+
background-image: url("/images/back-btn.png");
|
1178
|
+
}
|
1179
|
+
/* line 66, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1180
|
+
.button.delete {
|
1181
|
+
background-image: url("/images/btn-red.png");
|
1182
|
+
}
|
1183
|
+
/* line 68, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1184
|
+
.button.delete span {
|
1185
|
+
background-image: url("/images/btn-red.png");
|
1186
|
+
}
|
1187
|
+
/* line 73, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1188
|
+
.button:focus {
|
1189
|
+
text-decoration: none;
|
1190
|
+
background-position: left -123px;
|
1191
|
+
}
|
1192
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1193
|
+
.button:focus span {
|
1194
|
+
background-position: right -41px;
|
1195
|
+
}
|
1196
|
+
/* line 81, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1197
|
+
.button.hidden {
|
1198
|
+
display: none;
|
1199
|
+
}
|
1200
|
+
/* line 84, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1201
|
+
.button.product {
|
1202
|
+
background-image: url("/images/btn.png");
|
1203
|
+
padding-left: 19px;
|
1204
|
+
}
|
1205
|
+
/* line 87, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1206
|
+
.button.product span {
|
1207
|
+
background-image: url("/images/btn.png");
|
1208
|
+
padding: 11px 20px 0px 0px;
|
1209
|
+
font-size: 1em;
|
1210
|
+
width: 100px;
|
1211
|
+
text-align: center;
|
1212
|
+
}
|
1213
|
+
/* line 95, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1214
|
+
.button.inline {
|
1215
|
+
background-image: url("/images/blue-btn.png");
|
1216
|
+
padding-left: 25px;
|
1217
|
+
margin-bottom: 0px;
|
1218
|
+
}
|
1219
|
+
/* line 99, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1220
|
+
.button.inline span {
|
1221
|
+
background-image: url("/images/blue-btn.png");
|
1222
|
+
margin-bottom: 0;
|
1223
|
+
padding: 10px 24px 0 0;
|
1224
|
+
font-size: 1em;
|
1225
|
+
height: 27px;
|
1226
|
+
float: none;
|
1227
|
+
}
|
1228
|
+
/* line 108, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1229
|
+
.button.small-blue {
|
1230
|
+
background-image: url("/images/blue-btn.png");
|
1231
|
+
position: absolute;
|
1232
|
+
margin-right: 10px;
|
1233
|
+
padding-left: 25px;
|
1234
|
+
margin-bottom: -10px;
|
1235
|
+
}
|
1236
|
+
/* line 114, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1237
|
+
.button.small-blue span {
|
1238
|
+
white-space: nowrap;
|
1239
|
+
background-image: url("/images/blue-btn.png");
|
1240
|
+
padding: 10px 25px 0px 0px;
|
1241
|
+
font-size: 1em;
|
1242
|
+
}
|
1243
|
+
/* line 121, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1244
|
+
.button.stocklist-search {
|
1245
|
+
background: transparent url("/images/stocklist-search-btn.png") no-repeat scroll right -82px;
|
1246
|
+
color: white;
|
1247
|
+
display: inline-block;
|
1248
|
+
height: 42px;
|
1249
|
+
margin-top: 2px;
|
1250
|
+
padding: 0 18px 0 0px;
|
1251
|
+
text-decoration: none;
|
1252
|
+
float: left;
|
1253
|
+
position: relative;
|
1254
|
+
}
|
1255
|
+
/* line 131, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1256
|
+
.button.stocklist-search:hover, .button.stocklist-search:focus {
|
1257
|
+
text-decoration: none;
|
1258
|
+
background-position: right -123px;
|
1259
|
+
}
|
1260
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1261
|
+
.button.stocklist-search:hover span, .button.stocklist-search:focus span {
|
1262
|
+
background-position: right -41px;
|
1263
|
+
}
|
1264
|
+
/* line 138, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_buttons.scss */
|
1265
|
+
.button.stocklist-search span {
|
1266
|
+
background: transparent url("/images/stocklist-search-btn.png") no-repeat scroll right top;
|
1267
|
+
color: #8C8A86;
|
1268
|
+
cursor: pointer;
|
1269
|
+
display: block;
|
1270
|
+
float: left;
|
1271
|
+
/*font-size: 0.94em;*/
|
1272
|
+
font-weight: bold;
|
1273
|
+
height: 25px;
|
1274
|
+
line-height: normal;
|
1275
|
+
padding: 12px 5px 0 6px;
|
1276
|
+
text-shadow: 0 1px 1px white;
|
1277
|
+
font-size: 12px;
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
/* ---------- international sites amd main sites nav ------------ */
|
1281
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1282
|
+
#siteLinks {
|
1283
|
+
font-size: 11px;
|
1284
|
+
line-height: 20px;
|
1285
|
+
margin: 0 -494px 0 0;
|
1286
|
+
overflow: visible;
|
1287
|
+
position: absolute;
|
1288
|
+
right: 50%;
|
1289
|
+
top: 20px;
|
1290
|
+
width: 640px;
|
1291
|
+
z-index: 400;
|
1292
|
+
font-weight: bold;
|
1293
|
+
}
|
1294
|
+
/* line 14, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1295
|
+
#siteLinks ul {
|
1296
|
+
float: right;
|
1297
|
+
overflow: visible;
|
1298
|
+
list-style-image: none;
|
1299
|
+
list-style-type: none;
|
1300
|
+
margin-left: 0;
|
1301
|
+
margin-top: 27px;
|
1302
|
+
margin-left: 0px;
|
1303
|
+
}
|
1304
|
+
/* line 20, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1305
|
+
#siteLinks ul li {
|
1306
|
+
border-right: 1px solid #e0dddb;
|
1307
|
+
margin-right: 5px;
|
1308
|
+
padding-right: 10px;
|
1309
|
+
float: left;
|
1310
|
+
}
|
1311
|
+
/* line 25, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1312
|
+
#siteLinks ul li a {
|
1313
|
+
padding: 3px 0 3px 10px;
|
1314
|
+
font-size: 11px;
|
1315
|
+
color: #333333;
|
1316
|
+
text-decoration: none;
|
1317
|
+
}
|
1318
|
+
/* line 30, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1319
|
+
#siteLinks ul li a:hover {
|
1320
|
+
color: #c20014;
|
1321
|
+
text-decoration: underline;
|
1322
|
+
}
|
1323
|
+
/* line 35, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1324
|
+
#siteLinks ul li.realestate a {
|
1325
|
+
background-position: 0 -213px;
|
1326
|
+
}
|
1327
|
+
/* line 38, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1328
|
+
#siteLinks ul li.realcommercial a {
|
1329
|
+
background-position: 0 -41px;
|
1330
|
+
}
|
1331
|
+
/* line 41, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1332
|
+
#siteLinks ul li.international {
|
1333
|
+
background-color: #ffffff;
|
1334
|
+
background-position: 10px 3px;
|
1335
|
+
cursor: pointer;
|
1336
|
+
line-height: 19px;
|
1337
|
+
position: relative;
|
1338
|
+
width: 130px;
|
1339
|
+
z-index: 400;
|
1340
|
+
padding-right: 0px;
|
1341
|
+
border-right: 1px solid white;
|
1342
|
+
}
|
1343
|
+
/* line 51, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1344
|
+
#siteLinks ul li.international span {
|
1345
|
+
display: block;
|
1346
|
+
background: url("/images/external-nav-icons.png") no-repeat scroll right 2px;
|
1347
|
+
width: 123px;
|
1348
|
+
text-align: left;
|
1349
|
+
margin: 0 5px 0 6px;
|
1350
|
+
}
|
1351
|
+
/* line 60, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1352
|
+
#siteLinks ul li.internationalActive span {
|
1353
|
+
border-right: 1px solid #e0dddb;
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
/* line 70, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1357
|
+
ie7
|
1358
|
+
ul#internationalSites {
|
1359
|
+
margin-left: -6px;
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
/* line 73, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1363
|
+
ul#internationalSites {
|
1364
|
+
display: none;
|
1365
|
+
margin-top: 0px;
|
1366
|
+
width: 134px;
|
1367
|
+
border-left: 1px solid #e0dddb;
|
1368
|
+
border-right: 1px solid #e0dddb;
|
1369
|
+
border-bottom: 1px solid #e0dddb;
|
1370
|
+
}
|
1371
|
+
/* line 81, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1372
|
+
ul#internationalSites li {
|
1373
|
+
background: white url("/images/dashed_dotted.gif") repeat-x scroll 0 0;
|
1374
|
+
float: none;
|
1375
|
+
margin: 0;
|
1376
|
+
padding: 5px 10px;
|
1377
|
+
border-right: none;
|
1378
|
+
}
|
1379
|
+
/* line 87, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1380
|
+
ul#internationalSites li.france {
|
1381
|
+
background: none;
|
1382
|
+
}
|
1383
|
+
/* line 90, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1384
|
+
ul#internationalSites li a {
|
1385
|
+
background: url("/images/external-nav-icons.png") no-repeat scroll 0 -64px;
|
1386
|
+
display: block;
|
1387
|
+
font-weight: bold;
|
1388
|
+
line-height: 14px;
|
1389
|
+
margin: 0;
|
1390
|
+
padding: 0;
|
1391
|
+
text-align: right;
|
1392
|
+
}
|
1393
|
+
/* line 98, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1394
|
+
ul#internationalSites li a:hover {
|
1395
|
+
color: white;
|
1396
|
+
background-color: #999999;
|
1397
|
+
text-decoration: none;
|
1398
|
+
}
|
1399
|
+
/* line 104, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1400
|
+
ul#internationalSites li:hover {
|
1401
|
+
color: white;
|
1402
|
+
background-color: #999999;
|
1403
|
+
text-decoration: none;
|
1404
|
+
}
|
1405
|
+
/* line 109, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1406
|
+
ul#internationalSites li.france a {
|
1407
|
+
background-position: 0 -64px;
|
1408
|
+
}
|
1409
|
+
/* line 112, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1410
|
+
ul#internationalSites li.germany a {
|
1411
|
+
background-position: 0 -78px;
|
1412
|
+
}
|
1413
|
+
/* line 115, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1414
|
+
ul#internationalSites li.hongkong a {
|
1415
|
+
background-position: 0 -93px;
|
1416
|
+
}
|
1417
|
+
/* line 118, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1418
|
+
ul#internationalSites li.italy a {
|
1419
|
+
background-position: 0 -109px;
|
1420
|
+
}
|
1421
|
+
/* line 121, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1422
|
+
ul#internationalSites li.luxembourg a {
|
1423
|
+
background-position: 0 -126px;
|
1424
|
+
}
|
1425
|
+
/* line 124, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1426
|
+
ul#internationalSites li.nz a {
|
1427
|
+
background-position: 0 -143px;
|
1428
|
+
}
|
1429
|
+
/* line 127, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1430
|
+
ul#internationalSites li.singapore a {
|
1431
|
+
background-position: 0 -160px;
|
1432
|
+
}
|
1433
|
+
/* line 130, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1434
|
+
ul#internationalSites li.last {
|
1435
|
+
background: #ffffff;
|
1436
|
+
position: relative;
|
1437
|
+
height: 14px;
|
1438
|
+
}
|
1439
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1440
|
+
ul#internationalSites li.last:hover {
|
1441
|
+
color: white;
|
1442
|
+
background-color: #999999;
|
1443
|
+
text-decoration: none;
|
1444
|
+
}
|
1445
|
+
/* line 140, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1446
|
+
ul#internationalSites li:hover > a {
|
1447
|
+
color: white;
|
1448
|
+
background-color: #999999;
|
1449
|
+
text-decoration: none;
|
1450
|
+
}
|
1451
|
+
/* line 145, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_international.scss */
|
1452
|
+
ul#internationalSites li .dotHR {
|
1453
|
+
background: transparent url("/images/dashed_dotted.gif") repeat-x scroll 0 0;
|
1454
|
+
display: block;
|
1455
|
+
height: 1px;
|
1456
|
+
left: 0;
|
1457
|
+
position: absolute;
|
1458
|
+
top: 0;
|
1459
|
+
width: 135px;
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
/*-------------- form styles ---------------- */
|
1463
|
+
/* line 2, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1464
|
+
form {
|
1465
|
+
background-color: transparent;
|
1466
|
+
}
|
1467
|
+
/* line 4, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1468
|
+
form#video-request {
|
1469
|
+
margin-top: 15px;
|
1470
|
+
}
|
1471
|
+
/* line 7, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1472
|
+
form fieldset {
|
1473
|
+
position: relative;
|
1474
|
+
border: none;
|
1475
|
+
color: #333333;
|
1476
|
+
padding: 0 0 0 0;
|
1477
|
+
margin-bottom: 18px;
|
1478
|
+
}
|
1479
|
+
/* line 13, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1480
|
+
form fieldset img {
|
1481
|
+
border: none;
|
1482
|
+
}
|
1483
|
+
/* line 16, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1484
|
+
form fieldset legend {
|
1485
|
+
font-family: 'SansaConSoftProSemiBold', 'Helvetica Neue', helvetica, arial, clean, sans-serif;
|
1486
|
+
font-size: 18px;
|
1487
|
+
line-height: 36px;
|
1488
|
+
display: block;
|
1489
|
+
color: #454545;
|
1490
|
+
left: 0px !important;
|
1491
|
+
padding: 0 0 3px 0;
|
1492
|
+
border-bottom: 1px solid #e5e5e5;
|
1493
|
+
width: 527px;
|
1494
|
+
}
|
1495
|
+
/* line 27, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1496
|
+
form fieldset div.description {
|
1497
|
+
float: right;
|
1498
|
+
width: 220px;
|
1499
|
+
}
|
1500
|
+
/* line 30, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1501
|
+
form fieldset div.description p {
|
1502
|
+
padding: 0 10px 0 0;
|
1503
|
+
color: #999999;
|
1504
|
+
}
|
1505
|
+
/* line 35, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1506
|
+
form fieldset p {
|
1507
|
+
padding-right: 50px;
|
1508
|
+
font-weight: normal;
|
1509
|
+
}
|
1510
|
+
/* line 38, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1511
|
+
form fieldset p a {
|
1512
|
+
outline-style: none;
|
1513
|
+
text-decoration: none;
|
1514
|
+
color: #313134;
|
1515
|
+
}
|
1516
|
+
/* line 42, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1517
|
+
form fieldset p a:hover {
|
1518
|
+
text-decoration: none;
|
1519
|
+
color: #313134;
|
1520
|
+
}
|
1521
|
+
/* line 50, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1522
|
+
form fieldset label {
|
1523
|
+
width: 100%;
|
1524
|
+
padding-top: 9px;
|
1525
|
+
font-size: 13px;
|
1526
|
+
font-weight: bold;
|
1527
|
+
line-height: 27px;
|
1528
|
+
}
|
1529
|
+
/* line 56, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1530
|
+
form fieldset label.supplemental {
|
1531
|
+
font-weight: normal;
|
1532
|
+
width: auto;
|
1533
|
+
font-size: 14px;
|
1534
|
+
}
|
1535
|
+
/* line 61, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1536
|
+
form fieldset label span {
|
1537
|
+
color: #c4414d;
|
1538
|
+
}
|
1539
|
+
/* line 65, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1540
|
+
form fieldset .error-msg {
|
1541
|
+
font-weight: normal;
|
1542
|
+
display: block;
|
1543
|
+
font-size: 12px;
|
1544
|
+
margin-bottom: 0;
|
1545
|
+
padding-bottom: 0;
|
1546
|
+
line-height: 36px;
|
1547
|
+
}
|
1548
|
+
/* line 73, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1549
|
+
form fieldset input, form fieldset input[type="email"], form fieldset input[type="text"], form fieldset input[type="password"], form fieldset textarea {
|
1550
|
+
color: #333;
|
1551
|
+
top: 0px;
|
1552
|
+
margin: 0;
|
1553
|
+
padding: 5px;
|
1554
|
+
font: normal 14px "Helvetica Neue", "Arial", "Clean", sans-serif;
|
1555
|
+
color: #575757;
|
1556
|
+
}
|
1557
|
+
/* line 80, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1558
|
+
form fieldset input:focus, form fieldset input[type="email"]:focus, form fieldset input[type="text"]:focus, form fieldset input[type="password"]:focus, form fieldset textarea:focus {
|
1559
|
+
background-color: white;
|
1560
|
+
outline: 0;
|
1561
|
+
}
|
1562
|
+
/* line 85, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1563
|
+
form fieldset select {
|
1564
|
+
font-size: 13px;
|
1565
|
+
}
|
1566
|
+
/* line 88, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1567
|
+
form fieldset input[type="checkbox"], form fieldset input[type="radio"] {
|
1568
|
+
top: 0px;
|
1569
|
+
margin: 0;
|
1570
|
+
xpadding: 5px;
|
1571
|
+
xbackground: #fafafa;
|
1572
|
+
xcolor: #575757;
|
1573
|
+
}
|
1574
|
+
/* line 95, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1575
|
+
form fieldset textarea {
|
1576
|
+
width: 340px;
|
1577
|
+
height: auto;
|
1578
|
+
padding: 5px;
|
1579
|
+
border: 1px solid #bbb;
|
1580
|
+
border-top: 1px solid #999;
|
1581
|
+
}
|
1582
|
+
/* line 101, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1583
|
+
form fieldset textarea.video {
|
1584
|
+
height: 120px;
|
1585
|
+
}
|
1586
|
+
/* line 105, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1587
|
+
form fieldset input[type='text'] {
|
1588
|
+
width: auto;
|
1589
|
+
}
|
1590
|
+
/* line 107, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1591
|
+
form fieldset input[type='text'].fakeselect {
|
1592
|
+
width: 350px;
|
1593
|
+
background: white url("/images/ajax-loader.gif") no-repeat scroll right center;
|
1594
|
+
}
|
1595
|
+
/* line 111, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1596
|
+
form fieldset input[type='text'].file {
|
1597
|
+
-moz-border-radius: 5px;
|
1598
|
+
-webkit-border-radius: 5px;
|
1599
|
+
-o-border-radius: 5px;
|
1600
|
+
-ms-border-radius: 5px;
|
1601
|
+
-khtml-border-radius: 5px;
|
1602
|
+
border-radius: 5px;
|
1603
|
+
width: 65%;
|
1604
|
+
margin-bottom: 4px;
|
1605
|
+
padding: 2px;
|
1606
|
+
border: 0px;
|
1607
|
+
background: #fafafa;
|
1608
|
+
font: normal 14px "Helvetica Neue", "Arial", "Clean", sans-serif;
|
1609
|
+
color: #575757;
|
1610
|
+
}
|
1611
|
+
/* line 122, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1612
|
+
form fieldset input[type='text'].ghosted {
|
1613
|
+
color: #999999;
|
1614
|
+
}
|
1615
|
+
/* line 126, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1616
|
+
form fieldset span.add {
|
1617
|
+
display: inline-block;
|
1618
|
+
margin-left: 40px;
|
1619
|
+
}
|
1620
|
+
/* line 130, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1621
|
+
form fieldset span.date-selector {
|
1622
|
+
display: inline-block;
|
1623
|
+
position: relative;
|
1624
|
+
margin-right: 15px;
|
1625
|
+
zoom: 1;
|
1626
|
+
}
|
1627
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1628
|
+
form fieldset span.date-selector label.supplemental {
|
1629
|
+
display: block;
|
1630
|
+
position: relative;
|
1631
|
+
padding: 0 0 0 0;
|
1632
|
+
width: 100%;
|
1633
|
+
text-align: center;
|
1634
|
+
}
|
1635
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
1636
|
+
form fieldset span.date-selector:before, form fieldset span.date-selector:after {
|
1637
|
+
display: table;
|
1638
|
+
content: "";
|
1639
|
+
}
|
1640
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
1641
|
+
form fieldset span.date-selector:after {
|
1642
|
+
clear: both;
|
1643
|
+
}
|
1644
|
+
/* line 144, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1645
|
+
form fieldset .msg {
|
1646
|
+
width: 100%;
|
1647
|
+
padding: 0;
|
1648
|
+
}
|
1649
|
+
/* line 148, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1650
|
+
form fieldset .feature-group {
|
1651
|
+
zoom: 1;
|
1652
|
+
border-bottom: 1px #e0dddb solid;
|
1653
|
+
margin: 0 2em 1em 0;
|
1654
|
+
padding-bottom: 1em;
|
1655
|
+
}
|
1656
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
1657
|
+
form fieldset .feature-group:before, form fieldset .feature-group:after {
|
1658
|
+
display: table;
|
1659
|
+
content: "";
|
1660
|
+
}
|
1661
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
1662
|
+
form fieldset .feature-group:after {
|
1663
|
+
clear: both;
|
1664
|
+
}
|
1665
|
+
/* line 153, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1666
|
+
form fieldset .feature-group div.feature-item {
|
1667
|
+
width: 230px;
|
1668
|
+
margin-right: 10px;
|
1669
|
+
float: left;
|
1670
|
+
}
|
1671
|
+
/* line 159, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1672
|
+
form fieldset ul, form fieldset ol {
|
1673
|
+
float: left;
|
1674
|
+
padding: 0 0 0 0;
|
1675
|
+
margin-top: 0;
|
1676
|
+
width: 527px;
|
1677
|
+
background-color: #f9f9f9;
|
1678
|
+
}
|
1679
|
+
/* line 166, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1680
|
+
form fieldset ul li, form fieldset ol li {
|
1681
|
+
list-style-image: none;
|
1682
|
+
list-style-type: none;
|
1683
|
+
margin-left: 0;
|
1684
|
+
zoom: 1;
|
1685
|
+
}
|
1686
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
1687
|
+
form fieldset ul li:before, form fieldset ul li:after, form fieldset ol li:before, form fieldset ol li:after {
|
1688
|
+
display: table;
|
1689
|
+
content: "";
|
1690
|
+
}
|
1691
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
1692
|
+
form fieldset ul li:after, form fieldset ol li:after {
|
1693
|
+
clear: both;
|
1694
|
+
}
|
1695
|
+
/* line 169, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1696
|
+
form fieldset ul li.error, form fieldset ol li.error {
|
1697
|
+
color: #C4414D;
|
1698
|
+
border: 0px;
|
1699
|
+
margin: 0px;
|
1700
|
+
background-color: #FAE5E9;
|
1701
|
+
}
|
1702
|
+
/* line 174, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1703
|
+
form fieldset ul li.error label, form fieldset ol li.error label {
|
1704
|
+
color: #C4414D !important;
|
1705
|
+
font-weight: bold;
|
1706
|
+
}
|
1707
|
+
/* line 179, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1708
|
+
form fieldset ul li.focus, form fieldset ol li.focus {
|
1709
|
+
background-color: #fff7c0;
|
1710
|
+
}
|
1711
|
+
/* line 183, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1712
|
+
form fieldset ul.col, form fieldset ol.col {
|
1713
|
+
width: 43%;
|
1714
|
+
float: left;
|
1715
|
+
margin: 0px 5px 0.5em 0px;
|
1716
|
+
border: 0px;
|
1717
|
+
background-color: transparent;
|
1718
|
+
}
|
1719
|
+
/* line 189, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1720
|
+
form fieldset ul.col li, form fieldset ol.col li {
|
1721
|
+
width: 195px;
|
1722
|
+
padding-left: 0px;
|
1723
|
+
background: none;
|
1724
|
+
padding-top: 0px;
|
1725
|
+
}
|
1726
|
+
/* line 196, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1727
|
+
form fieldset ul.wide-format, form fieldset ol.wide-format {
|
1728
|
+
margin: 0 0 18px;
|
1729
|
+
padding: 0;
|
1730
|
+
width: 792px;
|
1731
|
+
}
|
1732
|
+
/* line 200, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1733
|
+
form fieldset ul.wide-format li, form fieldset ol.wide-format li {
|
1734
|
+
padding-left: 20px;
|
1735
|
+
}
|
1736
|
+
/* line 203, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1737
|
+
form fieldset ul.wide-format .msg, form fieldset ol.wide-format .msg {
|
1738
|
+
width: 100%;
|
1739
|
+
}
|
1740
|
+
/* line 209, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1741
|
+
form fieldset.buttons ul {
|
1742
|
+
background: none;
|
1743
|
+
}
|
1744
|
+
/* line 211, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1745
|
+
form fieldset.buttons ul a.delete, form fieldset.buttons ul a.cancel {
|
1746
|
+
float: right;
|
1747
|
+
}
|
1748
|
+
/* line 214, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1749
|
+
form fieldset.buttons ul a.continue, form fieldset.buttons ul a.back {
|
1750
|
+
float: left;
|
1751
|
+
}
|
1752
|
+
/* line 220, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1753
|
+
form fieldset ul li {
|
1754
|
+
margin: 0px;
|
1755
|
+
padding: 7px 0 11px 20px;
|
1756
|
+
}
|
1757
|
+
/* line 223, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1758
|
+
form fieldset ul li:first-child {
|
1759
|
+
padding-top: 9px;
|
1760
|
+
border-top: 1px solid #fff;
|
1761
|
+
}
|
1762
|
+
/* line 230, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1763
|
+
form fieldset ol li {
|
1764
|
+
margin: 0;
|
1765
|
+
padding: 7px 0 11px 20px;
|
1766
|
+
overflow: visible;
|
1767
|
+
list-style-type: none;
|
1768
|
+
xdisplay: list-item;
|
1769
|
+
xvertical-align: top;
|
1770
|
+
}
|
1771
|
+
/* line 256, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1772
|
+
form fieldset ol li.focus {
|
1773
|
+
background-color: transparent;
|
1774
|
+
}
|
1775
|
+
/* line 260, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1776
|
+
form fieldset ol li > * {
|
1777
|
+
color: #333333;
|
1778
|
+
}
|
1779
|
+
/* line 265, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1780
|
+
form fieldset.wide {
|
1781
|
+
border: none;
|
1782
|
+
background: none;
|
1783
|
+
margin: 0 0 18px;
|
1784
|
+
padding: 0 0 0 0;
|
1785
|
+
}
|
1786
|
+
/* line 271, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1787
|
+
form fieldset.wide legend {
|
1788
|
+
display: block;
|
1789
|
+
width: 792px;
|
1790
|
+
}
|
1791
|
+
/* line 274, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1792
|
+
form fieldset.wide legend span {
|
1793
|
+
display: block;
|
1794
|
+
float: none;
|
1795
|
+
background-image: none;
|
1796
|
+
border: 0;
|
1797
|
+
}
|
1798
|
+
/* line 281, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1799
|
+
form fieldset.wide div.description {
|
1800
|
+
display: block;
|
1801
|
+
width: auto;
|
1802
|
+
float: none;
|
1803
|
+
margin: 0 0 36px 10px;
|
1804
|
+
}
|
1805
|
+
|
1806
|
+
/* line 290, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1807
|
+
.drop-area-bk {
|
1808
|
+
background: #faf9f8 url("/images/droparea-bk.png") top left no-repeat;
|
1809
|
+
background-position: 0px 25px;
|
1810
|
+
width: 740px;
|
1811
|
+
}
|
1812
|
+
|
1813
|
+
/* line 295, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1814
|
+
.tooltip {
|
1815
|
+
display: inline;
|
1816
|
+
float: left;
|
1817
|
+
margin-right: 10px;
|
1818
|
+
width: 30px;
|
1819
|
+
text-decoration: none;
|
1820
|
+
display: inline;
|
1821
|
+
margin: 0 0 0 10px;
|
1822
|
+
position: absolute;
|
1823
|
+
cursor: help;
|
1824
|
+
}
|
1825
|
+
/* line 147, /Users/siebert_lubbe/.rvm/gems/ree-1.8.7-2011.03@cp-auth/gems/compass-0.11.6/frameworks/blueprint/stylesheets/blueprint/_grid.scss */
|
1826
|
+
* html .tooltip {
|
1827
|
+
overflow-x: hidden;
|
1828
|
+
}
|
1829
|
+
/* line 302, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1830
|
+
.tooltip a {
|
1831
|
+
background: url("/images/tooltip.png") no-repeat;
|
1832
|
+
display: inline-block;
|
1833
|
+
width: 25px;
|
1834
|
+
height: 25px;
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
/* line 309, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1838
|
+
.hint {
|
1839
|
+
font-size: 11px !important;
|
1840
|
+
line-height: 18px !important;
|
1841
|
+
display: none;
|
1842
|
+
position: absolute;
|
1843
|
+
width: 200px;
|
1844
|
+
z-index: 200;
|
1845
|
+
-moz-box-shadow: 0px 2px 5px #dddddd;
|
1846
|
+
-webkit-box-shadow: 0px 2px 5px #dddddd;
|
1847
|
+
-o-box-shadow: 0px 2px 5px #dddddd;
|
1848
|
+
box-shadow: 0px 2px 5px #dddddd;
|
1849
|
+
-moz-border-radius: 5px;
|
1850
|
+
-webkit-border-radius: 5px;
|
1851
|
+
-o-border-radius: 5px;
|
1852
|
+
-ms-border-radius: 5px;
|
1853
|
+
-khtml-border-radius: 5px;
|
1854
|
+
border-radius: 5px;
|
1855
|
+
border: 1px solid #e2e3c8;
|
1856
|
+
background: #fffee0 url("/images/pointer.gif") no-repeat scroll -100px -100px;
|
1857
|
+
margin: -35px 0px 0px 20px;
|
1858
|
+
padding: 10px 12px;
|
1859
|
+
}
|
1860
|
+
/* line 322, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1861
|
+
.hint .hint-pointer, .hint .pointer {
|
1862
|
+
background: transparent url("/images/pointer.gif") no-repeat scroll left top;
|
1863
|
+
position: absolute;
|
1864
|
+
height: 19px;
|
1865
|
+
left: -10px;
|
1866
|
+
top: 5px;
|
1867
|
+
width: 10px;
|
1868
|
+
}
|
1869
|
+
|
1870
|
+
/* line 331, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1871
|
+
.error .hint, .successful .hint {
|
1872
|
+
margin: 0px 0px 0px 30px;
|
1873
|
+
color: #333333;
|
1874
|
+
}
|
1875
|
+
|
1876
|
+
/* line 335, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1877
|
+
.none {
|
1878
|
+
display: none;
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
/* line 338, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1882
|
+
.display {
|
1883
|
+
display: block;
|
1884
|
+
}
|
1885
|
+
|
1886
|
+
/* line 341, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1887
|
+
.selectoptions {
|
1888
|
+
width: 360px;
|
1889
|
+
border: 1px solid #666666;
|
1890
|
+
border-top: 1px solid #edeef0;
|
1891
|
+
font: normal 14px "Helvetica Neue", "Arial", "Clean", sans-serif;
|
1892
|
+
-moz-border-radius: 5px;
|
1893
|
+
-webkit-border-radius: 5px;
|
1894
|
+
-o-border-radius: 5px;
|
1895
|
+
-ms-border-radius: 5px;
|
1896
|
+
-khtml-border-radius: 5px;
|
1897
|
+
border-radius: 5px;
|
1898
|
+
-moz-border-radius-topleft: 0;
|
1899
|
+
-webkit-border-top-left-radius: 0;
|
1900
|
+
-o-border-top-left-radius: 0;
|
1901
|
+
-ms-border-top-left-radius: 0;
|
1902
|
+
-khtml-border-top-left-radius: 0;
|
1903
|
+
border-top-left-radius: 0;
|
1904
|
+
-moz-border-radius-topright: 0;
|
1905
|
+
-webkit-border-top-right-radius: 0;
|
1906
|
+
-o-border-top-right-radius: 0;
|
1907
|
+
-ms-border-top-right-radius: 0;
|
1908
|
+
-khtml-border-top-right-radius: 0;
|
1909
|
+
border-top-right-radius: 0;
|
1910
|
+
margin: -3px 0px 0px 0px;
|
1911
|
+
padding: 0px;
|
1912
|
+
background: white;
|
1913
|
+
position: absolute;
|
1914
|
+
color: #575757;
|
1915
|
+
z-index: 10;
|
1916
|
+
}
|
1917
|
+
/* line 355, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1918
|
+
.selectoptions ul {
|
1919
|
+
padding: 0px;
|
1920
|
+
margin: 0px;
|
1921
|
+
width: 358px;
|
1922
|
+
background: white;
|
1923
|
+
}
|
1924
|
+
/* line 360, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1925
|
+
.selectoptions ul li {
|
1926
|
+
width: 100%;
|
1927
|
+
display: block;
|
1928
|
+
padding: 0px 0px 0px 0px;
|
1929
|
+
background: white;
|
1930
|
+
list-style-image: none;
|
1931
|
+
list-style-type: none;
|
1932
|
+
margin-left: 0;
|
1933
|
+
}
|
1934
|
+
/* line 366, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1935
|
+
.selectoptions ul li:first-child {
|
1936
|
+
margin-top: 5px;
|
1937
|
+
}
|
1938
|
+
/* line 369, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1939
|
+
.selectoptions ul li:last-child {
|
1940
|
+
margin-bottom: 5px;
|
1941
|
+
}
|
1942
|
+
/* line 372, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1943
|
+
.selectoptions ul li a {
|
1944
|
+
display: block;
|
1945
|
+
padding: 6px 0 6px 10px;
|
1946
|
+
margin-left: 0px;
|
1947
|
+
color: #333333;
|
1948
|
+
text-decoration: none;
|
1949
|
+
}
|
1950
|
+
/* line 378, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1951
|
+
.selectoptions ul li a:hover {
|
1952
|
+
background: #edeef0;
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
/* line 385, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1956
|
+
.hr-short {
|
1957
|
+
height: 2px;
|
1958
|
+
background: url("/images/hr-bg2.png") repeat-x bottom center;
|
1959
|
+
margin: 0px 0px 0px 0px;
|
1960
|
+
clear: both;
|
1961
|
+
}
|
1962
|
+
/* line 390, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1963
|
+
.hr-short hr {
|
1964
|
+
display: none;
|
1965
|
+
}
|
1966
|
+
|
1967
|
+
/* line 394, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1968
|
+
.hr-full {
|
1969
|
+
display: none;
|
1970
|
+
}
|
1971
|
+
|
1972
|
+
/* line 398, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1973
|
+
.form-division {
|
1974
|
+
background: transparent url("/images/fliedset-bg-top-wide.png") no-repeat scroll left top;
|
1975
|
+
width: 793px;
|
1976
|
+
height: 20px;
|
1977
|
+
}
|
1978
|
+
|
1979
|
+
/* line 404, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1980
|
+
input.ui-autocomplete-input {
|
1981
|
+
border: 1px solid #bbb;
|
1982
|
+
padding: 7px !important;
|
1983
|
+
}
|
1984
|
+
|
1985
|
+
/* line 412, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
1986
|
+
#suburb-autocomplete ul.ui-autocomplete {
|
1987
|
+
margin-top: 0px;
|
1988
|
+
border: 1px solid #bbb;
|
1989
|
+
border-top: none;
|
1990
|
+
font-size: 12px;
|
1991
|
+
font-family: "Helvetica Neue", "Arial", "Clean", sans-serif;
|
1992
|
+
-moz-border-radius: 5px;
|
1993
|
+
-webkit-border-radius: 5px;
|
1994
|
+
-o-border-radius: 5px;
|
1995
|
+
-ms-border-radius: 5px;
|
1996
|
+
-khtml-border-radius: 5px;
|
1997
|
+
border-radius: 5px;
|
1998
|
+
-moz-border-radius-topleft: 0;
|
1999
|
+
-webkit-border-top-left-radius: 0;
|
2000
|
+
-o-border-top-left-radius: 0;
|
2001
|
+
-ms-border-top-left-radius: 0;
|
2002
|
+
-khtml-border-top-left-radius: 0;
|
2003
|
+
border-top-left-radius: 0;
|
2004
|
+
-moz-border-radius-topright: 0;
|
2005
|
+
-webkit-border-top-right-radius: 0;
|
2006
|
+
-o-border-top-right-radius: 0;
|
2007
|
+
-ms-border-top-right-radius: 0;
|
2008
|
+
-khtml-border-top-right-radius: 0;
|
2009
|
+
border-top-right-radius: 0;
|
2010
|
+
margin: 0 0px 0px 0px;
|
2011
|
+
padding: 0px;
|
2012
|
+
background: white;
|
2013
|
+
color: #121212;
|
2014
|
+
}
|
2015
|
+
/* line 444, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2016
|
+
#suburb-autocomplete a.ui-state-hover {
|
2017
|
+
border: none;
|
2018
|
+
color: inherit;
|
2019
|
+
background: #dfecf8;
|
2020
|
+
}
|
2021
|
+
/* line 451, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2022
|
+
#suburb-autocomplete a {
|
2023
|
+
padding-top: 6px;
|
2024
|
+
padding-bottom: 6px;
|
2025
|
+
padding-left: 10px;
|
2026
|
+
margin-left: 0px;
|
2027
|
+
display: block;
|
2028
|
+
color: #515151;
|
2029
|
+
text-decoration: none;
|
2030
|
+
margin: 0px;
|
2031
|
+
}
|
2032
|
+
/* line 463, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2033
|
+
#suburb-autocomplete li:first-child {
|
2034
|
+
margin-top: 5px;
|
2035
|
+
}
|
2036
|
+
/* line 468, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2037
|
+
#suburb-autocomplete li:last-child {
|
2038
|
+
margin-bottom: 5px;
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
/* line 474, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2042
|
+
.ui-autocomplete-loading {
|
2043
|
+
background: #fafafa url("/images/ajax-loader.gif") right no-repeat;
|
2044
|
+
}
|
2045
|
+
|
2046
|
+
/* line 479, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2047
|
+
.qq-upload-spinner {
|
2048
|
+
background: #fafafa url("/images/ajax-loader.gif") center no-repeat;
|
2049
|
+
}
|
2050
|
+
|
2051
|
+
/* line 484, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2052
|
+
.qq-upload-cancel {
|
2053
|
+
float: right;
|
2054
|
+
}
|
2055
|
+
|
2056
|
+
/* line 489, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2057
|
+
.qq-upload-button-focus {
|
2058
|
+
display: block;
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
/* line 494, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2062
|
+
.broken-image-icon {
|
2063
|
+
position: absolute;
|
2064
|
+
left: 42px;
|
2065
|
+
top: 37px;
|
2066
|
+
}
|
2067
|
+
|
2068
|
+
/* line 501, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2069
|
+
.ui-autocomplete-display {
|
2070
|
+
xborder-radius: 5px 5px 0 0 !important;
|
2071
|
+
xborder: 1px solid #666666 !important;
|
2072
|
+
border-bottom: 1px dashed #ddd !important;
|
2073
|
+
}
|
2074
|
+
|
2075
|
+
/* line 508, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2076
|
+
#terms-and-conditions-toggle-container .long-field {
|
2077
|
+
float: left;
|
2078
|
+
width: 29px;
|
2079
|
+
}
|
2080
|
+
/* line 513, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2081
|
+
#terms-and-conditions-toggle-container .long-field-description {
|
2082
|
+
float: left;
|
2083
|
+
width: 456px;
|
2084
|
+
}
|
2085
|
+
/* line 517, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2086
|
+
#terms-and-conditions-toggle-container p {
|
2087
|
+
margin-left: 29px;
|
2088
|
+
}
|
2089
|
+
|
2090
|
+
/* line 523, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2091
|
+
.social-share-ofi {
|
2092
|
+
zoom: 1;
|
2093
|
+
}
|
2094
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
2095
|
+
.social-share-ofi:before, .social-share-ofi:after {
|
2096
|
+
display: table;
|
2097
|
+
content: "";
|
2098
|
+
}
|
2099
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
2100
|
+
.social-share-ofi:after {
|
2101
|
+
clear: both;
|
2102
|
+
}
|
2103
|
+
|
2104
|
+
/* line 527, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2105
|
+
#property-principal-address-hide-street-view-toggle-container {
|
2106
|
+
padding-top: 0;
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
/* line 531, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2110
|
+
#property-principal-address-hide-address-toggle-container {
|
2111
|
+
padding-bottom: 0;
|
2112
|
+
}
|
2113
|
+
|
2114
|
+
/* line 536, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_forms.scss */
|
2115
|
+
#delete-draft-listing-popup h2 {
|
2116
|
+
margin-bottom: 16px;
|
2117
|
+
}
|
2118
|
+
|
2119
|
+
/* line 1, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2120
|
+
fieldset.wide.image {
|
2121
|
+
zoom: 1;
|
2122
|
+
width: 792px;
|
2123
|
+
background: #f9f9f9;
|
2124
|
+
}
|
2125
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
2126
|
+
fieldset.wide.image:before, fieldset.wide.image:after {
|
2127
|
+
display: table;
|
2128
|
+
content: "";
|
2129
|
+
}
|
2130
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
2131
|
+
fieldset.wide.image:after {
|
2132
|
+
clear: both;
|
2133
|
+
}
|
2134
|
+
/* line 5, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2135
|
+
fieldset.wide.image legend {
|
2136
|
+
background-color: #fff;
|
2137
|
+
width: 100%;
|
2138
|
+
}
|
2139
|
+
/* line 9, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2140
|
+
fieldset.wide.image .description {
|
2141
|
+
margin: 0 0 0 10px;
|
2142
|
+
padding-top: 10px;
|
2143
|
+
}
|
2144
|
+
/* line 13, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2145
|
+
fieldset.wide.image label {
|
2146
|
+
font-weight: bold;
|
2147
|
+
font-size: 1em;
|
2148
|
+
padding: 0px 0px 0px 10px;
|
2149
|
+
text-align: left;
|
2150
|
+
}
|
2151
|
+
/* line 19, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2152
|
+
fieldset.wide.image img {
|
2153
|
+
border: none;
|
2154
|
+
margin: 3px 0px 0px 3px;
|
2155
|
+
}
|
2156
|
+
/* line 24, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2157
|
+
fieldset.wide.image .listing-image {
|
2158
|
+
margin: 4px 4px;
|
2159
|
+
width: 94px;
|
2160
|
+
height: 70px;
|
2161
|
+
background-size: 94px 70px;
|
2162
|
+
}
|
2163
|
+
/* line 30, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2164
|
+
fieldset.wide.image ul {
|
2165
|
+
overflow: auto;
|
2166
|
+
width: 735px;
|
2167
|
+
border: 0;
|
2168
|
+
margin: 0;
|
2169
|
+
padding: 21px 0 18px 21px;
|
2170
|
+
background: transparent url("/images/droparea-bk2.png") no-repeat scroll 6px 3px;
|
2171
|
+
}
|
2172
|
+
/* line 38, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2173
|
+
fieldset.wide.image ul li.loading .qq-upload-cancel {
|
2174
|
+
display: block;
|
2175
|
+
}
|
2176
|
+
/* line 42, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2177
|
+
fieldset.wide.image ul li.loading:hover .delete-image {
|
2178
|
+
display: none;
|
2179
|
+
}
|
2180
|
+
/* line 47, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2181
|
+
fieldset.wide.image ul li {
|
2182
|
+
list-style-image: none;
|
2183
|
+
list-style-type: none;
|
2184
|
+
margin-left: 0;
|
2185
|
+
padding: 0px;
|
2186
|
+
height: 98px;
|
2187
|
+
width: 102px;
|
2188
|
+
margin: 0px 14px 20px 0px;
|
2189
|
+
background: white;
|
2190
|
+
float: left;
|
2191
|
+
border: 1px solid #c9c9c8;
|
2192
|
+
}
|
2193
|
+
/* line 56, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2194
|
+
fieldset.wide.image ul li .number {
|
2195
|
+
background: url("/images/drag_icon-small_03.png") no-repeat -1px -2px;
|
2196
|
+
width: 15px;
|
2197
|
+
display: block;
|
2198
|
+
text-indent: -40px;
|
2199
|
+
position: absolute;
|
2200
|
+
z-index: 10;
|
2201
|
+
}
|
2202
|
+
/* line 59, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2203
|
+
fieldset.wide.image ul li img {
|
2204
|
+
opacity: 1;
|
2205
|
+
}
|
2206
|
+
/* line 62, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2207
|
+
fieldset.wide.image ul li a {
|
2208
|
+
visibility: visible;
|
2209
|
+
color: #5484B2;
|
2210
|
+
text-decoration: underline;
|
2211
|
+
}
|
2212
|
+
/* line 66, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2213
|
+
fieldset.wide.image ul li a:hover {
|
2214
|
+
text-decoration: underline !important;
|
2215
|
+
}
|
2216
|
+
/* line 71, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2217
|
+
fieldset.wide.image ul li:hover {
|
2218
|
+
top: -2px;
|
2219
|
+
cursor: move;
|
2220
|
+
background: white;
|
2221
|
+
border: 1px solid #c5c6c6;
|
2222
|
+
-moz-box-shadow: 0px 4px 6px #888;
|
2223
|
+
-webkit-box-shadow: 0px 4px 6px #888;
|
2224
|
+
box-shadow: 0px 4px 6px #888;
|
2225
|
+
}
|
2226
|
+
/* line 79, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2227
|
+
fieldset.wide.image ul li:hover .delete-image {
|
2228
|
+
display: inline;
|
2229
|
+
text-decoration: none;
|
2230
|
+
color: #C4414D;
|
2231
|
+
font-size: 11px;
|
2232
|
+
}
|
2233
|
+
/* line 85, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2234
|
+
fieldset.wide.image ul li:hover .image-index {
|
2235
|
+
background: url("/images/drag_icon-small_03.png") no-repeat -1px -2px;
|
2236
|
+
width: 15px;
|
2237
|
+
display: block;
|
2238
|
+
text-indent: -9999px;
|
2239
|
+
position: absolute;
|
2240
|
+
z-index: 10;
|
2241
|
+
}
|
2242
|
+
/* line 94, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2243
|
+
fieldset.wide.image ul li.add-image {
|
2244
|
+
text-align: center;
|
2245
|
+
display: block;
|
2246
|
+
border: 2px dashed #dddbdb;
|
2247
|
+
height: 88px;
|
2248
|
+
background: transparent;
|
2249
|
+
}
|
2250
|
+
/* line 101, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2251
|
+
fieldset.wide.image ul li.add-image.focus {
|
2252
|
+
border-color: #5484B2;
|
2253
|
+
}
|
2254
|
+
/* line 104, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2255
|
+
fieldset.wide.image ul li.add-image .qq-uploader, fieldset.wide.image ul li.add-image .qq-upload-button {
|
2256
|
+
position: relative;
|
2257
|
+
width: 100%;
|
2258
|
+
height: 88px;
|
2259
|
+
display: inline-block;
|
2260
|
+
}
|
2261
|
+
/* line 110, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2262
|
+
fieldset.wide.image ul li.add-image:hover {
|
2263
|
+
cursor: pointer;
|
2264
|
+
background: transparent;
|
2265
|
+
-moz-box-shadow: none;
|
2266
|
+
-webkit-box-shadow: none;
|
2267
|
+
box-shadow: none;
|
2268
|
+
}
|
2269
|
+
/* line 117, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2270
|
+
fieldset.wide.image ul li.add-image a {
|
2271
|
+
text-decoration: none !important;
|
2272
|
+
}
|
2273
|
+
/* line 119, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2274
|
+
fieldset.wide.image ul li.add-image a > span {
|
2275
|
+
display: block;
|
2276
|
+
position: relative;
|
2277
|
+
top: 20px;
|
2278
|
+
}
|
2279
|
+
/* line 123, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2280
|
+
fieldset.wide.image ul li.add-image a > span span {
|
2281
|
+
text-decoration: underline;
|
2282
|
+
}
|
2283
|
+
/* line 129, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2284
|
+
fieldset.wide.image ul li .im-text {
|
2285
|
+
font-size: 11px;
|
2286
|
+
color: #515151;
|
2287
|
+
margin-left: 5px;
|
2288
|
+
margin-right: 5px;
|
2289
|
+
display: block;
|
2290
|
+
}
|
2291
|
+
/* line 136, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2292
|
+
fieldset.wide.image ul li .im-overlay {
|
2293
|
+
float: left;
|
2294
|
+
z-index: 10;
|
2295
|
+
font-size: 11px;
|
2296
|
+
margin: 3px;
|
2297
|
+
display: block;
|
2298
|
+
position: relative;
|
2299
|
+
padding: 0px;
|
2300
|
+
width: 93px;
|
2301
|
+
height: 68px;
|
2302
|
+
background: url("/images/ajax-loader-3.gif") no-repeat scroll 0px -19px;
|
2303
|
+
}
|
2304
|
+
/* line 147, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2305
|
+
fieldset.wide.image ul li .im-overlay img {
|
2306
|
+
margin: 0px 0px 0px 0px;
|
2307
|
+
width: auto;
|
2308
|
+
}
|
2309
|
+
/* line 152, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2310
|
+
fieldset.wide.image ul li .im-text {
|
2311
|
+
width: 89px;
|
2312
|
+
}
|
2313
|
+
/* line 156, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2314
|
+
fieldset.wide.image ul.col {
|
2315
|
+
width: 40%;
|
2316
|
+
float: left;
|
2317
|
+
margin: 0px 5px 0.5em 0px;
|
2318
|
+
}
|
2319
|
+
|
2320
|
+
/* line 165, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2321
|
+
#trash .undo a {
|
2322
|
+
display: none;
|
2323
|
+
font-size: 10px;
|
2324
|
+
}
|
2325
|
+
|
2326
|
+
/* line 166, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2327
|
+
#trash li:hover .undo a {
|
2328
|
+
display: block;
|
2329
|
+
width: 50px;
|
2330
|
+
color: #216D3C;
|
2331
|
+
text-align: center;
|
2332
|
+
margin-top: -6px;
|
2333
|
+
}
|
2334
|
+
|
2335
|
+
/* line 167, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2336
|
+
#trash {
|
2337
|
+
display: none;
|
2338
|
+
margin-left: 18px;
|
2339
|
+
background: url("/images/bin-icon.png") no-repeat scroll 13px 0 #faf9f8;
|
2340
|
+
}
|
2341
|
+
|
2342
|
+
/* line 168, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2343
|
+
#trash p {
|
2344
|
+
margin: 0px 0px 0px 50px;
|
2345
|
+
line-height: 25px;
|
2346
|
+
}
|
2347
|
+
|
2348
|
+
/* line 169, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2349
|
+
#trash ul {
|
2350
|
+
background-image: none;
|
2351
|
+
padding-top: 10px;
|
2352
|
+
background-color: #E8E7E7;
|
2353
|
+
margin: 20px 30px 30px 0px;
|
2354
|
+
-moz-box-shadow: 2px 1px 2px rgba(7, 7, 7, 0.1) inset, 0px 1px 2px rgba(7, 7, 7, 0.1) inset;
|
2355
|
+
float: left;
|
2356
|
+
width: auto;
|
2357
|
+
}
|
2358
|
+
|
2359
|
+
/* line 170, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2360
|
+
#trash ul li.ui-state-default img {
|
2361
|
+
width: 50px;
|
2362
|
+
}
|
2363
|
+
|
2364
|
+
/* line 171, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2365
|
+
#trash ul li.ui-state-default {
|
2366
|
+
width: 56px;
|
2367
|
+
height: 55px;
|
2368
|
+
margin-bottom: 12px;
|
2369
|
+
}
|
2370
|
+
|
2371
|
+
/* line 172, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2372
|
+
#trash ul li .im-overlay {
|
2373
|
+
background: none;
|
2374
|
+
width: 50px;
|
2375
|
+
height: 60px;
|
2376
|
+
}
|
2377
|
+
|
2378
|
+
/* line 175, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2379
|
+
.sortable .undo a {
|
2380
|
+
display: none;
|
2381
|
+
}
|
2382
|
+
|
2383
|
+
/* line 176, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2384
|
+
.sortable .undo a:hover {
|
2385
|
+
text-decoration: underline;
|
2386
|
+
}
|
2387
|
+
|
2388
|
+
/* line 177, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2389
|
+
.sortable .ui-state-highlight {
|
2390
|
+
background: #FAF9F8;
|
2391
|
+
border: 1px solid transparent;
|
2392
|
+
}
|
2393
|
+
|
2394
|
+
/* line 179, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2395
|
+
.ui-sortable-helper {
|
2396
|
+
opacity: 0.6;
|
2397
|
+
top: 0px;
|
2398
|
+
}
|
2399
|
+
|
2400
|
+
/* line 180, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2401
|
+
.ui-sortable-placeholder {
|
2402
|
+
border: 1px solid blue;
|
2403
|
+
visibility: hidden;
|
2404
|
+
}
|
2405
|
+
|
2406
|
+
/*.ui-state-default { position: relative; border:1px solid #e6e6e6; -moz-box-shadow: 0px 1px 2px #888; -webkit-box-shadow: 0px 1px 2px #888; box-shadow: 0px 1px 2px #888; height: 90px; width:100px; margin: 0px 14px 30px 0px;}*/
|
2407
|
+
/*.ui-state-default:hover .im-text a.right { display:block; height:15px; visibility:visible; }*/
|
2408
|
+
/*.ui-state-default .im-text a {color: #C4414D;visibility: hidden;}*/
|
2409
|
+
/* line 184, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2410
|
+
.im-text a:hover {
|
2411
|
+
text-decoration: underline;
|
2412
|
+
}
|
2413
|
+
|
2414
|
+
/* line 186, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_image_upload.scss */
|
2415
|
+
.drag-icon-hint {
|
2416
|
+
margin-top: 5px;
|
2417
|
+
position: relative;
|
2418
|
+
}
|
2419
|
+
|
2420
|
+
/* --------- admin navigation --------------- */
|
2421
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2422
|
+
#admin-nav {
|
2423
|
+
width: 181px;
|
2424
|
+
display: block;
|
2425
|
+
}
|
2426
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2427
|
+
#admin-nav #identity {
|
2428
|
+
background: url("/images/agent-logo-frame-bottom.png") bottom no-repeat;
|
2429
|
+
margin: 22px 0 10px 15px;
|
2430
|
+
padding: 0 0px 6px;
|
2431
|
+
width: 150px;
|
2432
|
+
}
|
2433
|
+
/* line 12, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2434
|
+
#admin-nav #identity #logo {
|
2435
|
+
background: url("/images/agent-logo-frame-top.png") top no-repeat;
|
2436
|
+
padding-top: 9px;
|
2437
|
+
margin-bottom: 4px!important;
|
2438
|
+
width: 150px;
|
2439
|
+
text-align: center;
|
2440
|
+
}
|
2441
|
+
/* line 15, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2442
|
+
#admin-nav #identity #logo img {
|
2443
|
+
margin: 0px auto;
|
2444
|
+
max-width: 130px;
|
2445
|
+
display: block;
|
2446
|
+
margin-left: auto;
|
2447
|
+
margin-right: auto;
|
2448
|
+
}
|
2449
|
+
/* line 24, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2450
|
+
#admin-nav #identity #logo a {
|
2451
|
+
display: block;
|
2452
|
+
margin: 0px auto;
|
2453
|
+
max-width: 130px;
|
2454
|
+
text-align: center;
|
2455
|
+
text-decoration: underline;
|
2456
|
+
}
|
2457
|
+
/* line 33, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2458
|
+
#admin-nav ul {
|
2459
|
+
clear: both;
|
2460
|
+
margin-top: 5px;
|
2461
|
+
overflow: hidden;
|
2462
|
+
padding: 0 0 15px 12px;
|
2463
|
+
list-style-image: none;
|
2464
|
+
list-style-type: none;
|
2465
|
+
margin-left: 0;
|
2466
|
+
}
|
2467
|
+
/* line 39, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2468
|
+
#admin-nav ul li {
|
2469
|
+
display: block;
|
2470
|
+
}
|
2471
|
+
/* line 42, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2472
|
+
#admin-nav ul li span {
|
2473
|
+
display: block;
|
2474
|
+
border-bottom: 1px solid #eaeaea;
|
2475
|
+
padding: 7px 0 4px;
|
2476
|
+
}
|
2477
|
+
/* line 47, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2478
|
+
#admin-nav ul li a {
|
2479
|
+
background-image: url("/images/left-nav-sprite.png");
|
2480
|
+
background-color: transparent;
|
2481
|
+
background-repeat: no-repeat;
|
2482
|
+
background-position: 7px 6px;
|
2483
|
+
color: #4e4c46;
|
2484
|
+
display: block;
|
2485
|
+
font-size: 14px;
|
2486
|
+
padding: 0 0 0 45px;
|
2487
|
+
text-shadow: 0 1px 1px white;
|
2488
|
+
text-decoration: none;
|
2489
|
+
line-height: 22px;
|
2490
|
+
}
|
2491
|
+
/* line 59, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2492
|
+
#admin-nav ul li a:hover {
|
2493
|
+
color: #4f4e4d;
|
2494
|
+
opacity: 1;
|
2495
|
+
}
|
2496
|
+
/* line 64, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2497
|
+
#admin-nav ul li.dashboard a {
|
2498
|
+
background-position: 7px 6px;
|
2499
|
+
}
|
2500
|
+
/* line 67, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2501
|
+
#admin-nav ul li.stocklist a {
|
2502
|
+
background-position: 7px -61px;
|
2503
|
+
}
|
2504
|
+
/* line 70, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2505
|
+
#admin-nav ul li.reports a {
|
2506
|
+
background-position: 7px -130px;
|
2507
|
+
}
|
2508
|
+
/* line 73, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2509
|
+
#admin-nav ul li.marketing a {
|
2510
|
+
background-position: 7px -195px;
|
2511
|
+
}
|
2512
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2513
|
+
#admin-nav ul li.social a {
|
2514
|
+
background-position: 7px -262px;
|
2515
|
+
}
|
2516
|
+
/* line 79, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2517
|
+
#admin-nav ul li.website a {
|
2518
|
+
background-position: 7px -329px;
|
2519
|
+
}
|
2520
|
+
/* line 82, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2521
|
+
#admin-nav ul li.myaccount a {
|
2522
|
+
background-position: 7px -398px;
|
2523
|
+
}
|
2524
|
+
/* line 85, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2525
|
+
#admin-nav ul li.yourprofile a {
|
2526
|
+
background-position: 7px -398px;
|
2527
|
+
}
|
2528
|
+
/* line 88, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2529
|
+
#admin-nav ul li.youraccount a {
|
2530
|
+
background-position: 7px -469px;
|
2531
|
+
}
|
2532
|
+
/* line 93, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2533
|
+
#admin-nav ul li:hover.dashboard a, #admin-nav ul li.active.dashboard a {
|
2534
|
+
background-position: 7px -25px;
|
2535
|
+
}
|
2536
|
+
/* line 96, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2537
|
+
#admin-nav ul li:hover.stocklist a, #admin-nav ul li.active.stocklist a {
|
2538
|
+
background-position: 7px -94px;
|
2539
|
+
}
|
2540
|
+
/* line 99, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2541
|
+
#admin-nav ul li:hover.reports a, #admin-nav ul li.active.reports a {
|
2542
|
+
background-position: 7px -161px;
|
2543
|
+
}
|
2544
|
+
/* line 102, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2545
|
+
#admin-nav ul li:hover.marketing a, #admin-nav ul li.active.marketing a {
|
2546
|
+
background-position: 7px -226px;
|
2547
|
+
}
|
2548
|
+
/* line 105, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2549
|
+
#admin-nav ul li:hover.social a, #admin-nav ul li.active.social a {
|
2550
|
+
background-position: 7px -295px;
|
2551
|
+
}
|
2552
|
+
/* line 108, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2553
|
+
#admin-nav ul li:hover.website a, #admin-nav ul li.active.website a {
|
2554
|
+
background-position: 7px -361px;
|
2555
|
+
}
|
2556
|
+
/* line 111, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2557
|
+
#admin-nav ul li:hover.myaccount a, #admin-nav ul li.active.myaccount a {
|
2558
|
+
background-position: 7px -432px;
|
2559
|
+
}
|
2560
|
+
/* line 114, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2561
|
+
#admin-nav ul li:hover.yourprofile a, #admin-nav ul li.active.yourprofile a {
|
2562
|
+
background-position: 7px -432px;
|
2563
|
+
}
|
2564
|
+
/* line 117, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2565
|
+
#admin-nav ul li:hover.youraccount a, #admin-nav ul li.active.youraccount a {
|
2566
|
+
background-position: 7px -505px;
|
2567
|
+
}
|
2568
|
+
/* line 121, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2569
|
+
#admin-nav ul li.active {
|
2570
|
+
background: url("/images/active-nav-item-2.png") right top no-repeat;
|
2571
|
+
margin-top: -2px;
|
2572
|
+
}
|
2573
|
+
/* line 124, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation_admin.scss */
|
2574
|
+
#admin-nav ul li.active span {
|
2575
|
+
border-bottom: 1px solid transparent;
|
2576
|
+
}
|
2577
|
+
|
2578
|
+
/* line 114, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2579
|
+
#agent-banner {
|
2580
|
+
height: 41px;
|
2581
|
+
background: url("/images/client-area-bg-red.png") top;
|
2582
|
+
}
|
2583
|
+
/* line 64, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2584
|
+
#agent-banner .logo {
|
2585
|
+
float: left;
|
2586
|
+
padding: 1px 8px;
|
2587
|
+
}
|
2588
|
+
/* line 68, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2589
|
+
#agent-banner div#client-controls {
|
2590
|
+
border-bottom: 0px firebrick solid;
|
2591
|
+
height: 33px;
|
2592
|
+
}
|
2593
|
+
/* line 71, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2594
|
+
#agent-banner div#client-controls ul {
|
2595
|
+
float: right;
|
2596
|
+
margin: 0px;
|
2597
|
+
padding: 0px;
|
2598
|
+
margin-top: 7px;
|
2599
|
+
}
|
2600
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2601
|
+
#agent-banner div#client-controls ul span {
|
2602
|
+
color: #b7b7b7;
|
2603
|
+
margin-left: 5px;
|
2604
|
+
}
|
2605
|
+
/* line 80, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2606
|
+
#agent-banner div#client-controls ul li {
|
2607
|
+
float: left;
|
2608
|
+
list-style-image: none;
|
2609
|
+
list-style-type: none;
|
2610
|
+
margin-left: 0;
|
2611
|
+
color: #e8cfc8;
|
2612
|
+
}
|
2613
|
+
/* line 84, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2614
|
+
#agent-banner div#client-controls ul li.username {
|
2615
|
+
padding: 0px 15px 0px 15px;
|
2616
|
+
height: 20px;
|
2617
|
+
color: #C2A29F;
|
2618
|
+
}
|
2619
|
+
/* line 89, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2620
|
+
#agent-banner div#client-controls ul li.action-point {
|
2621
|
+
padding: 0px 0px 0px 0px;
|
2622
|
+
display: inline;
|
2623
|
+
border-right: 1px solid #A63E3E;
|
2624
|
+
}
|
2625
|
+
/* line 93, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2626
|
+
#agent-banner div#client-controls ul li.action-point a {
|
2627
|
+
display: block;
|
2628
|
+
font-weight: bold;
|
2629
|
+
height: 20px;
|
2630
|
+
margin-right: 4px;
|
2631
|
+
padding: 0px 15px 0px 15px;
|
2632
|
+
border-top: 0px;
|
2633
|
+
font-size: 12px;
|
2634
|
+
color: #E8CFC8;
|
2635
|
+
text-decoration: none;
|
2636
|
+
}
|
2637
|
+
/* line 103, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2638
|
+
#agent-banner div#client-controls ul li.action-point a:hover {
|
2639
|
+
border-top: 0px;
|
2640
|
+
text-decoration: underline;
|
2641
|
+
}
|
2642
|
+
|
2643
|
+
/* line 119, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2644
|
+
.my-agency a {
|
2645
|
+
background: url("/images/arrow-dropdown.gif") no-repeat scroll right center #4b4b50;
|
2646
|
+
border-color: #3B3939 #3B3939;
|
2647
|
+
border-right: 1px solid #3B3939;
|
2648
|
+
border-style: none solid solid;
|
2649
|
+
border-width: 0 1px 1px;
|
2650
|
+
color: #B7B7B7;
|
2651
|
+
display: block;
|
2652
|
+
font-size: 11px;
|
2653
|
+
height: 20px;
|
2654
|
+
margin-right: 4px;
|
2655
|
+
padding: 5px 25px 0 15px;
|
2656
|
+
text-decoration: none;
|
2657
|
+
}
|
2658
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2659
|
+
.my-agency a:hover, .my-agency a.active {
|
2660
|
+
background: url("/images/arrow-dropdown.gif") no-repeat scroll right center #343439;
|
2661
|
+
}
|
2662
|
+
/* line 138, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2663
|
+
.my-agency #my-agency-menu-container {
|
2664
|
+
position: absolute;
|
2665
|
+
display: none;
|
2666
|
+
width: 150px;
|
2667
|
+
padding-bottom: 5px;
|
2668
|
+
margin: 0;
|
2669
|
+
background-image: url("/images/navigation/dropdown_corners.png");
|
2670
|
+
background-position: bottom;
|
2671
|
+
background-repeat: no-repeat;
|
2672
|
+
z-index: 10000;
|
2673
|
+
}
|
2674
|
+
/* line 148, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2675
|
+
.my-agency #my-agency-menu-container #my-agency-container {
|
2676
|
+
background-color: #343439;
|
2677
|
+
}
|
2678
|
+
/* line 151, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2679
|
+
.my-agency #my-agency-menu-container ul {
|
2680
|
+
width: 150px;
|
2681
|
+
list-style: none;
|
2682
|
+
background-image: url("/images/navigation/dropdown_gradient.jpg");
|
2683
|
+
background-position: bottom;
|
2684
|
+
background-repeat: repeat-x;
|
2685
|
+
}
|
2686
|
+
/* line 157, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2687
|
+
.my-agency #my-agency-menu-container ul li {
|
2688
|
+
margin-top: 1px;
|
2689
|
+
margin-bottom: 1px;
|
2690
|
+
text-align: left;
|
2691
|
+
padding: 1px;
|
2692
|
+
list-style: none;
|
2693
|
+
border-top: transparent solid 1px;
|
2694
|
+
border-bottom: transparent solid 1px;
|
2695
|
+
width: 130px;
|
2696
|
+
font-size: 12px;
|
2697
|
+
}
|
2698
|
+
/* line 167, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2699
|
+
.my-agency #my-agency-menu-container ul li:hover {
|
2700
|
+
background-color: #3A3A3A;
|
2701
|
+
border-color: #313131 #434343 #434343;
|
2702
|
+
color: #E0E0E4;
|
2703
|
+
}
|
2704
|
+
/* line 174, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2705
|
+
.my-agency #my-agency-menu-container a {
|
2706
|
+
background: none repeat scroll 0 0 transparent;
|
2707
|
+
border: 1px solid transparent;
|
2708
|
+
color: #B7B7B7;
|
2709
|
+
display: block;
|
2710
|
+
font: 12px helvetica,arial,sans-serif;
|
2711
|
+
height: auto;
|
2712
|
+
margin-right: 0;
|
2713
|
+
margin-top: 1px;
|
2714
|
+
padding: 1px 0 0 5px;
|
2715
|
+
text-decoration: none;
|
2716
|
+
}
|
2717
|
+
|
2718
|
+
/* line 200, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2719
|
+
.container-v2 {
|
2720
|
+
margin: 0 auto;
|
2721
|
+
overflow: hidden;
|
2722
|
+
/*width: 950px */
|
2723
|
+
}
|
2724
|
+
|
2725
|
+
/* line 206, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2726
|
+
#client-area-v2 {
|
2727
|
+
background: url("/images/client-area-bg.png") top;
|
2728
|
+
height: 31px;
|
2729
|
+
width: 100%;
|
2730
|
+
}
|
2731
|
+
|
2732
|
+
/* line 211, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2733
|
+
#logo-v2 {
|
2734
|
+
height: 31px;
|
2735
|
+
margin-left: 8px;
|
2736
|
+
display: inline;
|
2737
|
+
float: left;
|
2738
|
+
margin-right: 10px;
|
2739
|
+
width: 150px;
|
2740
|
+
}
|
2741
|
+
/* line 147, /Users/siebert_lubbe/.rvm/gems/ree-1.8.7-2011.03@cp-auth/gems/compass-0.11.6/frameworks/blueprint/stylesheets/blueprint/_grid.scss */
|
2742
|
+
* html #logo-v2 {
|
2743
|
+
overflow-x: hidden;
|
2744
|
+
}
|
2745
|
+
|
2746
|
+
/* line 216, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2747
|
+
#client-nav-v2 {
|
2748
|
+
height: 29px;
|
2749
|
+
float: right;
|
2750
|
+
/*+column(11) */
|
2751
|
+
}
|
2752
|
+
/* line 220, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2753
|
+
#client-nav-v2 ul {
|
2754
|
+
margin: 0px;
|
2755
|
+
padding: 0px;
|
2756
|
+
/*height: 31px */
|
2757
|
+
color: #b7b7b7;
|
2758
|
+
}
|
2759
|
+
/* line 225, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2760
|
+
#client-nav-v2 ul span {
|
2761
|
+
color: #b7b7b7;
|
2762
|
+
margin-left: 5px;
|
2763
|
+
}
|
2764
|
+
/* line 229, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2765
|
+
#client-nav-v2 ul li {
|
2766
|
+
float: left;
|
2767
|
+
list-style-image: none;
|
2768
|
+
list-style-type: none;
|
2769
|
+
margin-left: 0;
|
2770
|
+
}
|
2771
|
+
|
2772
|
+
/* line 236, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2773
|
+
.username-v2 {
|
2774
|
+
margin-top: 7px;
|
2775
|
+
margin-right: 10px;
|
2776
|
+
font: normal 11px helvetica, arial, sans-serif;
|
2777
|
+
font-style: italic;
|
2778
|
+
}
|
2779
|
+
|
2780
|
+
/* line 243, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2781
|
+
.my-agency-v2 {
|
2782
|
+
height: 31px;
|
2783
|
+
padding: 0px 0px 0px 0px;
|
2784
|
+
display: inline;
|
2785
|
+
}
|
2786
|
+
/* line 247, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2787
|
+
.my-agency-v2 a {
|
2788
|
+
/*width: 126px */
|
2789
|
+
display: block;
|
2790
|
+
height: 20px;
|
2791
|
+
margin-right: 4px;
|
2792
|
+
padding: 5px 25px 0px 15px;
|
2793
|
+
font-size: 11px;
|
2794
|
+
border: 1px solid #3b3939;
|
2795
|
+
border-top: 0px;
|
2796
|
+
color: #b7b7b7;
|
2797
|
+
text-decoration: none;
|
2798
|
+
background: #4b4b50 url("/images/arrow-dropdown-v2.gif") center right no-repeat;
|
2799
|
+
}
|
2800
|
+
/* line 259, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2801
|
+
.my-agency-v2 a:hover {
|
2802
|
+
background: #343439 url("/images/arrow-dropdown-v2.gif") center right no-repeat;
|
2803
|
+
color: #e0e0e4;
|
2804
|
+
border: 1px solid #58585c;
|
2805
|
+
border-top: 0px;
|
2806
|
+
}
|
2807
|
+
/* line 265, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2808
|
+
.my-agency-v2 a.active {
|
2809
|
+
background: #343439 url("/images/arrow-dropdown-v2.gif") center right no-repeat;
|
2810
|
+
color: #e0e0e4;
|
2811
|
+
border: 1px solid transparent;
|
2812
|
+
border-top: 0px;
|
2813
|
+
border-bottom: 0px;
|
2814
|
+
}
|
2815
|
+
|
2816
|
+
/* line 275, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2817
|
+
#my-agency-menu-container-v2 {
|
2818
|
+
background: url("/images/navigation/dropdown_corners-v2.png") no-repeat;
|
2819
|
+
background-position: center bottom;
|
2820
|
+
padding-bottom: 9px;
|
2821
|
+
position: absolute;
|
2822
|
+
width: 150px;
|
2823
|
+
margin-left: 0px;
|
2824
|
+
display: none;
|
2825
|
+
}
|
2826
|
+
/* line 283, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2827
|
+
#my-agency-menu-container-v2 ul {
|
2828
|
+
width: 150px;
|
2829
|
+
background: #343439;
|
2830
|
+
background-position: center bottom;
|
2831
|
+
}
|
2832
|
+
/* line 287, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2833
|
+
#my-agency-menu-container-v2 ul li {
|
2834
|
+
list-style-image: none;
|
2835
|
+
list-style-type: none;
|
2836
|
+
margin-left: 0;
|
2837
|
+
width: 100%;
|
2838
|
+
}
|
2839
|
+
/* line 290, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2840
|
+
#my-agency-menu-container-v2 ul li a {
|
2841
|
+
font: normal 12px helvetica, arial, sans-serif;
|
2842
|
+
color: #b7b7b7;
|
2843
|
+
background-image: none;
|
2844
|
+
text-decoration: none;
|
2845
|
+
margin-top: 3px;
|
2846
|
+
border: 1px solid transparent;
|
2847
|
+
margin-right: 0px;
|
2848
|
+
height: auto;
|
2849
|
+
background: none;
|
2850
|
+
padding: 10px 0px 10px 15px;
|
2851
|
+
display: block;
|
2852
|
+
}
|
2853
|
+
/* line 302, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2854
|
+
#my-agency-menu-container-v2 ul li a:hover {
|
2855
|
+
background-color: #3a3a3a;
|
2856
|
+
border-color: #313131 #434343 #434343;
|
2857
|
+
color: #e0e0e4;
|
2858
|
+
}
|
2859
|
+
|
2860
|
+
/* line 312, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2861
|
+
#main-nav-v2 {
|
2862
|
+
background: url("/images/navigation/main-nav-bg.jpg") top repeat-x;
|
2863
|
+
margin-bottom: 30px;
|
2864
|
+
}
|
2865
|
+
/* line 315, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2866
|
+
#main-nav-v2 ul {
|
2867
|
+
height: 55px;
|
2868
|
+
margin: 0px;
|
2869
|
+
padding: 0px;
|
2870
|
+
}
|
2871
|
+
/* line 319, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2872
|
+
#main-nav-v2 ul li {
|
2873
|
+
list-style-image: none;
|
2874
|
+
list-style-type: none;
|
2875
|
+
margin-left: 0;
|
2876
|
+
float: left;
|
2877
|
+
background: url("/images/navigation/navigation_separators5.jpg") right repeat-y;
|
2878
|
+
border-right: 1px solid #dedede;
|
2879
|
+
}
|
2880
|
+
/* line 324, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2881
|
+
#main-nav-v2 ul li a {
|
2882
|
+
font-family: Helvetica, Arial, sans-serif;
|
2883
|
+
font-size: 0.97em;
|
2884
|
+
padding: 25px 32px 0px 32px;
|
2885
|
+
display: block;
|
2886
|
+
text-decoration: none;
|
2887
|
+
color: #535353;
|
2888
|
+
height: 30px;
|
2889
|
+
border-left: 1px solid #edeef0;
|
2890
|
+
border-right: 1px solid #edeef0;
|
2891
|
+
text-shadow: white 0 0px 1px;
|
2892
|
+
}
|
2893
|
+
/* line 335, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2894
|
+
#main-nav-v2 ul li a:hover {
|
2895
|
+
background: url("/images/navigation/navigation_active.jpg");
|
2896
|
+
border-right: 1px solid #dedede;
|
2897
|
+
border-left: 1px solid #edeef0;
|
2898
|
+
}
|
2899
|
+
/* line 343, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2900
|
+
#main-nav-v2 ul li.active a {
|
2901
|
+
border-left: 1px solid #dedede;
|
2902
|
+
background: white;
|
2903
|
+
}
|
2904
|
+
/* line 348, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_navigation.scss */
|
2905
|
+
#main-nav-v2 ul li.first-item {
|
2906
|
+
background: url("/images/navigation/navigation_separators.jpg") left repeat-y;
|
2907
|
+
}
|
2908
|
+
|
2909
|
+
/* --------- progress tracker --------------- */
|
2910
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2911
|
+
#progress-tracker {
|
2912
|
+
margin: 9px 0px 18px 0px;
|
2913
|
+
padding: 0px 0px 0px 0px;
|
2914
|
+
}
|
2915
|
+
/* line 13, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2916
|
+
#progress-tracker ul {
|
2917
|
+
list-style-image: none;
|
2918
|
+
list-style-position: inside;
|
2919
|
+
list-style-type: none;
|
2920
|
+
margin: 0 auto;
|
2921
|
+
overflow: hidden;
|
2922
|
+
background: transparent url("/images/tracker-a-bg-normal.png") repeat-x scroll 0px 0px;
|
2923
|
+
/*float: right;*/
|
2924
|
+
}
|
2925
|
+
/* line 21, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2926
|
+
#progress-tracker ul li {
|
2927
|
+
float: left;
|
2928
|
+
font-size: 14px;
|
2929
|
+
width: 198px;
|
2930
|
+
height: 36px;
|
2931
|
+
}
|
2932
|
+
/* line 27, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2933
|
+
#progress-tracker ul li a {
|
2934
|
+
display: block;
|
2935
|
+
padding: 9px 8px 8px 43px;
|
2936
|
+
position: relative;
|
2937
|
+
text-decoration: none;
|
2938
|
+
color: #666666;
|
2939
|
+
font-size: 14px;
|
2940
|
+
overflow: visible;
|
2941
|
+
z-index: 200;
|
2942
|
+
cursor: default;
|
2943
|
+
/*@include text-shadow($white, 0);*/
|
2944
|
+
}
|
2945
|
+
/* line 38, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2946
|
+
#progress-tracker ul li a span {
|
2947
|
+
background: transparent url("/images/tracker-grey-arrow.png") no-repeat scroll 0px 0px;
|
2948
|
+
position: absolute;
|
2949
|
+
right: -20px;
|
2950
|
+
top: 0;
|
2951
|
+
width: 20px;
|
2952
|
+
z-index: 100;
|
2953
|
+
height: 36px;
|
2954
|
+
}
|
2955
|
+
/* line 46, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2956
|
+
#progress-tracker ul li a span.step-number {
|
2957
|
+
position: relative;
|
2958
|
+
right: 15px;
|
2959
|
+
top: 0;
|
2960
|
+
width: 16px;
|
2961
|
+
height: 26px;
|
2962
|
+
z-index: 100;
|
2963
|
+
background: url("/images/progress-status-bg2.png") no-repeat scroll -1px 0px;
|
2964
|
+
margin-right: 0px;
|
2965
|
+
font-size: 10px;
|
2966
|
+
color: #666666;
|
2967
|
+
float: left;
|
2968
|
+
margin-top: -3px;
|
2969
|
+
padding-top: 4px;
|
2970
|
+
padding-left: 10px;
|
2971
|
+
}
|
2972
|
+
/* line 62, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2973
|
+
#progress-tracker ul li a span.closer {
|
2974
|
+
background: transparent url("/images/tracker-a-bg-closer.png") no-repeat top left;
|
2975
|
+
float: left;
|
2976
|
+
right: -18px;
|
2977
|
+
/*padding-left: 9px;*/
|
2978
|
+
}
|
2979
|
+
/* line 70, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2980
|
+
#progress-tracker ul li a.selected {
|
2981
|
+
font-weight: bold;
|
2982
|
+
color: #fefefe;
|
2983
|
+
text-shadow: #749a44 0 0px 1px;
|
2984
|
+
background: transparent url("/images/tracker-a-bg-completed.png") repeat-x scroll 0px 0px;
|
2985
|
+
}
|
2986
|
+
/* line 75, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2987
|
+
#progress-tracker ul li a.selected span {
|
2988
|
+
background: url("/images/tracker-green-arrow.png") no-repeat scroll 0px 0px;
|
2989
|
+
}
|
2990
|
+
/* line 77, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2991
|
+
#progress-tracker ul li a.selected span.step-number {
|
2992
|
+
background: transparent url("/images/progress-status-bg2.png") no-repeat scroll 0px -33px;
|
2993
|
+
text-shadow: none;
|
2994
|
+
}
|
2995
|
+
/* line 82, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
2996
|
+
#progress-tracker ul li a.selected.closer {
|
2997
|
+
float: left;
|
2998
|
+
padding-left: 6px;
|
2999
|
+
}
|
3000
|
+
/* line 87, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
3001
|
+
#progress-tracker ul li a.completed {
|
3002
|
+
color: #fefefe;
|
3003
|
+
font-weight: bold;
|
3004
|
+
background: transparent url("/images/tracker-a-bg-completed.png") repeat-x scroll 0px 0px;
|
3005
|
+
text-shadow: #749a44 0 0px 1px;
|
3006
|
+
}
|
3007
|
+
/* line 92, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
3008
|
+
#progress-tracker ul li a.completed span {
|
3009
|
+
background: url("/images/tracker-green-arrow.png") no-repeat scroll 0px 0px;
|
3010
|
+
}
|
3011
|
+
/* line 95, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
3012
|
+
#progress-tracker ul li a.completed span.step-number {
|
3013
|
+
background: url("/images/progress-status-bg2.png") no-repeat scroll -1px -67px;
|
3014
|
+
color: #515151;
|
3015
|
+
text-indent: -1000px;
|
3016
|
+
}
|
3017
|
+
/* line 102, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
3018
|
+
#progress-tracker ul li:first-child {
|
3019
|
+
background: transparent url("/images/tracker-a-bg-opener.png") no-repeat top left;
|
3020
|
+
}
|
3021
|
+
/* line 104, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
3022
|
+
#progress-tracker ul li:first-child a {
|
3023
|
+
margin-left: 1px;
|
3024
|
+
}
|
3025
|
+
/* line 4, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_progress_tracker.scss */
|
3026
|
+
#progress-tracker.tabs-3 ul li {
|
3027
|
+
width: 33.3%;
|
3028
|
+
}
|
3029
|
+
|
3030
|
+
/* --------- sub tabbed navigation --------------- */
|
3031
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3032
|
+
.inner-tabs {
|
3033
|
+
overflow: auto;
|
3034
|
+
}
|
3035
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3036
|
+
.inner-tabs ul {
|
3037
|
+
background: url(/images/navtab-bottom.png);
|
3038
|
+
height: 34px;
|
3039
|
+
list-style-type: none;
|
3040
|
+
margin: 0;
|
3041
|
+
padding: 0;
|
3042
|
+
}
|
3043
|
+
/* line 14, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3044
|
+
.inner-tabs li {
|
3045
|
+
float: left;
|
3046
|
+
}
|
3047
|
+
/* line 16, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3048
|
+
.inner-tabs li a, .inner-tabs li span {
|
3049
|
+
background: url(/images/navtab.png) no-repeat right top;
|
3050
|
+
color: #777;
|
3051
|
+
display: block;
|
3052
|
+
font-weight: bold;
|
3053
|
+
height: 17px;
|
3054
|
+
padding: 8px 28px 8px 8px;
|
3055
|
+
text-decoration: none;
|
3056
|
+
font-size: 12px;
|
3057
|
+
}
|
3058
|
+
/* line 25, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3059
|
+
.inner-tabs li a:hover, .inner-tabs li span:hover {
|
3060
|
+
color: #333;
|
3061
|
+
}
|
3062
|
+
/* line 30, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3063
|
+
.inner-tabs span {
|
3064
|
+
color: #333;
|
3065
|
+
}
|
3066
|
+
/* line 34, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3067
|
+
.inner-tabs li.current {
|
3068
|
+
background: url(/images/navtab-current-left.png) no-repeat;
|
3069
|
+
margin-left: -15px;
|
3070
|
+
padding-left: 15px;
|
3071
|
+
}
|
3072
|
+
/* line 39, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3073
|
+
.inner-tabs li.current span, .inner-tabs li.current a {
|
3074
|
+
background: url(/images/navtab-current.png) no-repeat right top;
|
3075
|
+
color: #333;
|
3076
|
+
}
|
3077
|
+
/* line 45, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3078
|
+
.inner-tabs li:first-child {
|
3079
|
+
background: url(/images/navtab-first.png) no-repeat;
|
3080
|
+
padding-left: 16px;
|
3081
|
+
}
|
3082
|
+
/* line 49, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3083
|
+
.inner-tabs li:first-child.current {
|
3084
|
+
background: url(/images/navtab-current-first.png) no-repeat;
|
3085
|
+
padding-left: 16px;
|
3086
|
+
margin-left: 0;
|
3087
|
+
}
|
3088
|
+
/* line 54, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3089
|
+
.inner-tabs li:last-child a {
|
3090
|
+
background: url(/images/navtab-last.png) no-repeat right top;
|
3091
|
+
padding: 8px 32px 8px 4px;
|
3092
|
+
}
|
3093
|
+
/* line 59, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3094
|
+
.inner-tabs .last-inner-tab a {
|
3095
|
+
background: url(/images/navtab-last.png) no-repeat right top;
|
3096
|
+
padding: 8px 32px 8px 4px;
|
3097
|
+
}
|
3098
|
+
/* line 63, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3099
|
+
.inner-tabs li:last-child.current span, .inner-tabs li:last-child.current a {
|
3100
|
+
background: url(/images/navtab-current-last.png) no-repeat right top;
|
3101
|
+
}
|
3102
|
+
/* line 66, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3103
|
+
.inner-tabs .last-inner-tab.current span {
|
3104
|
+
background: url(/images/navtab-current-last.png) no-repeat right top;
|
3105
|
+
}
|
3106
|
+
|
3107
|
+
/* --------- tabbed navigation --------------- */
|
3108
|
+
/* line 74, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3109
|
+
.listings-tabs {
|
3110
|
+
position: absolute;
|
3111
|
+
bottom: 0;
|
3112
|
+
width: 796px;
|
3113
|
+
}
|
3114
|
+
/* line 78, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3115
|
+
.listings-tabs ul {
|
3116
|
+
margin: 0;
|
3117
|
+
padding: 0;
|
3118
|
+
text-align: right;
|
3119
|
+
}
|
3120
|
+
/* line 82, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3121
|
+
.listings-tabs ul li {
|
3122
|
+
text-align: center;
|
3123
|
+
margin: 0 5px;
|
3124
|
+
list-style-image: none;
|
3125
|
+
list-style-type: none;
|
3126
|
+
margin-left: 0;
|
3127
|
+
display: inline;
|
3128
|
+
}
|
3129
|
+
/* line 87, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3130
|
+
.listings-tabs ul li a {
|
3131
|
+
font-weight: bold;
|
3132
|
+
background-color: #f4f4f4;
|
3133
|
+
opacity: 0.9;
|
3134
|
+
filter: alpha(opacity=90);
|
3135
|
+
-webkit-border-radius: 4px 4px 0px 0px;
|
3136
|
+
-moz-border-radius: 4px 4px 0px 0px;
|
3137
|
+
border-radius: 4px 4px 0px 0px;
|
3138
|
+
text-align: center;
|
3139
|
+
color: #2d7eb3;
|
3140
|
+
width: 110px;
|
3141
|
+
line-height: 33px;
|
3142
|
+
display: inline-block;
|
3143
|
+
padding: 0px 6px;
|
3144
|
+
text-shadow: white 0 0px 1px;
|
3145
|
+
}
|
3146
|
+
/* line 103, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3147
|
+
.listings-tabs ul li a:hover {
|
3148
|
+
opacity: 1;
|
3149
|
+
filter: alpha(opacity=100);
|
3150
|
+
color: #538dc2;
|
3151
|
+
text-decoration: underline;
|
3152
|
+
}
|
3153
|
+
/* line 109, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3154
|
+
.listings-tabs ul li a.active {
|
3155
|
+
position: relative;
|
3156
|
+
height: 33px;
|
3157
|
+
color: #5f6263;
|
3158
|
+
font-weight: bold;
|
3159
|
+
background-color: white;
|
3160
|
+
opacity: 1;
|
3161
|
+
filter: alpha(opacity=100);
|
3162
|
+
}
|
3163
|
+
/* line 118, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3164
|
+
.listings-tabs ul li a.active:hover {
|
3165
|
+
position: relative;
|
3166
|
+
height: 33px;
|
3167
|
+
text-decoration: none;
|
3168
|
+
cursor: default;
|
3169
|
+
}
|
3170
|
+
/* line 124, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3171
|
+
.listings-tabs ul li a.active span.tabs-pointer {
|
3172
|
+
display: block;
|
3173
|
+
}
|
3174
|
+
/* line 128, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3175
|
+
.listings-tabs ul li a.active-last {
|
3176
|
+
border: 1px solid transparent;
|
3177
|
+
position: relative;
|
3178
|
+
height: 33px;
|
3179
|
+
}
|
3180
|
+
/* line 133, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3181
|
+
.listings-tabs ul li a.last-tab:hover {
|
3182
|
+
text-decoration: none;
|
3183
|
+
}
|
3184
|
+
/* line 137, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3185
|
+
.listings-tabs ul li span.tabs-pointer {
|
3186
|
+
display: none;
|
3187
|
+
height: 10px;
|
3188
|
+
top: 37px;
|
3189
|
+
width: 18px;
|
3190
|
+
z-index: 10;
|
3191
|
+
position: absolute;
|
3192
|
+
left: 42%;
|
3193
|
+
}
|
3194
|
+
/* line 145, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3195
|
+
.listings-tabs ul li span.tabs-pointer .tab-content {
|
3196
|
+
padding: 10px 15px 9px 15px;
|
3197
|
+
background-color: white;
|
3198
|
+
clear: both;
|
3199
|
+
}
|
3200
|
+
/* line 154, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3201
|
+
.listings-tabs ul li.last {
|
3202
|
+
margin-right: 0;
|
3203
|
+
}
|
3204
|
+
/* line 158, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3205
|
+
.listings-tabs ul li:first-child {
|
3206
|
+
float: left;
|
3207
|
+
}
|
3208
|
+
|
3209
|
+
/* line 166, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3210
|
+
.tab-container legend span {
|
3211
|
+
width: 643px;
|
3212
|
+
}
|
3213
|
+
/* line 169, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3214
|
+
.tab-container .form {
|
3215
|
+
background: url("/images/form-box-bg-narrow2.gif");
|
3216
|
+
}
|
3217
|
+
/* line 172, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3218
|
+
.tab-container .msg {
|
3219
|
+
width: 440px;
|
3220
|
+
}
|
3221
|
+
|
3222
|
+
/* line 177, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_tabbed_navigation.scss */
|
3223
|
+
#variation {
|
3224
|
+
background: url("/images/form-box-bg.gif");
|
3225
|
+
}
|
3226
|
+
|
3227
|
+
/* ------ inspection times ----------- */
|
3228
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3229
|
+
#inspections-add .button {
|
3230
|
+
position: relative;
|
3231
|
+
left: 42px;
|
3232
|
+
bottom: 5px;
|
3233
|
+
/*margin-left: 42px;*/
|
3234
|
+
/*margin-top: -5px;*/
|
3235
|
+
}
|
3236
|
+
|
3237
|
+
/* line 13, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3238
|
+
#inspections span.date-selector {
|
3239
|
+
float: left;
|
3240
|
+
}
|
3241
|
+
/* line 15, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3242
|
+
#inspections span.date-selector .starttime, #inspections span.date-selector .endtime {
|
3243
|
+
margin-top: 13px;
|
3244
|
+
}
|
3245
|
+
|
3246
|
+
/* line 21, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3247
|
+
.inspection-times {
|
3248
|
+
width: 745px;
|
3249
|
+
margin-bottom: 36px;
|
3250
|
+
}
|
3251
|
+
/* line 25, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3252
|
+
.inspection-times table {
|
3253
|
+
border-collapse: collapse;
|
3254
|
+
width: 100%;
|
3255
|
+
}
|
3256
|
+
/* line 29, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3257
|
+
.inspection-times table tr.odd {
|
3258
|
+
background: #FAF9F8 none repeat scroll 0 0;
|
3259
|
+
}
|
3260
|
+
/* line 31, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3261
|
+
.inspection-times table tr.odd td {
|
3262
|
+
border-bottom: 1px solid #E0DDDB;
|
3263
|
+
border-top: 1px solid #E0DDDB;
|
3264
|
+
}
|
3265
|
+
/* line 36, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3266
|
+
.inspection-times table tr td {
|
3267
|
+
height: 30px;
|
3268
|
+
padding: 0;
|
3269
|
+
margin: 0;
|
3270
|
+
font-size: 13px;
|
3271
|
+
border-collapse: collapse;
|
3272
|
+
vertical-align: middle;
|
3273
|
+
}
|
3274
|
+
/* line 43, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3275
|
+
.inspection-times table tr td:first-child {
|
3276
|
+
padding-left: 25px;
|
3277
|
+
}
|
3278
|
+
/* line 46, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3279
|
+
.inspection-times table tr td.delete-inspection {
|
3280
|
+
font-size: 1em;
|
3281
|
+
text-align: right;
|
3282
|
+
padding-right: 40px;
|
3283
|
+
padding-bottom: 10px;
|
3284
|
+
}
|
3285
|
+
|
3286
|
+
/* line 57, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_inspection_times.scss */
|
3287
|
+
.marked {
|
3288
|
+
background-image: none;
|
3289
|
+
background-color: #efeff0;
|
3290
|
+
padding: 2px 6px 2px 6px;
|
3291
|
+
letter-spacing: -0.02em;
|
3292
|
+
-moz-border-radius: 5px;
|
3293
|
+
-webkit-border-radius: 5px;
|
3294
|
+
-o-border-radius: 5px;
|
3295
|
+
-ms-border-radius: 5px;
|
3296
|
+
-khtml-border-radius: 5px;
|
3297
|
+
border-radius: 5px;
|
3298
|
+
}
|
3299
|
+
|
3300
|
+
/* ----- pagination ----------- */
|
3301
|
+
/* line 133, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_pagination.scss */
|
3302
|
+
.pagination {
|
3303
|
+
padding-top: 18px;
|
3304
|
+
}
|
3305
|
+
/* line 136, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_pagination.scss */
|
3306
|
+
.pagination .ellipse,
|
3307
|
+
.pagination .current {
|
3308
|
+
display: inline-block;
|
3309
|
+
height: 37px;
|
3310
|
+
}
|
3311
|
+
/* line 139, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_pagination.scss */
|
3312
|
+
.pagination .ellipse span,
|
3313
|
+
.pagination .current span {
|
3314
|
+
display: block;
|
3315
|
+
float: left;
|
3316
|
+
padding: 10px 10px 0 10px;
|
3317
|
+
height: 25px;
|
3318
|
+
}
|
3319
|
+
/* line 146, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_pagination.scss */
|
3320
|
+
.pagination .ellipse {
|
3321
|
+
color: #999999;
|
3322
|
+
}
|
3323
|
+
/* line 148, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_pagination.scss */
|
3324
|
+
.pagination .ellipse span {
|
3325
|
+
padding: 11px 2px 0 2px;
|
3326
|
+
}
|
3327
|
+
/* line 153, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_pagination.scss */
|
3328
|
+
.pagination .current span {
|
3329
|
+
font-weight: bold;
|
3330
|
+
line-height: 15px;
|
3331
|
+
}
|
3332
|
+
|
3333
|
+
/* --------- stock listings --------------- */
|
3334
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3335
|
+
ul#stocklist-items li {
|
3336
|
+
zoom: 1;
|
3337
|
+
position: relative;
|
3338
|
+
list-style-image: none;
|
3339
|
+
list-style-type: none;
|
3340
|
+
margin-left: 0;
|
3341
|
+
padding: 16px 0px 20px 0px;
|
3342
|
+
background: transparent url("/images/listing-div-bg.png") no-repeat scroll center bottom;
|
3343
|
+
}
|
3344
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
3345
|
+
ul#stocklist-items li:before, ul#stocklist-items li:after {
|
3346
|
+
display: table;
|
3347
|
+
content: "";
|
3348
|
+
}
|
3349
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
3350
|
+
ul#stocklist-items li:after {
|
3351
|
+
clear: both;
|
3352
|
+
}
|
3353
|
+
/* line 9, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3354
|
+
ul#stocklist-items li .listing-id {
|
3355
|
+
position: absolute;
|
3356
|
+
top: 28px;
|
3357
|
+
right: 10px;
|
3358
|
+
font-size: 11px;
|
3359
|
+
color: #777777;
|
3360
|
+
float: right;
|
3361
|
+
}
|
3362
|
+
/* line 16, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3363
|
+
ul#stocklist-items li .listing-id .property_number {
|
3364
|
+
padding-right: 5px;
|
3365
|
+
}
|
3366
|
+
/* line 20, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3367
|
+
ul#stocklist-items li .marked {
|
3368
|
+
background: url("/images/purchased-tick.png") 9px center no-repeat;
|
3369
|
+
background-color: #efede9;
|
3370
|
+
padding: 1px 6px 1px 25px;
|
3371
|
+
font-size: 11px;
|
3372
|
+
-moz-border-radius: 5px;
|
3373
|
+
-webkit-border-radius: 5px;
|
3374
|
+
-o-border-radius: 5px;
|
3375
|
+
-ms-border-radius: 5px;
|
3376
|
+
-khtml-border-radius: 5px;
|
3377
|
+
border-radius: 5px;
|
3378
|
+
}
|
3379
|
+
/* line 27, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3380
|
+
ul#stocklist-items li a.status {
|
3381
|
+
display: block;
|
3382
|
+
position: absolute;
|
3383
|
+
top: 54px;
|
3384
|
+
right: 10px;
|
3385
|
+
width: 80px;
|
3386
|
+
padding: 2px 8px;
|
3387
|
+
background: #efeff0 none no-repeat 80px center;
|
3388
|
+
-moz-border-radius: 5px;
|
3389
|
+
-webkit-border-radius: 5px;
|
3390
|
+
-o-border-radius: 5px;
|
3391
|
+
-ms-border-radius: 5px;
|
3392
|
+
-khtml-border-radius: 5px;
|
3393
|
+
border-radius: 5px;
|
3394
|
+
font-size: 11px;
|
3395
|
+
color: #464747;
|
3396
|
+
text-align: center;
|
3397
|
+
}
|
3398
|
+
/* line 39, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3399
|
+
ul#stocklist-items li a.status.invalid {
|
3400
|
+
background: #ca535e;
|
3401
|
+
color: white;
|
3402
|
+
}
|
3403
|
+
/* line 45, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3404
|
+
ul#stocklist-items li div.data img.main {
|
3405
|
+
float: left;
|
3406
|
+
margin-right: 18px;
|
3407
|
+
}
|
3408
|
+
/* line 49, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3409
|
+
ul#stocklist-items li div.data .editable {
|
3410
|
+
color: #333333;
|
3411
|
+
display: inline-block;
|
3412
|
+
padding-right: 15px;
|
3413
|
+
background-repeat: no-repeat;
|
3414
|
+
background-position: right center;
|
3415
|
+
}
|
3416
|
+
/* line 56, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3417
|
+
ul#stocklist-items li div.data a.title {
|
3418
|
+
font-family: 'SansaConSoftProSemiBold', 'Helvetica Neue', helvetica, arial, clean, sans-serif;
|
3419
|
+
color: #2d7eb3;
|
3420
|
+
padding: 0px 15px 4px 0;
|
3421
|
+
font-weight: normal;
|
3422
|
+
display: inline-block;
|
3423
|
+
background-position: right 12px;
|
3424
|
+
font-size: 18px;
|
3425
|
+
line-height: 36px;
|
3426
|
+
white-space: nowrap;
|
3427
|
+
max-width: 465px;
|
3428
|
+
}
|
3429
|
+
/* line 67, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3430
|
+
ul#stocklist-items li div.data a.title span {
|
3431
|
+
max-width: 465px;
|
3432
|
+
overflow: hidden;
|
3433
|
+
text-overflow: ellipsis;
|
3434
|
+
display: block;
|
3435
|
+
}
|
3436
|
+
/* line 74, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3437
|
+
ul#stocklist-items li div.data a.price, ul#stocklist-items li div.data a.sold-price, ul#stocklist-items li div.data a.price-per-week {
|
3438
|
+
color: #777777;
|
3439
|
+
display: inline-block;
|
3440
|
+
font-size: 14px;
|
3441
|
+
padding-bottom: 2px;
|
3442
|
+
background-position: right 3px;
|
3443
|
+
}
|
3444
|
+
/* line 81, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3445
|
+
ul#stocklist-items li div.data a.inspection, ul#stocklist-items li div.data a.sold-date, ul#stocklist-items li div.data a.leased-date, ul#stocklist-items li div.data a.available-date {
|
3446
|
+
display: inline-block;
|
3447
|
+
font-size: 12px;
|
3448
|
+
}
|
3449
|
+
/* line 86, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3450
|
+
ul#stocklist-items li div.data a.sold-date, ul#stocklist-items li div.data a.leased-date, ul#stocklist-items li div.data a.available-date {
|
3451
|
+
color: #777777;
|
3452
|
+
}
|
3453
|
+
/* line 90, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3454
|
+
ul#stocklist-items li div.products {
|
3455
|
+
top: 56px;
|
3456
|
+
left: 445px;
|
3457
|
+
position: absolute;
|
3458
|
+
}
|
3459
|
+
/* line 94, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3460
|
+
ul#stocklist-items li div.products .exp {
|
3461
|
+
font-size: 11px;
|
3462
|
+
margin-left: 5px;
|
3463
|
+
}
|
3464
|
+
/* line 99, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3465
|
+
ul#stocklist-items li div.links {
|
3466
|
+
float: left;
|
3467
|
+
margin: 0;
|
3468
|
+
display: block;
|
3469
|
+
vertical-align: middle;
|
3470
|
+
line-height: 22px;
|
3471
|
+
height: 7px;
|
3472
|
+
}
|
3473
|
+
/* line 106, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3474
|
+
ul#stocklist-items li div.links a {
|
3475
|
+
font-size: 12px;
|
3476
|
+
display: none;
|
3477
|
+
padding-top: 0px;
|
3478
|
+
padding-left: 15px;
|
3479
|
+
vertical-align: middle;
|
3480
|
+
background-color: transparent;
|
3481
|
+
}
|
3482
|
+
/* line 113, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3483
|
+
ul#stocklist-items li div.links a.published-listing {
|
3484
|
+
background: transparent url("/images/view-listing-icon.png") no-repeat left 5px;
|
3485
|
+
}
|
3486
|
+
/* line 116, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3487
|
+
ul#stocklist-items li div.links a.activity-report {
|
3488
|
+
background: transparent url("/images/view-reports-icon.png") no-repeat 3px 5px;
|
3489
|
+
}
|
3490
|
+
/* line 119, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3491
|
+
ul#stocklist-items li div.links a.upgrade-listing {
|
3492
|
+
background: transparent url("/images/upgrade-listing-icon.png") no-repeat 3px 5px;
|
3493
|
+
}
|
3494
|
+
/* line 123, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3495
|
+
ul#stocklist-items li div.links.links-variation {
|
3496
|
+
clear: both;
|
3497
|
+
margin-left: 127px;
|
3498
|
+
}
|
3499
|
+
/* line 128, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3500
|
+
ul#stocklist-items li .photo-wrap {
|
3501
|
+
position: relative;
|
3502
|
+
display: block;
|
3503
|
+
left: 2px;
|
3504
|
+
}
|
3505
|
+
/* line 133, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3506
|
+
ul#stocklist-items li .photo-wrap .photo {
|
3507
|
+
visibility: hidden;
|
3508
|
+
position: absolute;
|
3509
|
+
top: 0px;
|
3510
|
+
left: 0px;
|
3511
|
+
margin: 3px 0 0 3px;
|
3512
|
+
background-color: rgba(248, 248, 255, 0.9);
|
3513
|
+
padding: 3px 15px 3px 6px;
|
3514
|
+
font-size: 11px;
|
3515
|
+
z-index: 10;
|
3516
|
+
}
|
3517
|
+
/* line 145, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3518
|
+
ul#stocklist-items li .photo-wrap img {
|
3519
|
+
background-color: #fff;
|
3520
|
+
border: 1px solid #ddd;
|
3521
|
+
padding: 3px;
|
3522
|
+
}
|
3523
|
+
/* line 151, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3524
|
+
ul#stocklist-items li:hover {
|
3525
|
+
background-color: #ffffff;
|
3526
|
+
}
|
3527
|
+
/* line 153, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3528
|
+
ul#stocklist-items li:hover .editable {
|
3529
|
+
color: #2d7eb3;
|
3530
|
+
background-image: url("/images/edit-pen-icon.png");
|
3531
|
+
}
|
3532
|
+
/* line 158, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3533
|
+
ul#stocklist-items li:hover div.data a, ul#stocklist-items li:hover div.data a.price, ul#stocklist-items li:hover div.data a.inspection, ul#stocklist-items li:hover div.data a.title span {
|
3534
|
+
color: #2d7eb3;
|
3535
|
+
}
|
3536
|
+
/* line 160, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3537
|
+
ul#stocklist-items li:hover div.data a:hover, ul#stocklist-items li:hover div.data a.price:hover, ul#stocklist-items li:hover div.data a.inspection:hover, ul#stocklist-items li:hover div.data a.title span:hover {
|
3538
|
+
text-decoration: underline;
|
3539
|
+
}
|
3540
|
+
/* line 165, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3541
|
+
ul#stocklist-items li:hover .marked, ul#stocklist-items li:hover .status {
|
3542
|
+
background-color: #d8e1e6;
|
3543
|
+
}
|
3544
|
+
/* line 168, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3545
|
+
ul#stocklist-items li:hover .status {
|
3546
|
+
color: #2d7eb3;
|
3547
|
+
}
|
3548
|
+
/* line 170, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3549
|
+
ul#stocklist-items li:hover .status.invalid.editable {
|
3550
|
+
background: #ca535e url("/images/edit-pen-icon-invalid.png") no-repeat 80px center;
|
3551
|
+
}
|
3552
|
+
/* line 175, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3553
|
+
ul#stocklist-items li:hover a.photo {
|
3554
|
+
visibility: visible;
|
3555
|
+
}
|
3556
|
+
/* line 179, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3557
|
+
ul#stocklist-items li:hover .photo-wrap a.disabled {
|
3558
|
+
visibility: hidden;
|
3559
|
+
}
|
3560
|
+
/* line 182, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3561
|
+
ul#stocklist-items li:hover div.links a {
|
3562
|
+
display: inline-block;
|
3563
|
+
}
|
3564
|
+
|
3565
|
+
/* ------------ add-stocklist ---------------------- */
|
3566
|
+
/* line 192, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3567
|
+
#add-listing {
|
3568
|
+
width: 400px;
|
3569
|
+
float: right;
|
3570
|
+
display: inline;
|
3571
|
+
position: relative;
|
3572
|
+
z-index: 1;
|
3573
|
+
}
|
3574
|
+
/* line 199, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3575
|
+
#add-listing .arrow {
|
3576
|
+
background: transparent url(/images/search-btn2-alternate.png) no-repeat scroll right -82px;
|
3577
|
+
color: white;
|
3578
|
+
display: inline-block;
|
3579
|
+
font-size: 0.94em;
|
3580
|
+
height: 42px;
|
3581
|
+
padding: 0 18px 0 0;
|
3582
|
+
text-decoration: none;
|
3583
|
+
float: right;
|
3584
|
+
}
|
3585
|
+
/* line 208, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3586
|
+
#add-listing .arrow span {
|
3587
|
+
background: transparent url(/images/search-btn2-alternate.png) no-repeat scroll right top;
|
3588
|
+
cursor: pointer;
|
3589
|
+
float: left;
|
3590
|
+
height: 25px;
|
3591
|
+
padding: 12px 29px 0 0;
|
3592
|
+
text-shadow: 0 1px 1px #5E5E5E;
|
3593
|
+
}
|
3594
|
+
/* line 216, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3595
|
+
#add-listing .arrow:hover {
|
3596
|
+
background-position: right -123px;
|
3597
|
+
}
|
3598
|
+
/* line 218, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3599
|
+
#add-listing .arrow:hover span {
|
3600
|
+
background-position: right -41px;
|
3601
|
+
}
|
3602
|
+
/* line 222, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3603
|
+
#add-listing .arrow.active {
|
3604
|
+
background-position: right -206px;
|
3605
|
+
}
|
3606
|
+
/* line 224, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3607
|
+
#add-listing .arrow.active span {
|
3608
|
+
background-position: right -164px;
|
3609
|
+
}
|
3610
|
+
/* line 230, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3611
|
+
#add-listing .dropdown {
|
3612
|
+
display: none;
|
3613
|
+
}
|
3614
|
+
/* line 232, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3615
|
+
#add-listing .dropdown.active {
|
3616
|
+
float: right;
|
3617
|
+
z-index: 3000;
|
3618
|
+
margin-top: 30px;
|
3619
|
+
display: block;
|
3620
|
+
}
|
3621
|
+
/* line 237, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3622
|
+
#add-listing .dropdown.active ul {
|
3623
|
+
position: absolute;
|
3624
|
+
right: 4px;
|
3625
|
+
background: white;
|
3626
|
+
border: 1px solid #4996bc;
|
3627
|
+
list-style-image: none;
|
3628
|
+
list-style-type: none;
|
3629
|
+
margin-left: 0;
|
3630
|
+
z-index: 900;
|
3631
|
+
padding: 7px 0px 7px 0px;
|
3632
|
+
-moz-border-radius-bottomleft: 8px;
|
3633
|
+
-webkit-border-bottom-left-radius: 8px;
|
3634
|
+
-o-border-bottom-left-radius: 8px;
|
3635
|
+
-ms-border-bottom-left-radius: 8px;
|
3636
|
+
-khtml-border-bottom-left-radius: 8px;
|
3637
|
+
border-bottom-left-radius: 8px;
|
3638
|
+
-moz-border-radius-bottomright: 8px;
|
3639
|
+
-webkit-border-bottom-right-radius: 8px;
|
3640
|
+
-o-border-bottom-right-radius: 8px;
|
3641
|
+
-ms-border-bottom-right-radius: 8px;
|
3642
|
+
-khtml-border-bottom-right-radius: 8px;
|
3643
|
+
border-bottom-right-radius: 8px;
|
3644
|
+
-moz-box-shadow: 1px 1px 5px #888;
|
3645
|
+
-webkit-box-shadow: 3px 3px 5px #888;
|
3646
|
+
box-shadow: 1px 1px 5px #888;
|
3647
|
+
background: url("/images/filter-dropdown-bg.png") repeat-x scroll center bottom white;
|
3648
|
+
}
|
3649
|
+
/* line 250, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3650
|
+
#add-listing .dropdown.active ul li {
|
3651
|
+
list-style-image: none;
|
3652
|
+
list-style-type: none;
|
3653
|
+
margin-left: 0;
|
3654
|
+
}
|
3655
|
+
/* line 252, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3656
|
+
#add-listing .dropdown.active ul li a {
|
3657
|
+
padding: 3px 30px 3px 30px;
|
3658
|
+
font-weight: bold;
|
3659
|
+
display: block;
|
3660
|
+
text-shadow: white 0 0px 1px;
|
3661
|
+
color: #5f5f5f;
|
3662
|
+
font-size: 12px;
|
3663
|
+
}
|
3664
|
+
/* line 259, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3665
|
+
#add-listing .dropdown.active ul li a:hover {
|
3666
|
+
text-decoration: none;
|
3667
|
+
background: #EFEFF0;
|
3668
|
+
}
|
3669
|
+
/* line 269, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3670
|
+
#add-listing .selected {
|
3671
|
+
background: transparent url(/images/search-btn2.png) no-repeat scroll left -82px;
|
3672
|
+
color: white;
|
3673
|
+
display: inline-block;
|
3674
|
+
float: right;
|
3675
|
+
font-size: 14px;
|
3676
|
+
height: 42px;
|
3677
|
+
padding: 0 0 0 18px;
|
3678
|
+
}
|
3679
|
+
/* line 277, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3680
|
+
#add-listing .selected:hover {
|
3681
|
+
text-decoration: none;
|
3682
|
+
background-position: left -123px;
|
3683
|
+
}
|
3684
|
+
/* line 280, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3685
|
+
#add-listing .selected:hover span {
|
3686
|
+
background-position: right -41px;
|
3687
|
+
}
|
3688
|
+
/* line 284, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3689
|
+
#add-listing .selected span {
|
3690
|
+
background: transparent url(/images/search-btn2.png) no-repeat scroll right top;
|
3691
|
+
cursor: pointer;
|
3692
|
+
display: block;
|
3693
|
+
float: left;
|
3694
|
+
font-size: 14px;
|
3695
|
+
height: 25px;
|
3696
|
+
line-height: normal;
|
3697
|
+
padding: 8px 10px 0 0;
|
3698
|
+
text-shadow: 0 1px 1px #5E5E5E;
|
3699
|
+
}
|
3700
|
+
|
3701
|
+
/* ------------ generic alternate button ---------------------- */
|
3702
|
+
/* line 301, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3703
|
+
#alternate-wrap {
|
3704
|
+
position: relative;
|
3705
|
+
float: left;
|
3706
|
+
}
|
3707
|
+
/* line 305, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3708
|
+
#alternate-wrap .arrow {
|
3709
|
+
background: transparent url(/images/search-btn2-alternate.png) no-repeat scroll right -82px;
|
3710
|
+
color: white;
|
3711
|
+
display: inline-block;
|
3712
|
+
font-size: 0.94em;
|
3713
|
+
height: 42px;
|
3714
|
+
padding: 0 18px 0 0;
|
3715
|
+
text-decoration: none;
|
3716
|
+
float: right;
|
3717
|
+
}
|
3718
|
+
/* line 314, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3719
|
+
#alternate-wrap .arrow span {
|
3720
|
+
background: transparent url(/images/search-btn2-alternate.png) no-repeat scroll right top;
|
3721
|
+
cursor: pointer;
|
3722
|
+
float: left;
|
3723
|
+
height: 25px;
|
3724
|
+
padding: 12px 29px 0 0;
|
3725
|
+
text-shadow: 0 1px 1px #5E5E5E;
|
3726
|
+
}
|
3727
|
+
/* line 322, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3728
|
+
#alternate-wrap .arrow:hover {
|
3729
|
+
background-position: right -123px;
|
3730
|
+
}
|
3731
|
+
/* line 324, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3732
|
+
#alternate-wrap .arrow:hover span {
|
3733
|
+
background-position: right -41px;
|
3734
|
+
}
|
3735
|
+
/* line 328, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3736
|
+
#alternate-wrap .arrow.active {
|
3737
|
+
background-position: right -206px;
|
3738
|
+
}
|
3739
|
+
/* line 330, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3740
|
+
#alternate-wrap .arrow.active span {
|
3741
|
+
background-position: right -164px;
|
3742
|
+
}
|
3743
|
+
/* line 336, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3744
|
+
#alternate-wrap .dropdown {
|
3745
|
+
display: none;
|
3746
|
+
}
|
3747
|
+
/* line 338, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3748
|
+
#alternate-wrap .dropdown.active {
|
3749
|
+
z-index: 3000;
|
3750
|
+
margin-top: 30px;
|
3751
|
+
display: block;
|
3752
|
+
}
|
3753
|
+
/* line 342, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3754
|
+
#alternate-wrap .dropdown.active ul {
|
3755
|
+
position: absolute;
|
3756
|
+
right: 0px;
|
3757
|
+
background: white;
|
3758
|
+
border: 1px solid #4996bc;
|
3759
|
+
list-style-image: none;
|
3760
|
+
list-style-type: none;
|
3761
|
+
margin-left: 0;
|
3762
|
+
z-index: 900;
|
3763
|
+
padding: 7px 0px 7px 0px;
|
3764
|
+
-moz-border-radius-bottomleft: 8px;
|
3765
|
+
-webkit-border-bottom-left-radius: 8px;
|
3766
|
+
-o-border-bottom-left-radius: 8px;
|
3767
|
+
-ms-border-bottom-left-radius: 8px;
|
3768
|
+
-khtml-border-bottom-left-radius: 8px;
|
3769
|
+
border-bottom-left-radius: 8px;
|
3770
|
+
-moz-border-radius-bottomright: 8px;
|
3771
|
+
-webkit-border-bottom-right-radius: 8px;
|
3772
|
+
-o-border-bottom-right-radius: 8px;
|
3773
|
+
-ms-border-bottom-right-radius: 8px;
|
3774
|
+
-khtml-border-bottom-right-radius: 8px;
|
3775
|
+
border-bottom-right-radius: 8px;
|
3776
|
+
-moz-box-shadow: 1px 1px 5px #888;
|
3777
|
+
-webkit-box-shadow: 3px 3px 5px #888;
|
3778
|
+
box-shadow: 1px 1px 5px #888;
|
3779
|
+
margin-right: 4px;
|
3780
|
+
background: url("/images/filter-dropdown-bg.png") repeat-x scroll center bottom white;
|
3781
|
+
}
|
3782
|
+
/* line 356, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3783
|
+
#alternate-wrap .dropdown.active ul li {
|
3784
|
+
list-style-image: none;
|
3785
|
+
list-style-type: none;
|
3786
|
+
margin-left: 0;
|
3787
|
+
}
|
3788
|
+
/* line 358, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3789
|
+
#alternate-wrap .dropdown.active ul li a {
|
3790
|
+
padding: 3px 10px 3px 10px;
|
3791
|
+
font-weight: bold;
|
3792
|
+
display: block;
|
3793
|
+
text-shadow: white 0 0px 1px;
|
3794
|
+
color: #5f5f5f;
|
3795
|
+
font-size: 12px;
|
3796
|
+
}
|
3797
|
+
/* line 365, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3798
|
+
#alternate-wrap .dropdown.active ul li a:hover {
|
3799
|
+
text-decoration: none;
|
3800
|
+
background: #EFEFF0;
|
3801
|
+
}
|
3802
|
+
/* line 375, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3803
|
+
#alternate-wrap .selected {
|
3804
|
+
background: transparent url(/images/search-btn2.png) no-repeat scroll left -82px;
|
3805
|
+
color: white;
|
3806
|
+
display: inline-block;
|
3807
|
+
float: right;
|
3808
|
+
font-size: 14px;
|
3809
|
+
height: 42px;
|
3810
|
+
padding: 0 0 0 18px;
|
3811
|
+
}
|
3812
|
+
/* line 383, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3813
|
+
#alternate-wrap .selected:hover {
|
3814
|
+
text-decoration: none;
|
3815
|
+
background-position: left -123px;
|
3816
|
+
}
|
3817
|
+
/* line 386, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3818
|
+
#alternate-wrap .selected:hover span {
|
3819
|
+
background-position: right -41px;
|
3820
|
+
}
|
3821
|
+
/* line 390, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listings_results.scss */
|
3822
|
+
#alternate-wrap .selected span {
|
3823
|
+
background: transparent url(/images/search-btn2.png) no-repeat scroll right top;
|
3824
|
+
cursor: pointer;
|
3825
|
+
display: block;
|
3826
|
+
float: left;
|
3827
|
+
font-size: 14px;
|
3828
|
+
height: 25px;
|
3829
|
+
line-height: normal;
|
3830
|
+
padding: 8px 10px 0 0;
|
3831
|
+
text-shadow: 0 1px 1px #5E5E5E;
|
3832
|
+
}
|
3833
|
+
|
3834
|
+
/* ---- LISTING PRODUCTS ---- */
|
3835
|
+
/*
|
3836
|
+
|
3837
|
+
This area still needs works and affects things like the _payment_confirmation.html template.
|
3838
|
+
As well as other places where prices are listed. *groan*
|
3839
|
+
|
3840
|
+
*/
|
3841
|
+
/* line 9, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3842
|
+
.products-table-wrapper {
|
3843
|
+
background: #f7f7f7 url("/images/product-table-rounded-corners.png") left top no-repeat;
|
3844
|
+
margin-bottom: 30px;
|
3845
|
+
padding: 1px;
|
3846
|
+
}
|
3847
|
+
|
3848
|
+
/* line 16, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3849
|
+
#listing-products table {
|
3850
|
+
border-collapse: collapse;
|
3851
|
+
border-bottom: 4px solid #f7f7f7;
|
3852
|
+
margin-bottom: 0px;
|
3853
|
+
}
|
3854
|
+
/* line 21, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3855
|
+
#listing-products table li {
|
3856
|
+
list-style-image: none;
|
3857
|
+
list-style-type: none;
|
3858
|
+
margin-left: 0;
|
3859
|
+
}
|
3860
|
+
/* line 27, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3861
|
+
#listing-products table .product-container a {
|
3862
|
+
font-size: 12px;
|
3863
|
+
}
|
3864
|
+
/* line 32, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3865
|
+
#listing-products table tr {
|
3866
|
+
background-color: #ffffff;
|
3867
|
+
}
|
3868
|
+
/* line 37, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3869
|
+
#listing-products table .current-upgrade {
|
3870
|
+
background-color: #FFFCE8;
|
3871
|
+
}
|
3872
|
+
/* line 39, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3873
|
+
#listing-products table .current-upgrade .product-type {
|
3874
|
+
border-left: 4px solid #92BB67;
|
3875
|
+
}
|
3876
|
+
/* line 47, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3877
|
+
#listing-products table thead th {
|
3878
|
+
text-align: left;
|
3879
|
+
}
|
3880
|
+
/* line 51, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3881
|
+
#listing-products table thead tr {
|
3882
|
+
border: none;
|
3883
|
+
text-align: left;
|
3884
|
+
background: none;
|
3885
|
+
}
|
3886
|
+
/* line 57, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3887
|
+
#listing-products table thead h4 {
|
3888
|
+
margin: 0 0 0 15px;
|
3889
|
+
-moz-text-shadow: 0px 2px 1px white;
|
3890
|
+
-webkit-text-shadow: 0px 2px 1px white;
|
3891
|
+
text-shadow: 0px 2px 1px white;
|
3892
|
+
color: #999999;
|
3893
|
+
line-height: 28px;
|
3894
|
+
}
|
3895
|
+
/* line 68, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3896
|
+
#listing-products table td {
|
3897
|
+
border-bottom: 1px solid #efefef;
|
3898
|
+
}
|
3899
|
+
/* line 72, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3900
|
+
#listing-products table td.product-type {
|
3901
|
+
padding-right: 28px;
|
3902
|
+
padding-left: 15px;
|
3903
|
+
border-left: 4px solid #f7f7f7;
|
3904
|
+
}
|
3905
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3906
|
+
#listing-products table td.product-type .listing-upgrade-product-description {
|
3907
|
+
margin-right: 0px;
|
3908
|
+
}
|
3909
|
+
/* line 80, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3910
|
+
#listing-products table td.product-type .feature-credits {
|
3911
|
+
color: #2d7eb3;
|
3912
|
+
}
|
3913
|
+
/* line 84, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3914
|
+
#listing-products table td.product-duration {
|
3915
|
+
width: 120px;
|
3916
|
+
vertical-align: top;
|
3917
|
+
padding-top: 14px;
|
3918
|
+
padding-right: 0px;
|
3919
|
+
padding-left: 0px;
|
3920
|
+
}
|
3921
|
+
/* line 91, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3922
|
+
#listing-products table td.product-duration .date-last-sent {
|
3923
|
+
font-size: 11px;
|
3924
|
+
color: #111;
|
3925
|
+
}
|
3926
|
+
/* line 96, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3927
|
+
#listing-products table td.product-action {
|
3928
|
+
width: 139px;
|
3929
|
+
text-align: center;
|
3930
|
+
padding-right: 10px;
|
3931
|
+
padding-left: 0px;
|
3932
|
+
padding-top: 12px;
|
3933
|
+
vertical-align: top;
|
3934
|
+
border-right: 4px solid #f7f7f7;
|
3935
|
+
}
|
3936
|
+
/* line 105, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3937
|
+
#listing-products table td.product-action .small-font {
|
3938
|
+
font-size: 11px;
|
3939
|
+
}
|
3940
|
+
/* line 109, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3941
|
+
#listing-products table td.product-action .big-font {
|
3942
|
+
font-size: 18px;
|
3943
|
+
color: #454545;
|
3944
|
+
font-family: 'SansaConSoftProSemiBold', 'Helvetica Neue', helvetica, arial, clean, sans-serif;
|
3945
|
+
}
|
3946
|
+
/* line 116, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3947
|
+
#listing-products table td p {
|
3948
|
+
font-size: 13px;
|
3949
|
+
}
|
3950
|
+
/* line 122, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3951
|
+
#listing-products table .pay-per-listing.expired {
|
3952
|
+
background-color: #f6e3e7;
|
3953
|
+
}
|
3954
|
+
/* line 124, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3955
|
+
#listing-products table .pay-per-listing.expired .price-products {
|
3956
|
+
color: #c4414d;
|
3957
|
+
font-size: 18px;
|
3958
|
+
font-family: 'SansaConSoftProSemiBold', 'Helvetica Neue', helvetica, arial, clean, sans-serif;
|
3959
|
+
}
|
3960
|
+
/* line 128, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3961
|
+
#listing-products table .pay-per-listing.expired .price-products .expiry-date {
|
3962
|
+
color: #c4414d;
|
3963
|
+
font-size: 11px;
|
3964
|
+
padding-top: 4px;
|
3965
|
+
font-family: "Helvetica Neue", "Arial", "Clean", sans-serif;
|
3966
|
+
}
|
3967
|
+
/* line 135, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3968
|
+
#listing-products table .pay-per-listing.expired .product-type {
|
3969
|
+
border-left: 4px solid #c4414d;
|
3970
|
+
}
|
3971
|
+
|
3972
|
+
/* line 144, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3973
|
+
#listing-products table tr.premiere-property td.product-type {
|
3974
|
+
padding-top: 13px;
|
3975
|
+
}
|
3976
|
+
/* line 147, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3977
|
+
#listing-products table tr.premiere-property td.product-duration {
|
3978
|
+
padding-top: 29px;
|
3979
|
+
}
|
3980
|
+
/* line 150, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3981
|
+
#listing-products table tr.premiere-property td.product-action {
|
3982
|
+
padding-top: 21px;
|
3983
|
+
}
|
3984
|
+
|
3985
|
+
/* line 155, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3986
|
+
.price-text {
|
3987
|
+
font-family: 'SansaConSoftProSemiBold', 'Helvetica Neue', helvetica, arial, clean, sans-serif;
|
3988
|
+
width: auto;
|
3989
|
+
font-size: 27px;
|
3990
|
+
margin: 0;
|
3991
|
+
padding: 0 10px;
|
3992
|
+
text-align: center;
|
3993
|
+
}
|
3994
|
+
/* line 162, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
3995
|
+
.price-text span {
|
3996
|
+
font-family: "Helvetica Neue", "Arial", "Clean", sans-serif;
|
3997
|
+
font-size: 11px;
|
3998
|
+
display: block;
|
3999
|
+
margin-top: 5px;
|
4000
|
+
}
|
4001
|
+
|
4002
|
+
/* line 169, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4003
|
+
.price-products {
|
4004
|
+
width: auto;
|
4005
|
+
font-size: 11px;
|
4006
|
+
margin: 0;
|
4007
|
+
padding: 0 10px;
|
4008
|
+
}
|
4009
|
+
/* line 174, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4010
|
+
.price-products span {
|
4011
|
+
font-size: 18px;
|
4012
|
+
}
|
4013
|
+
/* line 176, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4014
|
+
.price-products span.price {
|
4015
|
+
font-size: 20px;
|
4016
|
+
}
|
4017
|
+
|
4018
|
+
/* line 181, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4019
|
+
.price-wrap {
|
4020
|
+
margin: -22px 7px 0px 0px;
|
4021
|
+
}
|
4022
|
+
|
4023
|
+
/* line 185, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4024
|
+
#payment-confirmation {
|
4025
|
+
padding: 0.5em 1.0em;
|
4026
|
+
}
|
4027
|
+
/* line 189, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4028
|
+
#payment-confirmation div.price-and-duration {
|
4029
|
+
display: inline-block;
|
4030
|
+
vertical-align: middle;
|
4031
|
+
}
|
4032
|
+
/* line 193, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4033
|
+
#payment-confirmation div.price-and-duration div {
|
4034
|
+
display: inline-block;
|
4035
|
+
padding: 0px 10px;
|
4036
|
+
margin-bottom: 10px;
|
4037
|
+
}
|
4038
|
+
/* line 200, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4039
|
+
#payment-confirmation .amount {
|
4040
|
+
font-size: larger;
|
4041
|
+
font-weight: bold;
|
4042
|
+
}
|
4043
|
+
/* line 205, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4044
|
+
#payment-confirmation .notes {
|
4045
|
+
font-size: smaller;
|
4046
|
+
}
|
4047
|
+
/* line 209, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4048
|
+
#payment-confirmation div {
|
4049
|
+
text-align: left;
|
4050
|
+
}
|
4051
|
+
/* line 213, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4052
|
+
#payment-confirmation p.product-description {
|
4053
|
+
width: 300px;
|
4054
|
+
}
|
4055
|
+
/* line 217, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4056
|
+
#payment-confirmation .box {
|
4057
|
+
zoom: 1;
|
4058
|
+
background: #e7f1f7 url("/images/sq-white.gif") top repeat-x;
|
4059
|
+
background-color: #fef8d6;
|
4060
|
+
border-color: #ffe478;
|
4061
|
+
color: #454545;
|
4062
|
+
padding: 9px 18px 18px 18px;
|
4063
|
+
}
|
4064
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
4065
|
+
#payment-confirmation .box:before, #payment-confirmation .box:after {
|
4066
|
+
display: table;
|
4067
|
+
content: "";
|
4068
|
+
}
|
4069
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
4070
|
+
#payment-confirmation .box:after {
|
4071
|
+
clear: both;
|
4072
|
+
}
|
4073
|
+
|
4074
|
+
/* line 224, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_products.scss */
|
4075
|
+
#headline-parent .jqEasyCounterMsg {
|
4076
|
+
float: right;
|
4077
|
+
padding-top: 8px;
|
4078
|
+
padding-right: 130px;
|
4079
|
+
width: auto !important;
|
4080
|
+
}
|
4081
|
+
|
4082
|
+
/* line 1, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_details.scss */
|
4083
|
+
.available-today, .sold-today, .leased-today {
|
4084
|
+
float: left;
|
4085
|
+
margin-top: -4px;
|
4086
|
+
display: block !important;
|
4087
|
+
}
|
4088
|
+
|
4089
|
+
/* line 7, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_details.scss */
|
4090
|
+
#disposition-date-available, #disposition-sold-date, #disposition-leased-date {
|
4091
|
+
float: left;
|
4092
|
+
}
|
4093
|
+
|
4094
|
+
/* line 1, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4095
|
+
.edit-listing {
|
4096
|
+
/* --------- listing summary --------------- */
|
4097
|
+
}
|
4098
|
+
/* line 2, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4099
|
+
.edit-listing #form-header {
|
4100
|
+
height: 200px;
|
4101
|
+
position: relative;
|
4102
|
+
padding: 15px;
|
4103
|
+
overflow: hidden;
|
4104
|
+
}
|
4105
|
+
/* line 8, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4106
|
+
.edit-listing #form-header h1 {
|
4107
|
+
margin-top: 0px;
|
4108
|
+
padding: 5px 10px;
|
4109
|
+
color: white;
|
4110
|
+
background: url("/images/title-texture.png") repeat;
|
4111
|
+
}
|
4112
|
+
/* line 15, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4113
|
+
.edit-listing #form-header #listing-background-image {
|
4114
|
+
position: absolute;
|
4115
|
+
top: 0;
|
4116
|
+
left: 0;
|
4117
|
+
z-index: -1;
|
4118
|
+
width: 826px;
|
4119
|
+
margin-top: -125px;
|
4120
|
+
}
|
4121
|
+
/* line 26, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4122
|
+
.edit-listing .listing-summary {
|
4123
|
+
zoom: 1;
|
4124
|
+
color: #777777;
|
4125
|
+
margin-bottom: 18px;
|
4126
|
+
}
|
4127
|
+
/* line 6, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
4128
|
+
.edit-listing .listing-summary:before, .edit-listing .listing-summary:after {
|
4129
|
+
display: table;
|
4130
|
+
content: "";
|
4131
|
+
}
|
4132
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_layout.scss */
|
4133
|
+
.edit-listing .listing-summary:after {
|
4134
|
+
clear: both;
|
4135
|
+
}
|
4136
|
+
/* line 31, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4137
|
+
.edit-listing .listing-summary .listing-summary-text {
|
4138
|
+
float: left;
|
4139
|
+
}
|
4140
|
+
/* line 35, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4141
|
+
.edit-listing .listing-summary .listing-summary-url {
|
4142
|
+
position: absolute;
|
4143
|
+
right: 26px;
|
4144
|
+
top: 34px;
|
4145
|
+
color: white;
|
4146
|
+
}
|
4147
|
+
/* line 40, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4148
|
+
.edit-listing .listing-summary .listing-summary-url a {
|
4149
|
+
color: white;
|
4150
|
+
}
|
4151
|
+
/* line 46, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4152
|
+
.edit-listing #container {
|
4153
|
+
padding: 21px 0 0 0;
|
4154
|
+
}
|
4155
|
+
/* line 50, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4156
|
+
.edit-listing #left-col {
|
4157
|
+
margin-top: -6px;
|
4158
|
+
margin-right: 0;
|
4159
|
+
}
|
4160
|
+
/* line 54, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4161
|
+
.edit-listing #right-col {
|
4162
|
+
width: 826px;
|
4163
|
+
margin-top: 0;
|
4164
|
+
}
|
4165
|
+
/* line 59, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4166
|
+
.edit-listing #form-container {
|
4167
|
+
margin-left: 17px;
|
4168
|
+
margin-right: 15px;
|
4169
|
+
}
|
4170
|
+
/* line 64, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_listing_header.scss */
|
4171
|
+
.edit-listing #campaign-details-right-panel {
|
4172
|
+
margin-left: auto;
|
4173
|
+
}
|
4174
|
+
|
4175
|
+
/* line 1, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4176
|
+
.header-separation {
|
4177
|
+
height: 8px;
|
4178
|
+
margin: 5px 0px 5px 0px;
|
4179
|
+
background: url(/images/separation-div-bg.png) top repeat-x;
|
4180
|
+
}
|
4181
|
+
|
4182
|
+
/* line 7, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4183
|
+
.social_icon {
|
4184
|
+
float: left;
|
4185
|
+
margin-right: 20px;
|
4186
|
+
}
|
4187
|
+
|
4188
|
+
/* line 140, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
4189
|
+
.social_introduction li {
|
4190
|
+
list-style-type: disc;
|
4191
|
+
list-style-position: inside;
|
4192
|
+
margin: 0px 0px 5px 0px;
|
4193
|
+
}
|
4194
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
4195
|
+
.social_introduction ul {
|
4196
|
+
margin: 10px 0px 15px 10px;
|
4197
|
+
}
|
4198
|
+
/* line 16, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4199
|
+
.social_introduction h2 {
|
4200
|
+
font-size: 24px;
|
4201
|
+
}
|
4202
|
+
|
4203
|
+
/* line 21, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4204
|
+
.social_learn_more_button {
|
4205
|
+
margin: 10px 20px 0 0;
|
4206
|
+
display: inline-block;
|
4207
|
+
}
|
4208
|
+
|
4209
|
+
/* line 26, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4210
|
+
.social_platform {
|
4211
|
+
margin-top: 30px;
|
4212
|
+
}
|
4213
|
+
|
4214
|
+
/* line 30, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4215
|
+
.social_platform_content {
|
4216
|
+
padding: 8px;
|
4217
|
+
background: #f7f7f7 url(/images/social/product-table-rounded-corners-social.png) top left no-repeat;
|
4218
|
+
padding: 15px 10px 10px 20px;
|
4219
|
+
}
|
4220
|
+
|
4221
|
+
/* line 36, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4222
|
+
.tagline {
|
4223
|
+
margin-bottom: 18px;
|
4224
|
+
display: block;
|
4225
|
+
}
|
4226
|
+
|
4227
|
+
/* line 140, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
4228
|
+
#tailor-your-lists li {
|
4229
|
+
list-style-type: none;
|
4230
|
+
list-style-position: inside;
|
4231
|
+
margin: 0px 0px 5px 0px;
|
4232
|
+
}
|
4233
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
4234
|
+
#tailor-your-lists ul {
|
4235
|
+
margin: 10px 0px 20px 10px;
|
4236
|
+
}
|
4237
|
+
/* line 45, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4238
|
+
#tailor-your-lists a {
|
4239
|
+
font-weight: bold;
|
4240
|
+
}
|
4241
|
+
|
4242
|
+
/* line 50, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4243
|
+
.social-landing-left-col {
|
4244
|
+
width: 386px;
|
4245
|
+
margin-right: 47px;
|
4246
|
+
float: left;
|
4247
|
+
}
|
4248
|
+
|
4249
|
+
/* line 56, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4250
|
+
.social-landing-right-col {
|
4251
|
+
width: 360px;
|
4252
|
+
float: left;
|
4253
|
+
}
|
4254
|
+
/* line 140, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
4255
|
+
.social-landing-right-col li {
|
4256
|
+
list-style-type: disc;
|
4257
|
+
list-style-position: inside;
|
4258
|
+
margin: 0px 0px 5px 0px;
|
4259
|
+
}
|
4260
|
+
/* line 134, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_typography.scss */
|
4261
|
+
.social-landing-right-col ul {
|
4262
|
+
margin: 10px 0px 15px 10px;
|
4263
|
+
}
|
4264
|
+
/* line 62, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4265
|
+
.social-landing-right-col p, .social-landing-right-col li {
|
4266
|
+
color: #777777;
|
4267
|
+
}
|
4268
|
+
|
4269
|
+
/* line 67, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_social.scss */
|
4270
|
+
.social .inner-tabs {
|
4271
|
+
margin-bottom: 18px;
|
4272
|
+
}
|
4273
|
+
|
4274
|
+
/* ----- Search Filters ----------- */
|
4275
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4276
|
+
.listings-filters-container {
|
4277
|
+
z-index: 300;
|
4278
|
+
height: 50px;
|
4279
|
+
position: absolute;
|
4280
|
+
overflow: visible;
|
4281
|
+
}
|
4282
|
+
/* line 9, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4283
|
+
.listings-filters-container .listings-filterblock {
|
4284
|
+
z-index: 10;
|
4285
|
+
position: relative;
|
4286
|
+
}
|
4287
|
+
/* line 14, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4288
|
+
.listings-filters-container span {
|
4289
|
+
color: #999999;
|
4290
|
+
display: block;
|
4291
|
+
font-size: 12px;
|
4292
|
+
margin-left: 10px;
|
4293
|
+
}
|
4294
|
+
/* line 21, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4295
|
+
.listings-filters-container a.tag {
|
4296
|
+
display: block;
|
4297
|
+
border-bottom: 1px solid transparent;
|
4298
|
+
font-size: 14px;
|
4299
|
+
font-weight: bold;
|
4300
|
+
margin-right: 10px;
|
4301
|
+
margin-left: 10px;
|
4302
|
+
padding: 0px 25px 0px 0px;
|
4303
|
+
background: url(/images/arrow-listing-select.png) no-repeat scroll right center;
|
4304
|
+
-webkit-text-shadow: #fff 1px 1px 1px;
|
4305
|
+
-moz-text-shadow: #fff 1px 1px 1px;
|
4306
|
+
text-shadow: #fff 1px 1px 1px;
|
4307
|
+
}
|
4308
|
+
/* line 34, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4309
|
+
.listings-filters-container a.tag:hover {
|
4310
|
+
text-decoration: none;
|
4311
|
+
background: #fff7c0 url(/images/arrow-listing-select.png) no-repeat scroll right center;
|
4312
|
+
}
|
4313
|
+
/* line 39, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4314
|
+
.listings-filters-container a.tag:visited, .listings-filters-container a.tag:focus, .listings-filters-container a.tag:active {
|
4315
|
+
color: #5484b2 !important;
|
4316
|
+
}
|
4317
|
+
/* line 44, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4318
|
+
.listings-filters-container ul {
|
4319
|
+
display: none;
|
4320
|
+
}
|
4321
|
+
|
4322
|
+
/* line 49, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4323
|
+
.listings-filter {
|
4324
|
+
float: left;
|
4325
|
+
margin-right: 0px;
|
4326
|
+
padding: 5px 2px 10px 2px;
|
4327
|
+
border: 1px solid transparent;
|
4328
|
+
}
|
4329
|
+
|
4330
|
+
/* line 57, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4331
|
+
.listings-filter-active {
|
4332
|
+
float: left;
|
4333
|
+
margin-right: 0px;
|
4334
|
+
background: white url(/images/filter-dropdown-bg.png) bottom repeat-x;
|
4335
|
+
border: 1px solid #f5f5f5;
|
4336
|
+
padding: 5px 2px 10px 2px;
|
4337
|
+
-moz-box-shadow: 1px 1px 5px #888;
|
4338
|
+
-webkit-box-shadow: 3px 3px 5px #888;
|
4339
|
+
box-shadow: 1px 1px 5px #888;
|
4340
|
+
-moz-border-radius: 5px;
|
4341
|
+
-webkit-border-radius: 5px;
|
4342
|
+
-o-border-radius: 5px;
|
4343
|
+
-ms-border-radius: 5px;
|
4344
|
+
-khtml-border-radius: 5px;
|
4345
|
+
border-radius: 5px;
|
4346
|
+
}
|
4347
|
+
/* line 68, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4348
|
+
.listings-filter-active a.tag {
|
4349
|
+
border-bottom: 1px solid #e5e5e5;
|
4350
|
+
}
|
4351
|
+
/* line 71, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4352
|
+
.listings-filter-active ul {
|
4353
|
+
display: block;
|
4354
|
+
margin: 15px 0px 0px 0px;
|
4355
|
+
-moz-border-radius: 5px;
|
4356
|
+
-webkit-border-radius: 5px;
|
4357
|
+
-o-border-radius: 5px;
|
4358
|
+
-ms-border-radius: 5px;
|
4359
|
+
-khtml-border-radius: 5px;
|
4360
|
+
border-radius: 5px;
|
4361
|
+
}
|
4362
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4363
|
+
.listings-filter-active ul li {
|
4364
|
+
list-style-image: none;
|
4365
|
+
list-style-type: none;
|
4366
|
+
margin-left: 0;
|
4367
|
+
}
|
4368
|
+
/* line 79, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4369
|
+
.listings-filter-active ul a {
|
4370
|
+
padding: 3px 10px 3px 10px;
|
4371
|
+
font-weight: bold;
|
4372
|
+
text-shadow: white 0 0px 1px;
|
4373
|
+
color: #5f5f5f;
|
4374
|
+
font-size: 12px;
|
4375
|
+
display: block;
|
4376
|
+
}
|
4377
|
+
/* line 87, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4378
|
+
.listings-filter-active ul a:hover {
|
4379
|
+
text-decoration: none;
|
4380
|
+
background: #EFEFF0;
|
4381
|
+
}
|
4382
|
+
/* line 92, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4383
|
+
.listings-filter-active ul a:visited {
|
4384
|
+
color: #5f5f5f;
|
4385
|
+
}
|
4386
|
+
|
4387
|
+
/* line 99, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4388
|
+
#stocklist-search {
|
4389
|
+
display: block;
|
4390
|
+
margin-top: 50px;
|
4391
|
+
background: url(/images/search-area-bg1.png) top center no-repeat;
|
4392
|
+
clear: both;
|
4393
|
+
}
|
4394
|
+
/* line 104, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4395
|
+
#stocklist-search fieldset {
|
4396
|
+
border: 0px solid transparent;
|
4397
|
+
padding: 8px 0px 0px 0px;
|
4398
|
+
margin-left: 10px;
|
4399
|
+
margin-bottom: 0px;
|
4400
|
+
}
|
4401
|
+
/* line 109, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4402
|
+
#stocklist-search fieldset input {
|
4403
|
+
-moz-border-radius-topleft: 25px;
|
4404
|
+
-webkit-border-top-left-radius: 25px;
|
4405
|
+
-o-border-top-left-radius: 25px;
|
4406
|
+
-ms-border-top-left-radius: 25px;
|
4407
|
+
-khtml-border-top-left-radius: 25px;
|
4408
|
+
border-top-left-radius: 25px;
|
4409
|
+
-moz-border-radius-bottomleft: 25px;
|
4410
|
+
-webkit-border-bottom-left-radius: 25px;
|
4411
|
+
-o-border-bottom-left-radius: 25px;
|
4412
|
+
-ms-border-bottom-left-radius: 25px;
|
4413
|
+
-khtml-border-bottom-left-radius: 25px;
|
4414
|
+
border-bottom-left-radius: 25px;
|
4415
|
+
padding-left: 20px;
|
4416
|
+
margin-top: 9px;
|
4417
|
+
width: 250px;
|
4418
|
+
color: grey;
|
4419
|
+
float: left;
|
4420
|
+
padding: 4px 5px 5px 10px;
|
4421
|
+
height: 13px;
|
4422
|
+
border: 1px solid #bbbbbb;
|
4423
|
+
}
|
4424
|
+
|
4425
|
+
/* line 126, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4426
|
+
div.result-count {
|
4427
|
+
float: right;
|
4428
|
+
font-size: 11px;
|
4429
|
+
padding: 11px 20px 12px 20px;
|
4430
|
+
margin-right: 3px;
|
4431
|
+
}
|
4432
|
+
/* line 132, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_search_filters.scss */
|
4433
|
+
div.result-count img {
|
4434
|
+
padding-right: 8px;
|
4435
|
+
margin-top: 2px;
|
4436
|
+
float: left;
|
4437
|
+
}
|
4438
|
+
|
4439
|
+
/* --------------- Campaign Tab Layout --------------- */
|
4440
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4441
|
+
#form-container {
|
4442
|
+
margin-left: 17px;
|
4443
|
+
margin-right: 15px;
|
4444
|
+
}
|
4445
|
+
|
4446
|
+
/* line 8, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4447
|
+
#campaign-details-content {
|
4448
|
+
float: left;
|
4449
|
+
width: 543px;
|
4450
|
+
}
|
4451
|
+
|
4452
|
+
/* line 13, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4453
|
+
#campaign-details-right-panel {
|
4454
|
+
float: right;
|
4455
|
+
width: 206px;
|
4456
|
+
padding: 3px;
|
4457
|
+
}
|
4458
|
+
/* line 18, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4459
|
+
#campaign-details-right-panel > div {
|
4460
|
+
padding: 18px 5px 9px 5px;
|
4461
|
+
margin-bottom: 18px;
|
4462
|
+
background: url("/images/listings-div-bg_03.png") no-repeat top left;
|
4463
|
+
}
|
4464
|
+
/* line 25, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4465
|
+
#campaign-details-right-panel > div.links a.history {
|
4466
|
+
background: url("/images/history_icon.png") no-repeat left;
|
4467
|
+
}
|
4468
|
+
/* line 28, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4469
|
+
#campaign-details-right-panel > div.links a.activity-report {
|
4470
|
+
background: url("/images/activity-report-icon.png") no-repeat left;
|
4471
|
+
}
|
4472
|
+
/* line 31, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4473
|
+
#campaign-details-right-panel > div.links a.expenses-report {
|
4474
|
+
background: url("/images/expenses-report-icon.png") no-repeat left;
|
4475
|
+
}
|
4476
|
+
/* line 34, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4477
|
+
#campaign-details-right-panel > div.links a.printable-brochure {
|
4478
|
+
background: url("/images/printable_brochure_icon.png") no-repeat left;
|
4479
|
+
}
|
4480
|
+
/* line 37, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4481
|
+
#campaign-details-right-panel > div.links a span {
|
4482
|
+
margin-left: 15px;
|
4483
|
+
}
|
4484
|
+
/* line 43, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4485
|
+
#campaign-details-right-panel a {
|
4486
|
+
font-weight: normal;
|
4487
|
+
}
|
4488
|
+
/* line 49, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4489
|
+
#campaign-details-right-panel #share-listing li {
|
4490
|
+
list-style-type: none;
|
4491
|
+
}
|
4492
|
+
/* line 53, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4493
|
+
#campaign-details-right-panel #share-listing #facebook {
|
4494
|
+
color: #f00;
|
4495
|
+
background: url("/images/social/sprite.png") no-repeat 0 0px;
|
4496
|
+
display: block;
|
4497
|
+
width: 60px;
|
4498
|
+
height: 20px;
|
4499
|
+
}
|
4500
|
+
/* line 60, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4501
|
+
#campaign-details-right-panel #share-listing #facebook.disabled {
|
4502
|
+
background: url("/images/social/sprite.png") no-repeat 0 -20px;
|
4503
|
+
}
|
4504
|
+
/* line 64, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4505
|
+
#campaign-details-right-panel #share-listing #twitter {
|
4506
|
+
color: #0f0;
|
4507
|
+
background: url("/images/social/sprite.png") no-repeat 0 -40px;
|
4508
|
+
display: block;
|
4509
|
+
width: 60px;
|
4510
|
+
height: 25px;
|
4511
|
+
}
|
4512
|
+
/* line 71, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4513
|
+
#campaign-details-right-panel #share-listing #twitter.disabled {
|
4514
|
+
background: url("/images/social/sprite.png") no-repeat 0 -65px;
|
4515
|
+
}
|
4516
|
+
|
4517
|
+
/* line 79, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4518
|
+
#campaign-email-dialog {
|
4519
|
+
overflow: auto;
|
4520
|
+
}
|
4521
|
+
/* line 82, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4522
|
+
#campaign-email-dialog .busy-notice {
|
4523
|
+
position: absolute;
|
4524
|
+
top: 0;
|
4525
|
+
width: 160px;
|
4526
|
+
height: 18px;
|
4527
|
+
left: 50%;
|
4528
|
+
margin-left: -60px;
|
4529
|
+
margin-top: -40px;
|
4530
|
+
background-color: #FFF7C0;
|
4531
|
+
padding: 18px 12px;
|
4532
|
+
border: 1px #CCC solid;
|
4533
|
+
color: #666;
|
4534
|
+
font-size: 18px;
|
4535
|
+
text-align: center;
|
4536
|
+
}
|
4537
|
+
/* line 96, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4538
|
+
#campaign-email-dialog .busy-notice span {
|
4539
|
+
background: url("/images/loading.gif") no-repeat left center;
|
4540
|
+
padding-left: 20px;
|
4541
|
+
display: inline-block;
|
4542
|
+
}
|
4543
|
+
/* line 103, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4544
|
+
#campaign-email-dialog .info p {
|
4545
|
+
margin-top: 30px;
|
4546
|
+
margin-bottom: 0px;
|
4547
|
+
}
|
4548
|
+
/* line 108, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4549
|
+
#campaign-email-dialog p.error-msg {
|
4550
|
+
margin: 9px 0 -27px 0;
|
4551
|
+
color: #c4414d;
|
4552
|
+
font-size: 0.85em;
|
4553
|
+
position: relative;
|
4554
|
+
}
|
4555
|
+
/* line 115, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4556
|
+
#campaign-email-dialog .msg {
|
4557
|
+
width: auto;
|
4558
|
+
}
|
4559
|
+
|
4560
|
+
/* line 121, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4561
|
+
#payment-confirmation .info p {
|
4562
|
+
margin-bottom: 0px;
|
4563
|
+
}
|
4564
|
+
|
4565
|
+
/* line 127, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_campaign.scss */
|
4566
|
+
#email-addresses-container {
|
4567
|
+
margin-top: 20px;
|
4568
|
+
}
|
4569
|
+
|
4570
|
+
/* --------- Modal window - overwrites jquery ui's dialog window styles --------------- */
|
4571
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4572
|
+
body .ui-dialog {
|
4573
|
+
position: fixed;
|
4574
|
+
background-image: url("/images/bg-frame-modal-window.png");
|
4575
|
+
padding: 8px;
|
4576
|
+
-webkit-box-shadow: 0px 5px 80px #777777;
|
4577
|
+
-moz-box-shadow: 0px 5px 80px #777777;
|
4578
|
+
}
|
4579
|
+
/* line 12, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4580
|
+
body div.ui-dialog-titlebar {
|
4581
|
+
background-image: none;
|
4582
|
+
width: 10px;
|
4583
|
+
position: absolute;
|
4584
|
+
right: 24px;
|
4585
|
+
z-index: 10;
|
4586
|
+
border: none;
|
4587
|
+
background-color: white;
|
4588
|
+
padding: 0px 0px 0px 0px;
|
4589
|
+
}
|
4590
|
+
/* line 22, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4591
|
+
body div.ui-dialog-titlebar span.ui-dialog-title {
|
4592
|
+
margin: 0px;
|
4593
|
+
}
|
4594
|
+
/* line 27, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4595
|
+
body div.ui-dialog-titlebar a.ui-dialog-titlebar-close span.ui-icon-closethick {
|
4596
|
+
background-image: url("/images/lightbox-close.png");
|
4597
|
+
background-position: -11px -39px;
|
4598
|
+
}
|
4599
|
+
/* line 33, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4600
|
+
body div.ui-dialog-titlebar a.ui-state-hover {
|
4601
|
+
border: 1px solid white;
|
4602
|
+
background-color: transparent;
|
4603
|
+
background: none;
|
4604
|
+
}
|
4605
|
+
/* line 37, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4606
|
+
body div.ui-dialog-titlebar a.ui-state-hover span.ui-icon-closethick {
|
4607
|
+
background-position: -11px -7px;
|
4608
|
+
}
|
4609
|
+
/* line 43, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4610
|
+
body div#payment-confirmation-dialog {
|
4611
|
+
clear: both;
|
4612
|
+
padding-top: 0px;
|
4613
|
+
}
|
4614
|
+
/* line 50, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_modal_window.scss */
|
4615
|
+
body div.ui-widget-overlay {
|
4616
|
+
background-color: #8b8b8b;
|
4617
|
+
background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5), rgba(127, 127, 127, 0.5) 35%, rgba(0, 0, 0, 0.8));
|
4618
|
+
background: -moz-radial-gradient(rgba(127, 127, 127, 0.5), rgba(127, 127, 127, 0.5) 35%, rgba(0, 0, 0, 0.8));
|
4619
|
+
}
|
4620
|
+
|
4621
|
+
/* line 3, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4622
|
+
fieldset#project-banner-images .listing-image {
|
4623
|
+
width: 505px;
|
4624
|
+
height: 45px;
|
4625
|
+
background-size: 505px 45px;
|
4626
|
+
}
|
4627
|
+
/* line 8, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4628
|
+
fieldset#project-banner-images ul {
|
4629
|
+
background: none;
|
4630
|
+
}
|
4631
|
+
/* line 10, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4632
|
+
fieldset#project-banner-images ul li {
|
4633
|
+
width: 515px;
|
4634
|
+
height: 74px;
|
4635
|
+
}
|
4636
|
+
/* line 13, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4637
|
+
fieldset#project-banner-images ul li .im-text {
|
4638
|
+
width: 502px;
|
4639
|
+
}
|
4640
|
+
|
4641
|
+
/* line 22, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4642
|
+
fieldset#project-large-logo-image .listing-image {
|
4643
|
+
width: 170px;
|
4644
|
+
height: 32px;
|
4645
|
+
background-size: 170px 32px;
|
4646
|
+
}
|
4647
|
+
/* line 27, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4648
|
+
fieldset#project-large-logo-image ul {
|
4649
|
+
background: none;
|
4650
|
+
}
|
4651
|
+
/* line 29, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4652
|
+
fieldset#project-large-logo-image ul li {
|
4653
|
+
width: 180px;
|
4654
|
+
height: 60px;
|
4655
|
+
}
|
4656
|
+
/* line 32, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4657
|
+
fieldset#project-large-logo-image ul li .im-text {
|
4658
|
+
width: 168px;
|
4659
|
+
}
|
4660
|
+
|
4661
|
+
/* line 41, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4662
|
+
fieldset#project-medium-logo-image .listing-image {
|
4663
|
+
width: 160px;
|
4664
|
+
height: 30px;
|
4665
|
+
background-size: 160px 30px;
|
4666
|
+
}
|
4667
|
+
/* line 46, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4668
|
+
fieldset#project-medium-logo-image ul {
|
4669
|
+
background: none;
|
4670
|
+
}
|
4671
|
+
/* line 48, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4672
|
+
fieldset#project-medium-logo-image ul li {
|
4673
|
+
width: 170px;
|
4674
|
+
height: 58px;
|
4675
|
+
}
|
4676
|
+
/* line 51, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4677
|
+
fieldset#project-medium-logo-image ul li .im-text {
|
4678
|
+
width: 158px;
|
4679
|
+
}
|
4680
|
+
|
4681
|
+
/* line 59, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4682
|
+
fieldset#project-documents ul.documents {
|
4683
|
+
float: none;
|
4684
|
+
background: none;
|
4685
|
+
}
|
4686
|
+
/* line 62, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4687
|
+
fieldset#project-documents ul.documents li.uploaded-image {
|
4688
|
+
float: none;
|
4689
|
+
}
|
4690
|
+
/* line 67, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4691
|
+
fieldset#project-documents .attachment-caption {
|
4692
|
+
margin: -97px 0 0 129px;
|
4693
|
+
float: left;
|
4694
|
+
}
|
4695
|
+
/* line 73, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4696
|
+
fieldset#project-documents .qq-uploader .attachment-caption {
|
4697
|
+
margin: -2px 0 0 129px;
|
4698
|
+
}
|
4699
|
+
/* line 76, /Volumes/WinXP/Programming/cp-auth/lib/assets/stylesheets/shared/_project_details.scss */
|
4700
|
+
fieldset#project-documents .qq-uploader .add-image {
|
4701
|
+
margin-top: -31px;
|
4702
|
+
}
|