explorak5_login_prueba 7.4 → 7.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f57da1bcbcb7722c2fe2cdebb71210778fad36572b92aa22045c69030ee0ddf
4
- data.tar.gz: 584eb6932e649e6b0a3b1f0140fe713f3c63b02e369c91895809a51174cfb673
3
+ metadata.gz: a92e232bbf5d527b21865bc4597f6d1fa9c5de494f2c5fe5c5525977e0ae2c35
4
+ data.tar.gz: f4993af0f80585071787591aaafc3de88ff10e5417d103cad9e5e22b357b81ce
5
5
  SHA512:
6
- metadata.gz: 3267aa8c0c4325a1a2552ac373f5c50c8624a6d8c2062f53e676ec90338a230389b0e0a0599f7eb3713976eaf97e7c127c06cfe351794995ca9fc038c95ebac5
7
- data.tar.gz: fb94527d2134f6bd61725c979e37d53937e5e45759484378490831a096ff33d79219f97979e882b75ca6ca51fde7fe05872d494454460409f693a8f594defd50
6
+ metadata.gz: fa852d509eebe71649187a8ad2547a5bf84212cc62eeb692b4ce48ebdc38cd5f876649a89f3c55f2b48ea959da5265a1841c14624a95b67ea4d79a72b0b4c95f
7
+ data.tar.gz: 730dbf71c8218338695454100ed25404fc3a47d1e07112cf59172dc5e9eb9f47b61ca28866fa5f8b23325b646d80053b2ac904415ded9f314ff6934e0fc32928
@@ -1,3 +1,57 @@
1
+ <style>
2
+ // Agregado por explora k5
3
+
4
+ .login_links {
5
+ display: grid;
6
+ float: right;
7
+ grid-template-rows: 25px 25px 25px;
8
+ grid-row-gap: 75px;
9
+ margin-right: 50px;
10
+ width: 5%;
11
+ }
12
+
13
+ .btn-img-logout-text {
14
+ text-decoration: underline;
15
+ color: white;
16
+ background: transparent;
17
+ border: none;
18
+ }
19
+
20
+ .btn-img-logout {
21
+ background-size: 100px;
22
+ background-repeat: no-repeat;
23
+ height: 125px;
24
+ width: 125px;
25
+ background-color: transparent;
26
+ border: none;
27
+ background-position: center;
28
+ }
29
+
30
+ .btn-img-login-espol {
31
+ float: left;
32
+ width: 6%;
33
+ margin-left: 30px;
34
+ margin-top: 10px;
35
+ background-repeat: no-repeat;
36
+ height: 120px;
37
+ background-position: center;
38
+ background-size: contain;
39
+ background-color: transparent;
40
+ border: none;
41
+ }
42
+
43
+ .btn-img-login-vinculos {
44
+ width: auto;
45
+ margin-top: 15px;
46
+ background-repeat: no-repeat;
47
+ height: 120px;
48
+ background-position: center;
49
+ background-size: contain;
50
+ background-color: transparent;
51
+ border: none;
52
+ }
53
+
54
+ </style>
1
55
  <%
2
56
  # Copyright (C) 2015 - present Instructure, Inc.
3
57
  #
@@ -44,11 +98,9 @@
44
98
  <div class="ic-Login__content">
45
99
  <div class="ic-Login__innerContent">
46
100
 
47
- <div class="ic-Login-header">
48
- <div class="ic-Login-header__logo">
49
- <img src='/images/images_k5/logo_k5.png' style="max-width: 75%"/>
101
+ <div class="ic-Login-header">
102
+ <%= render :partial => 'login/shared/header_logo' %>
50
103
  </div>
51
- </div>
52
104
 
53
105
  <div class="ic-Login__body">
54
106
  <%= render "shared/login_fft_helper" %>
@@ -1,542 +0,0 @@
1
- /*
2
- * Copyright (C) 2015 - present Instructure, Inc.
3
- *
4
- * This file is part of Canvas.
5
- *
6
- * Canvas is free software: you can redistribute it and/or modify it under
7
- * the terms of the GNU Affero General Public License as published by the Free
8
- * Software Foundation, version 3 of the License.
9
- *
10
- * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
11
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
- * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
13
- * details.
14
- *
15
- * You should have received a copy of the GNU Affero General Public License along
16
- * with this program. If not, see <http://www.gnu.org/licenses/>.
17
- */
18
-
19
- /// Below are the shared styles for our content pieces. Because our layout
20
- /// changes based on whether our course menu is open or shut
21
- /// we needed to ensure we share the right styles with these sections, but
22
- /// still enforce different breakpoints when needed
23
-
24
- @mixin shared-main-content {display: flex;}
25
- @mixin shared-primary {
26
- flex: 1;
27
- // Fix Firefox and IE Edge issues with contents breaking out of flex container
28
- // min-width: 1px;
29
- min-width: 90%;
30
- }
31
- @mixin shared-secondary {
32
- width: $ic-right-side-width;
33
- padding-#{direction(left)}: $ic-sp*2;
34
- }
35
-
36
- $ic-left-side-width: $ic-sp*16;
37
-
38
-
39
- body:not(.ic-no-flex-layout):not(.embedded) .ic-app-main-content {
40
- box-sizing: border-box;
41
- flex: 1;
42
- // Fix Firefox and IE Edge issues with contents breaking out of flex container
43
- min-width: 80%;
44
- // Agregado por explora k5
45
- // padding-left: 30px;
46
- // margin-left: 3%;
47
-
48
- @include mobile-only {
49
- & {
50
- min-width: 1px;
51
- padding-left: 0%;
52
- margin-left: 0.25%;
53
- margin-right: 0.25%;
54
- }
55
- }
56
- }
57
-
58
- .ic-Layout-contentWrapper {
59
- box-sizing: border-box;
60
- }
61
-
62
- .ic-Layout-contentMain {
63
- padding: $ic-sp*2;
64
- @include mobile-only {
65
- & {
66
- // padding-#{direction(left)}: $ic-sp;
67
- // padding-#{direction(right)}: $ic-sp;
68
- padding-#{direction(left)}: $ic-sp*0;
69
- padding-#{direction(right)}: $ic-sp*0;
70
- }
71
- }
72
-
73
-
74
-
75
- body.is-inside-submission-frame & {
76
- padding-#{direction(left)}: $ic-sp;
77
- padding-#{direction(right)}: $ic-sp;
78
- }
79
-
80
- body.no-headers & {
81
- padding-top: 0;
82
- }
83
-
84
- body.embedded & {
85
- padding: 0 1em 1em;
86
- }
87
-
88
- body.ic-framed-lti-tool & {
89
- padding: 0 $ic-sp*2;
90
- }
91
-
92
- body.ic-full-screen-lti-tool & {
93
- padding: 0;
94
- }
95
- }
96
-
97
- .ic-app-main-content__secondary {
98
- box-sizing: border-box;
99
- min-width: 1px;
100
- padding: $ic-sp*2;
101
- @include mobile-only {
102
- & {
103
- padding-#{direction(left)}: $ic-sp;
104
- padding-#{direction(right)}: $ic-sp;
105
- }
106
- }
107
-
108
- position: relative; // note: this is also set for #right-side-wrapper in _#right-side.scss
109
- // prevent safari bug where content disappears on scroll
110
- -webkit-transform: translate3d(0, 0, 0);
111
- }
112
-
113
- /// Layout when the course nav IS OPEN
114
- body.course-menu-expanded {
115
- &:not(.ic-no-flex-layout):not(.embedded) .ic-app-main-content {
116
- @include breakpoint(desktop--nav-open) { @include shared-main-content; }
117
- }
118
- &:not(.ic-no-flex-layout):not(.embedded) .ic-Layout-contentWrapper {
119
- @include breakpoint(desktop--nav-open) {
120
- @include shared-primary;
121
- }
122
- }
123
- .ic-app-main-content__secondary {
124
- @include breakpoint(desktop--nav-open) {
125
- @include shared-secondary;
126
- }
127
- }
128
- }
129
-
130
- /// Layout when the course nav IS CLOSED
131
- body:not(.course-menu-expanded) {
132
- &:not(.ic-no-flex-layout):not(.embedded) .ic-app-main-content {
133
- @include breakpoint(desktop) { @include shared-main-content; }
134
- }
135
- &:not(.ic-no-flex-layout):not(.embedded) .ic-Layout-contentWrapper {
136
- @include breakpoint(desktop) {
137
- @include shared-primary;
138
- }
139
- }
140
- .ic-app-main-content__secondary {
141
- @include breakpoint(desktop) {
142
- @include shared-secondary;
143
- }
144
- }
145
- }
146
-
147
- .ic-app-footer {
148
- .terms-of-service__link {
149
- a {
150
- @include ic-focus-base;
151
- &:focus {
152
- @include ic-focus-variant;
153
- }
154
- }
155
- margin-top: -2px !important;
156
- color: var(--ic-brand-font-color-dark-lightened-15) !important;
157
- }
158
- box-sizing: border-box;
159
- padding: $ic-sp 0;
160
- margin: 0 $ic-sp*2;
161
- border-top: 1px solid $ic-border-light;
162
- @include breakpoint(desktop) {
163
- display: flex;
164
- align-items: center;
165
- }
166
- body.modal & {
167
- margin: 0;
168
- padding: $ic-sp $ic-sp*2;
169
- }
170
- }
171
- .ic-app-footer__links {
172
- flex: 1;
173
- display: flex;
174
- a {
175
- color: $ic-font-color--subdued;
176
- margin-#{direction(right)}: $ic-sp;
177
- @include fontSize($ic-font-size--xsmall);
178
- }
179
- @include breakpoint(desktop) {
180
- justify-content: flex-end;
181
- a { margin-#{direction(right)}: 0; margin-#{direction(left)}: $ic-sp; }
182
- }
183
-
184
- body.responsive_awareness & {
185
- a {
186
- @include mobile-only {
187
- display: inline-block;
188
- width: 100%;
189
- }
190
- }
191
- @include mobile-only {
192
- display: block;
193
- }
194
- }
195
- }
196
-
197
- .ic-app {
198
- box-sizing: border-box;
199
- min-height: 100vh;
200
- }
201
-
202
- // Agregado por explora k5
203
-
204
- .login_links {
205
- display: grid;
206
- float: right;
207
- grid-template-rows: 25px 25px 25px;
208
- grid-row-gap: 75px;
209
- margin-right: 50px;
210
- width: 5%;
211
- }
212
-
213
- .btn-img-logout-text {
214
- text-decoration: underline;
215
- color: white;
216
- background: transparent;
217
- border: none;
218
- }
219
-
220
- .btn-img-logout {
221
- background-size: 100px;
222
- background-repeat: no-repeat;
223
- height: 125px;
224
- width: 125px;
225
- background-color: transparent;
226
- border: none;
227
- background-position: center;
228
- }
229
-
230
- .btn-img-login-espol {
231
- float: left;
232
- width: 6%;
233
- margin-left: 30px;
234
- margin-top: 10px;
235
- background-repeat: no-repeat;
236
- height: 120px;
237
- background-position: center;
238
- background-size: contain;
239
- background-color: transparent;
240
- border: none;
241
- }
242
-
243
- .btn-img-login-pizarra {
244
- width: auto;
245
- background-repeat: no-repeat;
246
- height: 120px;
247
- background-position: center;
248
- background-size: contain;
249
- background-color: transparent;
250
- border: none;
251
- margin-top: 10px;
252
- margin-bottom: 20px;
253
- }
254
-
255
- .btn-img-login-vinculos {
256
- width: auto;
257
- margin-top: 15px;
258
- background-repeat: no-repeat;
259
- height: 120px;
260
- background-position: center;
261
- background-size: contain;
262
- background-color: transparent;
263
- border: none;
264
- }
265
-
266
- .login_links-mobile {
267
- display: grid;
268
- float: right;
269
- grid-template-rows: 25px 25px 25px;
270
- grid-row-gap: 8px;
271
- margin-top: -40px;
272
- width: 15%;
273
- }
274
-
275
- .btn-img-login-espol-mobile {
276
- float: left;
277
- width: 12%;
278
- background-repeat: no-repeat;
279
- background-position: center;
280
- background-size: contain;
281
- background-color: transparent;
282
- border: none;
283
- height: 60px;
284
- }
285
-
286
- .btn-img-login-pizarra-mobile {
287
- width: auto;
288
- background-repeat: no-repeat;
289
- background-position: center;
290
- background-size: contain;
291
- background-color: transparent;
292
- border: none;
293
- }
294
-
295
- .btn-img-login-vinculos-mobile {
296
- width: auto;
297
- background-repeat: no-repeat;
298
- background-position: center;
299
- background-size: contain;
300
- background-color: transparent;
301
- border: none;
302
- }
303
-
304
- @include mobile-only {
305
- .btn-img-login-espol {
306
- float: left;
307
- width: 10%;
308
- margin-left: 30px;
309
- margin-top: 10px;
310
- background-repeat: no-repeat;
311
- height: 120px;
312
- background-position: center;
313
- background-size: contain;
314
- background-color: transparent;
315
- border: none;
316
- }
317
-
318
- .login_links {
319
- display: grid;
320
- float: right;
321
- grid-template-rows: 25px 25px 25px;
322
- grid-row-gap: 75px;
323
- margin-right: 50px;
324
- width: 8%;
325
- }
326
- }
327
-
328
- .ic-Layout-wrapper {
329
- box-sizing: border-box;
330
- min-height: 100vh;
331
-
332
- body:not(.full-width):not(.outcomes):not(.body--login-confirmation) & {
333
- // We want to add a max size to most pages in canvas
334
- // unless it's a full-width app
335
- max-width: 1366px;
336
- }
337
-
338
- body:not(.ic-no-flex-layout):not(.embedded) & {
339
- display: flex;
340
- flex-direction: column;
341
- }
342
-
343
- @include desktop-only {
344
- body:not(.no-headers) & {
345
- margin-#{direction(left)}: $ic-header-primary-width - 30;
346
- }
347
-
348
- body:not(.no-headers).primary-nav-expanded & {
349
- margin-#{direction(left)}: $ic-header-primary-width;
350
- }
351
- }
352
-
353
- body.embedded & {
354
- height: 100%;
355
- }
356
- }
357
-
358
- .ic-Layout-columns {
359
- position: relative;
360
- box-sizing: border-box;
361
- z-index: 10;
362
-
363
- body:not(.ic-no-flex-layout):not(.embedded):not(.is-inside-submission-frame) & {
364
- flex: 1 0 auto;
365
- // Fix Firefox and IE Edge issues with contents breaking out of flex container
366
- min-width: 1px;
367
- }
368
-
369
- @include desktop-only {
370
- body.course-menu-expanded:not(.ic-no-flex-layout):not(.embedded):not(.is-inside-submission-frame) & {
371
- margin-#{direction(left)}: $ic-left-side-width;
372
- // margin-#{direction(left)}: 90px;
373
- // // Agregado por explora k5
374
- // margin-right: -7%;
375
-
376
- .ic-Layout-watermark {
377
- #{direction(left)}: -$ic-left-side-width;
378
- // #{direction(left)}: 90px;
379
- }
380
- }
381
- }
382
-
383
- body.ic-no-flex-layout & {
384
- // min-height: 100vh;
385
- }
386
-
387
- body.no-headers &,
388
- body.embedded & {
389
- margin: 0;
390
- border: 0 none;
391
- background-color: transparent;
392
- }
393
-
394
- body.embedded & {
395
- min-height: 0;
396
- height: 100%;
397
- }
398
- }
399
-
400
- .ic-Layout-watermark {
401
- position: absolute;
402
- #{direction(left)}: 0;
403
- bottom: 0;
404
- z-index: -1;
405
- width: 100%;
406
- height: 100%;
407
- opacity: var(--ic-brand-watermark-opacity);
408
- background-image: var(--ic-brand-watermark);
409
- background-repeat: no-repeat;
410
- background-position: direction(left) bottom;
411
- }
412
-
413
- .ic-app-course-menu {
414
- transition: transform 1s ease-in-out;
415
- transition-delay: 0.75s;
416
- transform: translate3d(0,0,0);
417
- box-sizing: border-box;
418
- position: absolute;
419
- top: 0; #{direction(right)}: 99.9999%;
420
- // top: 0; #{direction(right)}: 100%;
421
- width: $ic-left-side-width;
422
- // padding: direction-sides($ic-sp*2 $ic-sp $ic-sp $ic-sp*2);
423
- padding: direction-sides($ic-sp*2 $ic-sp $ic-sp $ic-sp*3);
424
- opacity: 0;
425
- body.course-menu-expanded & {
426
- opacity: 1;
427
- transform: translate3d(0,0,0);
428
- }
429
- &.ic-sticky-on {
430
- bottom: 0;
431
- padding: 0;
432
- }
433
- // account for the course term showing in the left-hand sub-nav
434
- #section-tabs-header-subtitle {
435
- padding: direction-sides(0 0 $ic-sp $ic-sp);
436
- }
437
- }
438
-
439
- .ic-sticky-frame {
440
- position: sticky;
441
- top: 0;
442
- max-height: 100vh;
443
- padding: direction-sides($ic-sp*2 $ic-sp $ic-breadcrumbs-height $ic-sp*2);
444
- box-sizing: border-box;
445
- overflow-y: auto;
446
- overscroll-behavior-y: contain;
447
- }
448
-
449
- .ic-sticky-frame.has-scrollbar {
450
- padding: direction-sides($ic-sp*2 $ic-sp*0.2 $ic-breadcrumbs-height $ic-sp*2);
451
- & .nav-icon{
452
- padding: 0 3px;
453
- }
454
- }
455
-
456
- .ic-app-nav-toggle-and-crumbs {
457
- display: flex;
458
- align-items: center;
459
- //border-bottom: 1px solid $ic-border-light;
460
- margin: 0 $ic-sp*2;
461
- min-height: $ic-breadcrumbs-height;
462
- box-sizing: border-box;
463
- // Agregado por explora k5
464
- max-width: 1000px;
465
-
466
-
467
- .right-of-crumbs {
468
- display: flex;
469
- flex: 1;
470
- flex-direction: row-reverse;
471
- }
472
-
473
- .right-of-crumbs > * {
474
- margin-left: 12px;
475
- }
476
- }
477
-
478
- .ic-app-course-nav-toggle {
479
- margin-#{direction(right)}: $ic-sp;
480
- padding: 0;
481
- width: $ic-sp*3; height: ($ic-sp*3) - ($ic-sp*0.5);
482
- // Agregado por explora k5
483
- margin-top: 2%;
484
- @include overwrite-default-icon-size(1.5rem);
485
- i[class*=icon-], i[class^=icon-] { margin-#{direction(right)}: 0; }
486
- }
487
-
488
- .ic-app-crumbs {
489
- flex: 1;
490
- display: flex;
491
- align-items: center;
492
- box-sizing: border-box;
493
- // Agregado por explora k5
494
- max-width: 900px;
495
- }
496
-
497
- // Agregado por explora k5
498
-
499
- @include mobile-only {
500
-
501
- body:not(.ic-no-flex-layout):not(.embedded) .ic-app-main-content{
502
- padding: 0;
503
- }
504
-
505
- #assignment_show{
506
- display: flex;
507
- flex-direction:column;
508
- padding-right: 1em;
509
- padding-left: 1em;
510
- }
511
-
512
- #assignment_show .assignment-buttons{
513
- order: 6;
514
- }
515
-
516
- body:not(.ic-no-flex-layout):not(.embedded) .ic-app-main-content {
517
- padding-left: 0px;
518
- }
519
-
520
- li.assignment.sort-disabled.search_show{
521
- width: 100%;
522
- margin: 0;
523
- padding-right: 0;
524
- padding-left: 13px;
525
- flex-basis: max-content;
526
- margin-top: 1em;
527
- margin-bottom: 2em;
528
- }
529
-
530
- #assignment_show .assignment-title{
531
- margin-bottom: 0!important;
532
- .title{
533
- margin: 0!important;
534
- }
535
- }
536
-
537
- .ic-Layout-contentMain{
538
- padding-top: 0;
539
- margin-left: 3% !important;
540
- }
541
-
542
- }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Explorak5LoginPrueba
4
- VERSION = "7.4"
4
+ VERSION = "7.6"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: explorak5_login_prueba
3
3
  version: !ruby/object:Gem::Version
4
- version: '7.4'
4
+ version: '7.6'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ibarra