explorak5_login_prueba 7.5 → 7.7

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