kirgudu_sso 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.woff +0 -0
  6. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.woff +0 -0
  7. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/gotham-bold.woff +0 -0
  8. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/gotham-book.woff +0 -0
  9. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-free.png +0 -0
  10. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-free@2x.png +0 -0
  11. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-premium.png +0 -0
  12. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-premium@2x.png +0 -0
  13. data/app/assets/templates/kirgudu_sso/authentications/base/images/chevron-blue-bg.png +0 -0
  14. data/app/assets/templates/kirgudu_sso/authentications/base/images/chevron-blue-bg@2x.png +0 -0
  15. data/app/assets/templates/kirgudu_sso/authentications/base/images/error-bang.png +0 -0
  16. data/app/assets/templates/kirgudu_sso/authentications/base/images/error-bang@2x.png +0 -0
  17. data/app/assets/templates/kirgudu_sso/authentications/base/images/green-check.png +0 -0
  18. data/app/assets/templates/kirgudu_sso/authentications/base/images/green-check@2x.png +0 -0
  19. data/app/assets/templates/kirgudu_sso/authentications/base/images/header-bar.png +0 -0
  20. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-settings.png +0 -0
  21. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-settings@2x.png +0 -0
  22. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-shield-white.png +0 -0
  23. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-shield-white@2x.png +0 -0
  24. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour1@2x.png +0 -0
  25. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour2@2x.png +0 -0
  26. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour3@2x.png +0 -0
  27. data/app/assets/templates/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white (1).png +0 -0
  28. data/app/assets/templates/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white.png +0 -0
  29. data/app/assets/templates/kirgudu_sso/authentications/base/images/settings-bg.jpeg +0 -0
  30. data/app/assets/templates/kirgudu_sso/authentications/base/stylesheets/register.css +794 -0
  31. data/app/assets/templates/kirgudu_sso/authentications/base/stylesheets/sso.css +4824 -0
  32. data/app/controllers/kirgudu_sso/authentications_controller.rb +140 -0
  33. data/app/controllers/kirgudu_sso/base_controller.rb +5 -0
  34. data/app/helpers/kirgudu_sso/application_helper.rb +4 -0
  35. data/app/models/kirgudu_sso/client.rb +142 -0
  36. data/app/models/kirgudu_sso/http_error.rb +5 -0
  37. data/app/views/kirgudu_sso/application.html.erb +14 -0
  38. data/app/views/kirgudu_sso/authentications/base/authentications/confirm_email.html.erb +51 -0
  39. data/app/views/kirgudu_sso/authentications/base/authentications/login.html.erb +60 -0
  40. data/app/views/kirgudu_sso/authentications/base/authentications/register.html.erb +123 -0
  41. data/app/views/kirgudu_sso/authentications/base/authentications/register_successful.html.erb +25 -0
  42. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password.html.erb +53 -0
  43. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password_code.html.erb +49 -0
  44. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password_success.html.erb +33 -0
  45. data/app/views/kirgudu_sso/authentications/base/layouts/application.html.erb +128 -0
  46. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/confirmation_code.html.erb +21 -0
  47. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/confirmation_code.text.erb +21 -0
  48. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_code.html.erb +20 -0
  49. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_code.text.erb +20 -0
  50. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_success.html.erb +12 -0
  51. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_success.text.erb +18 -0
  52. data/config/locales/chupakabra_tools.en.yml +28 -0
  53. data/config/locales/chupakabra_tools.ru.yml +28 -0
  54. data/config/locales/kirgudu_sso.en.yml +79 -0
  55. data/config/locales/kirgudu_sso.ru.yml +145 -0
  56. data/config/routes.rb +2 -0
  57. data/lib/kirgudu_sso/engine.rb +5 -0
  58. data/lib/kirgudu_sso/version.rb +3 -0
  59. data/lib/kirgudu_sso.rb +4 -0
  60. data/lib/tasks/kirgudu_sso_tasks.rake +4 -0
  61. data/test/dummy/README.rdoc +28 -0
  62. data/test/dummy/Rakefile +6 -0
  63. data/test/dummy/app/assets/javascripts/application.js +13 -0
  64. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  65. data/test/dummy/app/controllers/application_controller.rb +5 -0
  66. data/test/dummy/app/helpers/application_helper.rb +2 -0
  67. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  68. data/test/dummy/bin/bundle +3 -0
  69. data/test/dummy/bin/rails +4 -0
  70. data/test/dummy/bin/rake +4 -0
  71. data/test/dummy/config/application.rb +23 -0
  72. data/test/dummy/config/boot.rb +5 -0
  73. data/test/dummy/config/database.yml +25 -0
  74. data/test/dummy/config/environment.rb +5 -0
  75. data/test/dummy/config/environments/development.rb +37 -0
  76. data/test/dummy/config/environments/production.rb +83 -0
  77. data/test/dummy/config/environments/test.rb +39 -0
  78. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  79. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  80. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  81. data/test/dummy/config/initializers/inflections.rb +16 -0
  82. data/test/dummy/config/initializers/mime_types.rb +4 -0
  83. data/test/dummy/config/initializers/session_store.rb +3 -0
  84. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/test/dummy/config/locales/en.yml +23 -0
  86. data/test/dummy/config/routes.rb +4 -0
  87. data/test/dummy/config/secrets.yml +22 -0
  88. data/test/dummy/config.ru +4 -0
  89. data/test/dummy/public/404.html +67 -0
  90. data/test/dummy/public/422.html +67 -0
  91. data/test/dummy/public/500.html +66 -0
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/integration/navigation_test.rb +10 -0
  94. data/test/kirgudu_sso_test.rb +7 -0
  95. data/test/test_helper.rb +15 -0
  96. metadata +258 -0
@@ -0,0 +1,794 @@
1
+ .supertext {
2
+ font-family: 'caecilia-light-italic';
3
+ -webkit-font-smoothing: antialiased;
4
+ -moz-osx-font-smoothing: grayscale;
5
+ font-size: 18px;
6
+ line-height: 24px
7
+ }
8
+
9
+ .RegistrationPage .page-header {
10
+ margin-bottom: 32px
11
+ }
12
+
13
+ @media only screen and (max-width: 479px) {
14
+ .RegistrationPage .page-header {
15
+ display: none
16
+ }
17
+ }
18
+
19
+ .RegistrationPage .page-intro {
20
+ line-height: 18px;
21
+ font-family: helvetica, arial, sans-serif;
22
+ font-size: 13px;
23
+ font-style: normal;
24
+ font-variant: normal;
25
+ font-weight: normal;
26
+ text-align: left;
27
+ text-decoration: none;
28
+ text-indent: 0;
29
+ text-justify: auto;
30
+ text-outline: none;
31
+ text-overflow: clip;
32
+ text-shadow: none;
33
+ text-transform: none;
34
+ text-wrap: normal;
35
+ font-size: 16px;
36
+ line-height: 20px;
37
+ color: #747474;
38
+ margin-bottom: 16px
39
+ }
40
+
41
+ .RegistrationPage .column11.first {
42
+ margin-right: 26px
43
+ }
44
+
45
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
46
+ .RegistrationPage .column11.first {
47
+ width: 288px
48
+ }
49
+ }
50
+
51
+ @media only screen and (max-width: 479px) {
52
+ .RegistrationPage .column11.first {
53
+ display: none
54
+ }
55
+ }
56
+
57
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
58
+ .RegistrationPage .column11 {
59
+ width: 320px
60
+ }
61
+ }
62
+
63
+ @media only screen and (max-width: 479px) {
64
+ .RegistrationPage .column11 {
65
+ width: 256px
66
+ }
67
+ }
68
+
69
+ .supertext {
70
+ font-family: 'caecilia-light-italic';
71
+ -webkit-font-smoothing: antialiased;
72
+ -moz-osx-font-smoothing: grayscale;
73
+ font-size: 18px;
74
+ line-height: 24px
75
+ }
76
+
77
+ .kirgudu-sso-tour {
78
+ width: 100%
79
+ }
80
+
81
+ .kirgudu-sso-tour .tour-container {
82
+ margin: 8px 0px;
83
+ border-bottom: 1px solid #ebebeb
84
+ }
85
+
86
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
87
+ .kirgudu-sso-tour .tour-container {
88
+ margin-bottom: 10px
89
+ }
90
+ }
91
+
92
+ @media only screen and (max-width: 479px) {
93
+ .kirgudu-sso-tour .tour-container {
94
+ margin-bottom: 10px
95
+ }
96
+ }
97
+
98
+ .kirgudu-sso-tour .tour-container.last {
99
+ margin-right: 0px;
100
+ border: none;
101
+ padding-bottom: 11px
102
+ }
103
+
104
+ .kirgudu-sso-tour h4 {
105
+ font-weight: bold
106
+ }
107
+
108
+ .kirgudu-sso-tour .tour1, .kirgudu-sso-tour .tour2, .kirgudu-sso-tour .tour3 {
109
+ border: 4px solid #fff;
110
+ min-height: 64px;
111
+ padding: 0px 0px 11px 68px;
112
+ background-repeat: no-repeat
113
+ }
114
+
115
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
116
+ .kirgudu-sso-tour .tour1, .kirgudu-sso-tour .tour2, .kirgudu-sso-tour .tour3 {
117
+ line-height: 16px;
118
+ min-height: 40px;
119
+ padding-left: 50px
120
+ }
121
+ }
122
+
123
+ @media only screen and (max-width: 479px) {
124
+ .kirgudu-sso-tour .tour1, .kirgudu-sso-tour .tour2, .kirgudu-sso-tour .tour3 {
125
+ line-height: 16px;
126
+ min-height: 40px;
127
+ padding-left: 50px
128
+ }
129
+ }
130
+
131
+ .kirgudu-sso-tour .tour1 {
132
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour1@2x.png")
133
+ }
134
+
135
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
136
+ .kirgudu-sso-tour .tour1 {
137
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour1-small.png")
138
+ }
139
+ }
140
+
141
+ @media only screen and (max-width: 479px) {
142
+ .kirgudu-sso-tour .tour1 {
143
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour1-small.png")
144
+ }
145
+ }
146
+
147
+ .kirgudu-sso-tour .tour2 {
148
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour2@2x.png")
149
+ }
150
+
151
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
152
+ .kirgudu-sso-tour .tour2 {
153
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour2-small.png")
154
+ }
155
+ }
156
+
157
+ @media only screen and (max-width: 479px) {
158
+ .kirgudu-sso-tour .tour2 {
159
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour2-small.png")
160
+ }
161
+ }
162
+
163
+ .kirgudu-sso-tour .tour3 {
164
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour3@2x.png")
165
+ }
166
+
167
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
168
+ .kirgudu-sso-tour .tour3 {
169
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour3-small.png")
170
+ }
171
+ }
172
+
173
+ @media only screen and (max-width: 479px) {
174
+ .kirgudu-sso-tour .tour3 {
175
+ background-image: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-tour3-small.png")
176
+ }
177
+ }
178
+
179
+ .supertext {
180
+ font-family: 'caecilia-light-italic';
181
+ -webkit-font-smoothing: antialiased;
182
+ -moz-osx-font-smoothing: grayscale;
183
+ font-size: 18px;
184
+ line-height: 24px
185
+ }
186
+
187
+ input[type="text"], textarea, input[type="password"] {
188
+ color: #747474;
189
+ line-height: 18px;
190
+ font-family: helvetica, arial, sans-serif;
191
+ font-size: 13px;
192
+ font-style: normal;
193
+ font-variant: normal;
194
+ font-weight: normal;
195
+ text-align: left;
196
+ text-decoration: none;
197
+ text-indent: 0;
198
+ text-justify: auto;
199
+ text-outline: none;
200
+ text-overflow: clip;
201
+ text-shadow: none;
202
+ text-transform: none;
203
+ text-wrap: normal;
204
+ -webkit-border-radius: 0;
205
+ -moz-border-radius: 0;
206
+ border-radius: 0;
207
+ -webkit-box-shadow: none;
208
+ -moz-box-shadow: none;
209
+ box-shadow: none;
210
+ resize: none;
211
+ overflow: auto;
212
+ color: #3b3b3b;
213
+ border: 1px solid #cacaca;
214
+ margin: 0px;
215
+ padding: 10px 8px;
216
+ width: 182px;
217
+ height: 20px;
218
+ margin-bottom: 16px
219
+ }
220
+
221
+ input[type="text"]:-moz-placeholder, textarea:-moz-placeholder, input[type="password"]:-moz-placeholder {
222
+ color: #cacaca
223
+ }
224
+
225
+ input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder {
226
+ color: #cacaca
227
+ }
228
+
229
+ input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder {
230
+ color: #cacaca
231
+ }
232
+
233
+ input[type="text"].placeholder-input, textarea.placeholder-input, input[type="password"].placeholder-input {
234
+ color: #cacaca
235
+ }
236
+
237
+ input[type="text"], input[type="password"] {
238
+ *overflow-x: hidden;
239
+ *overflow-y: hidden;
240
+ -ms-overflow-x: hidden;
241
+ -ms-overflow-y: hidden
242
+ }
243
+
244
+ input.error, .lozenge-area .error {
245
+ border: 1px solid #fed1d1;
246
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
247
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
248
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
249
+ position: relative
250
+ }
251
+
252
+ input.warning, .lozenge-area .warning {
253
+ border: 1px solid #F0C7BC;
254
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
255
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
256
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
257
+ position: relative
258
+ }
259
+
260
+ .error-status {
261
+ margin: -18px 4px 4px 4px;
262
+ padding: 8px 8px 6px 8px;
263
+ z-index: 100;
264
+ width: 174px;
265
+ overflow-x: hidden;
266
+ overflow-wrap: break-word;
267
+ word-wrap: break-word;
268
+ font-size: 12px;
269
+ line-height: 15px;
270
+ background-color: #fed1d1;
271
+ border: 1px solid #e3a198;
272
+ color: #B8211D;
273
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
274
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
275
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
276
+ }
277
+
278
+ .error-status a {
279
+ font-size: 12px;
280
+ line-height: 15px
281
+ }
282
+
283
+ .error-bang > .error-status {
284
+ background-position-y: center;
285
+ border: none;
286
+ -webkit-box-shadow: none;
287
+ -moz-box-shadow: none;
288
+ box-shadow: none;
289
+ font-family: helvetica, arial, sans-serif;
290
+ font-size: 13px;
291
+ -webkit-font-smoothing: antialiased;
292
+ -moz-osx-font-smoothing: grayscale;
293
+ line-height: 19px;
294
+ margin: -8px 0 6px;
295
+ min-height: 16px;
296
+ padding: 0 0 0 23px
297
+ }
298
+
299
+ @media all {
300
+ .error-bang > .error-status {
301
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
302
+ -webkit-background-size: 17px 16px;
303
+ -moz-background-size: 17px 16px;
304
+ -o-background-size: 17px 16px;
305
+ background-size: 17px 16px
306
+ }
307
+ }
308
+
309
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
310
+ html:not(.ie8) .error-bang > .error-status {
311
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
312
+ -webkit-background-size: 17px 16px;
313
+ -moz-background-size: 17px 16px;
314
+ -o-background-size: 17px 16px;
315
+ background-size: 17px 16px
316
+ }
317
+ }
318
+
319
+ .warning-status {
320
+ margin: -18px 4px 4px 4px;
321
+ padding: 8px 8px 6px 8px;
322
+ z-index: 100;
323
+ width: 174px;
324
+ overflow-x: hidden;
325
+ overflow-wrap: break-word;
326
+ word-wrap: break-word;
327
+ font-size: 12px;
328
+ line-height: 15px;
329
+ background-color: #F3E6C3;
330
+ border: 1px solid #F0C7BC;
331
+ color: #b72200
332
+ }
333
+
334
+ .warning-status a {
335
+ font-size: 12px;
336
+ line-height: 15px
337
+ }
338
+
339
+ .select-elem {
340
+ font-family: helvetica, arial, sans-serif;
341
+ border: 1px solid #cacaca;
342
+ height: 35px;
343
+ font-size: 16px;
344
+ font-weight: 300;
345
+ line-height: 22px;
346
+ max-width: 100%;
347
+ text-overflow: ellipsis;
348
+ -webkit-border-radius: 3px;
349
+ -moz-border-radius: 3px;
350
+ border-radius: 3px
351
+ }
352
+
353
+ .withHelpTip input[type="text"], .withHelpTip textarea, .withHelpTip input[type="password"] {
354
+ color: #747474;
355
+ line-height: 18px;
356
+ font-family: helvetica, arial, sans-serif;
357
+ font-size: 13px;
358
+ font-style: normal;
359
+ font-variant: normal;
360
+ font-weight: normal;
361
+ text-align: left;
362
+ text-decoration: none;
363
+ text-indent: 0;
364
+ text-justify: auto;
365
+ text-outline: none;
366
+ text-overflow: clip;
367
+ text-shadow: none;
368
+ text-transform: none;
369
+ text-wrap: normal;
370
+ -webkit-border-radius: 0;
371
+ -moz-border-radius: 0;
372
+ border-radius: 0;
373
+ -webkit-box-shadow: none;
374
+ -moz-box-shadow: none;
375
+ box-shadow: none;
376
+ resize: none;
377
+ overflow: auto;
378
+ color: #3b3b3b;
379
+ border: 1px solid #cacaca;
380
+ margin: 0px;
381
+ padding: 10px 8px;
382
+ width: 150px;
383
+ height: 20px;
384
+ margin-bottom: 16px
385
+ }
386
+
387
+ .withHelpTip input[type="text"]:-moz-placeholder, .withHelpTip textarea:-moz-placeholder, .withHelpTip input[type="password"]:-moz-placeholder {
388
+ color: #cacaca
389
+ }
390
+
391
+ .withHelpTip input[type="text"]:-ms-input-placeholder, .withHelpTip textarea:-ms-input-placeholder, .withHelpTip input[type="password"]:-ms-input-placeholder {
392
+ color: #cacaca
393
+ }
394
+
395
+ .withHelpTip input[type="text"]::-webkit-input-placeholder, .withHelpTip textarea::-webkit-input-placeholder, .withHelpTip input[type="password"]::-webkit-input-placeholder {
396
+ color: #cacaca
397
+ }
398
+
399
+ .withHelpTip input[type="text"].placeholder-input, .withHelpTip textarea.placeholder-input, .withHelpTip input[type="password"].placeholder-input {
400
+ color: #cacaca
401
+ }
402
+
403
+ .withHelpTip input[type="text"], .withHelpTip input[type="password"] {
404
+ *overflow-x: hidden;
405
+ *overflow-y: hidden;
406
+ -ms-overflow-x: hidden;
407
+ -ms-overflow-y: hidden
408
+ }
409
+
410
+ .withHelpTip input.error, .lozenge-area .withHelpTip.error {
411
+ border: 1px solid #fed1d1;
412
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
413
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
414
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
415
+ position: relative
416
+ }
417
+
418
+ .withHelpTip input.warning, .lozenge-area .withHelpTip.warning {
419
+ border: 1px solid #F0C7BC;
420
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
421
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
422
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
423
+ position: relative
424
+ }
425
+
426
+ .withHelpTip .error-status {
427
+ margin: -18px 4px 4px 4px;
428
+ padding: 8px 8px 6px 8px;
429
+ z-index: 100;
430
+ width: 142px;
431
+ overflow-x: hidden;
432
+ overflow-wrap: break-word;
433
+ word-wrap: break-word;
434
+ font-size: 12px;
435
+ line-height: 15px;
436
+ background-color: #fed1d1;
437
+ border: 1px solid #e3a198;
438
+ color: #B8211D;
439
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
440
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
441
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
442
+ }
443
+
444
+ .withHelpTip .error-status a {
445
+ font-size: 12px;
446
+ line-height: 15px
447
+ }
448
+
449
+ .withHelpTip .error-bang > .error-status {
450
+ background-position-y: center;
451
+ border: none;
452
+ -webkit-box-shadow: none;
453
+ -moz-box-shadow: none;
454
+ box-shadow: none;
455
+ font-family: helvetica, arial, sans-serif;
456
+ font-size: 13px;
457
+ -webkit-font-smoothing: antialiased;
458
+ -moz-osx-font-smoothing: grayscale;
459
+ line-height: 19px;
460
+ margin: -8px 0 6px;
461
+ min-height: 16px;
462
+ padding: 0 0 0 23px
463
+ }
464
+
465
+ @media all {
466
+ .withHelpTip .error-bang > .error-status {
467
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
468
+ -webkit-background-size: 17px 16px;
469
+ -moz-background-size: 17px 16px;
470
+ -o-background-size: 17px 16px;
471
+ background-size: 17px 16px
472
+ }
473
+ }
474
+
475
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
476
+ html:not(.ie8) .withHelpTip .error-bang > .error-status {
477
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
478
+ -webkit-background-size: 17px 16px;
479
+ -moz-background-size: 17px 16px;
480
+ -o-background-size: 17px 16px;
481
+ background-size: 17px 16px
482
+ }
483
+ }
484
+
485
+ .withHelpTip .warning-status {
486
+ margin: -18px 4px 4px 4px;
487
+ padding: 8px 8px 6px 8px;
488
+ z-index: 100;
489
+ width: 142px;
490
+ overflow-x: hidden;
491
+ overflow-wrap: break-word;
492
+ word-wrap: break-word;
493
+ font-size: 12px;
494
+ line-height: 15px;
495
+ background-color: #F3E6C3;
496
+ border: 1px solid #F0C7BC;
497
+ color: #b72200
498
+ }
499
+
500
+ .withHelpTip .warning-status a {
501
+ font-size: 12px;
502
+ line-height: 15px
503
+ }
504
+
505
+ .withHelpTip .select-elem {
506
+ font-family: helvetica, arial, sans-serif;
507
+ border: 1px solid #cacaca;
508
+ height: 35px;
509
+ font-size: 16px;
510
+ font-weight: 300;
511
+ line-height: 22px;
512
+ max-width: 100%;
513
+ text-overflow: ellipsis;
514
+ -webkit-border-radius: 3px;
515
+ -moz-border-radius: 3px;
516
+ border-radius: 3px
517
+ }
518
+
519
+ .RegistrationForm .terms {
520
+ margin-bottom: 12px
521
+ }
522
+
523
+ .RegistrationForm .terms p {
524
+ font-size: 10px;
525
+ line-height: 14px;
526
+ margin: 10px 0px 2px 0px
527
+ }
528
+
529
+ .RegistrationForm .terms a {
530
+ text-decoration: none;
531
+ font-weight: bold
532
+ }
533
+
534
+ .RegistrationForm .username-messages {
535
+ color: #5bb52d;
536
+ font-weight: bold;
537
+ font-size: 14px;
538
+ margin: -8px 0 8px 0
539
+ }
540
+
541
+ .RegistrationForm .callout-box h3 {
542
+ color: #747474;
543
+ line-height: 18px;
544
+ font-family: helvetica, arial, sans-serif;
545
+ font-size: 13px;
546
+ font-style: normal;
547
+ font-variant: normal;
548
+ font-weight: normal;
549
+ text-align: left;
550
+ text-decoration: none;
551
+ text-indent: 0;
552
+ text-justify: auto;
553
+ text-outline: none;
554
+ text-overflow: clip;
555
+ text-shadow: none;
556
+ text-transform: none;
557
+ text-wrap: normal;
558
+ color: #3b3b3b;
559
+ font-size: 18px;
560
+ line-height: 24px;
561
+ margin-bottom: 16px;
562
+ border-bottom: none
563
+ }
564
+
565
+ .RegistrationForm .callout-box h3 span {
566
+ font-size: 14px;
567
+ float: right
568
+ }
569
+
570
+ .RegistrationForm .callout-box .switch-service {
571
+ margin-bottom: 8px
572
+ }
573
+
574
+ .RegistrationForm .callout-box .switch-service a {
575
+ text-decoration: none
576
+ }
577
+
578
+ .RegistrationForm .callout-box span.switch {
579
+ float: right;
580
+ color: #747474;
581
+ line-height: 18px;
582
+ font-family: helvetica, arial, sans-serif;
583
+ font-size: 13px;
584
+ font-style: normal;
585
+ font-variant: normal;
586
+ font-weight: normal;
587
+ text-align: left;
588
+ text-decoration: none;
589
+ text-indent: 0;
590
+ text-justify: auto;
591
+ text-outline: none;
592
+ text-overflow: clip;
593
+ text-shadow: none;
594
+ text-transform: none;
595
+ text-wrap: normal;
596
+ font-size: 14px
597
+ }
598
+
599
+ .RegistrationForm .callout-box input[type="text"], .RegistrationForm .callout-box textarea, .RegistrationForm .callout-box input[type="password"] {
600
+ width: 94%;
601
+ font-size: 18px;
602
+ line-height: 18px
603
+ }
604
+
605
+ .RegistrationForm .callout-box .captcha {
606
+ border: 1px solid #cacaca;
607
+ line-height: 0px
608
+ }
609
+
610
+ .RegistrationForm .callout-box .captcha input[type="text"] {
611
+ width: 100%;
612
+ border: none;
613
+ border-top: 1px solid #cacaca;
614
+ margin: 0px;
615
+ padding-left: 0;
616
+ padding-right: 0
617
+ }
618
+
619
+ .RegistrationForm .callout-box .captcha div.captcha-image {
620
+ height: 40px;
621
+ position: relative;
622
+ background-color: #d8d8d8
623
+ }
624
+
625
+ .RegistrationForm .callout-box .captcha div.captcha-image img {
626
+ height: 32px;
627
+ margin-top: 4px;
628
+ left: 50%;
629
+ position: absolute;
630
+ margin-left: -64px;
631
+ border: 1px solid #acacac
632
+ }
633
+
634
+ .RegistrationForm .callout-box .captcha-errors div.error-status {
635
+ margin-top: -1px
636
+ }
637
+
638
+ .RegistrationForm .callout-box .error-status {
639
+ width: 91%
640
+ }
641
+
642
+ .RegistrationForm .callout-box .captcha input[type="text"] {
643
+ width: 300px;
644
+ padding-left: 8px;
645
+ padding-right: 8px
646
+ }
647
+
648
+ @media only screen and (min-width: 930px) {
649
+ .RegistrationForm .callout-box .captcha input[type="text"] {
650
+ width: 300px
651
+ }
652
+ }
653
+
654
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
655
+ .RegistrationForm .callout-box .captcha input[type="text"] {
656
+ width: 268px
657
+ }
658
+ }
659
+
660
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
661
+ .RegistrationForm .callout-box .captcha input[type="text"] {
662
+ width: 300px
663
+ }
664
+ }
665
+
666
+ @media only screen and (max-width: 479px) {
667
+ .RegistrationForm .callout-box .captcha input[type="text"] {
668
+ width: 209px
669
+ }
670
+ }
671
+
672
+ @media only screen and (max-width: 479px) {
673
+ .RegistrationForm .captcha {
674
+ width: 225px
675
+ }
676
+ }
677
+
678
+ .rtl #registration {
679
+ text-align: right
680
+ }
681
+
682
+ .rtl #registration .error-status {
683
+ direction: rtl
684
+ }
685
+
686
+ .rtl #registration label {
687
+ direction: rtl
688
+ }
689
+
690
+ .rtl .terms p {
691
+ text-align: right
692
+ }
693
+
694
+ .rtl .RegistrationForm .callout-box .reg-header h3 {
695
+ text-align: right
696
+ }
697
+
698
+ .rtl .RegistrationForm .callout-box span.switch {
699
+ float: left
700
+ }
701
+
702
+ .rtl label {
703
+ text-align: right
704
+ }
705
+
706
+ .supertext {
707
+ font-family: 'caecilia-light-italic';
708
+ -webkit-font-smoothing: antialiased;
709
+ -moz-osx-font-smoothing: grayscale;
710
+ font-size: 18px;
711
+ line-height: 24px
712
+ }
713
+
714
+ @media all {
715
+ .testResult.badPass {
716
+ background: #fff url("/assets/kirgudu_sso/authentications/base/images/password-weak.png") right no-repeat;
717
+ -webkit-background-size: 32px 38px;
718
+ -moz-background-size: 32px 38px;
719
+ -o-background-size: 32px 38px;
720
+ background-size: 32px 38px
721
+ }
722
+ }
723
+
724
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
725
+ html:not(.ie8) .testResult.badPass {
726
+ background: #fff url("/assets/kirgudu_sso/authentications/base/images/password-weak@2x.png") right no-repeat;
727
+ -webkit-background-size: 32px 38px;
728
+ -moz-background-size: 32px 38px;
729
+ -o-background-size: 32px 38px;
730
+ background-size: 32px 38px
731
+ }
732
+ }
733
+
734
+ @media all {
735
+ .testResult.validPass {
736
+ background: #fff url("/assets/kirgudu_sso/authentications/base/images/password-weak.png") right no-repeat;
737
+ -webkit-background-size: 32px 38px;
738
+ -moz-background-size: 32px 38px;
739
+ -o-background-size: 32px 38px;
740
+ background-size: 32px 38px
741
+ }
742
+ }
743
+
744
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
745
+ html:not(.ie8) .testResult.validPass {
746
+ background: #fff url("/assets/kirgudu_sso/authentications/base/images/password-weak@2x.png") right no-repeat;
747
+ -webkit-background-size: 32px 38px;
748
+ -moz-background-size: 32px 38px;
749
+ -o-background-size: 32px 38px;
750
+ background-size: 32px 38px
751
+ }
752
+ }
753
+
754
+ @media all {
755
+ .testResult.strongPass {
756
+ background: #fff url("/assets/kirgudu_sso/authentications/base/images/password-ok.png") right no-repeat;
757
+ -webkit-background-size: 32px 38px;
758
+ -moz-background-size: 32px 38px;
759
+ -o-background-size: 32px 38px;
760
+ background-size: 32px 38px
761
+ }
762
+ }
763
+
764
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
765
+ html:not(.ie8) .testResult.strongPass {
766
+ background: #fff url("/assets/kirgudu_sso/authentications/base/images/password-ok@2x.png") right no-repeat;
767
+ -webkit-background-size: 32px 38px;
768
+ -moz-background-size: 32px 38px;
769
+ -o-background-size: 32px 38px;
770
+ background-size: 32px 38px
771
+ }
772
+ }
773
+
774
+ .passMsg {
775
+ margin-top: -8px;
776
+ margin-bottom: 8px;
777
+ width: 100%
778
+ }
779
+
780
+ .passMsg.noPass {
781
+ display: none
782
+ }
783
+
784
+ .passMsg.invalidPass {
785
+ display: none
786
+ }
787
+
788
+ .passMsg.shortPass {
789
+ display: none
790
+ }
791
+
792
+ .passMsg.badPass, .passMsg.validPass {
793
+ color: #edb338
794
+ }