explorak5_login_prueba 7.5 → 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a92e232bbf5d527b21865bc4597f6d1fa9c5de494f2c5fe5c5525977e0ae2c35
|
4
|
+
data.tar.gz: f4993af0f80585071787591aaafc3de88ff10e5417d103cad9e5e22b357b81ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa852d509eebe71649187a8ad2547a5bf84212cc62eeb692b4ce48ebdc38cd5f876649a89f3c55f2b48ea959da5265a1841c14624a95b67ea4d79a72b0b4c95f
|
7
|
+
data.tar.gz: 730dbf71c8218338695454100ed25404fc3a47d1e07112cf59172dc5e9eb9f47b61ca28866fa5f8b23325b646d80053b2ac904415ded9f314ff6934e0fc32928
|
@@ -1,205 +1,4 @@
|
|
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
4
|
.login_links {
|
@@ -241,18 +40,6 @@ body:not(.course-menu-expanded) {
|
|
241
40
|
border: none;
|
242
41
|
}
|
243
42
|
|
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
43
|
.btn-img-login-vinculos {
|
257
44
|
width: auto;
|
258
45
|
margin-top: 15px;
|
@@ -264,284 +51,6 @@ body:not(.course-menu-expanded) {
|
|
264
51
|
border: none;
|
265
52
|
}
|
266
53
|
|
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
54
|
</style>
|
546
55
|
<%
|
547
56
|
# Copyright (C) 2015 - present Instructure, Inc.
|
@@ -589,11 +98,9 @@ body:not(.course-menu-expanded) {
|
|
589
98
|
<div class="ic-Login__content">
|
590
99
|
<div class="ic-Login__innerContent">
|
591
100
|
|
592
|
-
|
593
|
-
|
594
|
-
<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' %>
|
595
103
|
</div>
|
596
|
-
</div>
|
597
104
|
|
598
105
|
<div class="ic-Login__body">
|
599
106
|
<%= render "shared/login_fft_helper" %>
|