explorak5_canvas_login 0.9.0 → 1.1.0
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 +4 -4
- data/lib/explorak5_canvas_login/app/stylesheets/login.scss +54 -0
- data/lib/explorak5_canvas_login/app/stylesheets/navbar.scss +7 -0
- data/lib/explorak5_canvas_login/app/views/login/_login_content.html.erb +1 -57
- data/lib/explorak5_canvas_login/app/views/navbar/_new_nav_header.html.erb +2 -9
- data/lib/explorak5_canvas_login/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4968d18d6fa6306c6b88bf702c1c473fe597288da4a09d5099385fa6a39b4941
|
4
|
+
data.tar.gz: ed978e7760ce707ac99c2b91b31620811d462cc72bdc575c66f5667ae2c261fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63a3bdac2d7d59a23a619422cc23ac38a1ef9f221cb699a79cd21ae96ba5214d6494fd88367a88ccbdc3a5635d2d42d7606a4aa875b74507c691da875c4a43af
|
7
|
+
data.tar.gz: abd6358ef98da8c2388af5264cc87764764cb0e30dd12cbe22566f40693c351942b461a06eb6f7d293264dc6b25c13398ce4c3c84fcbf6a308ec0b3e9975d60b
|
@@ -0,0 +1,54 @@
|
|
1
|
+
body.ic-Login-Body {
|
2
|
+
background-image: url("/images/images_k5/fondo.png") !important;
|
3
|
+
}
|
4
|
+
|
5
|
+
.ic-Login__title {
|
6
|
+
text-align: center;
|
7
|
+
}
|
8
|
+
|
9
|
+
|
10
|
+
.login_links {
|
11
|
+
display: grid;
|
12
|
+
float: right;
|
13
|
+
grid-template-rows: 25px 25px 25px;
|
14
|
+
grid-row-gap: 75px;
|
15
|
+
margin-right: 50px;
|
16
|
+
width: 5%;
|
17
|
+
}
|
18
|
+
|
19
|
+
.ic-Form-control--login .ic-Label {
|
20
|
+
color: var(--ic-brand-Login-Content-label-text-color) !important;
|
21
|
+
}
|
22
|
+
|
23
|
+
.ic-Login__body__error {
|
24
|
+
display: block;
|
25
|
+
position:relative;
|
26
|
+
top: auto;
|
27
|
+
#{direction(left)}: auto;
|
28
|
+
max-width: 400px;
|
29
|
+
}
|
30
|
+
|
31
|
+
.btn-img-login-espol {
|
32
|
+
float: left;
|
33
|
+
width: 6%;
|
34
|
+
margin-left: 30px;
|
35
|
+
margin-top: 10px;
|
36
|
+
background-repeat: no-repeat;
|
37
|
+
height: 120px;
|
38
|
+
background-position: center;
|
39
|
+
background-size: contain;
|
40
|
+
background-color: transparent;
|
41
|
+
border: none;
|
42
|
+
}
|
43
|
+
|
44
|
+
|
45
|
+
.btn-img-login-vinculos {
|
46
|
+
width: auto;
|
47
|
+
margin-top: 15px;
|
48
|
+
background-repeat: no-repeat;
|
49
|
+
height: 120px;
|
50
|
+
background-position: center;
|
51
|
+
background-size: contain;
|
52
|
+
background-color: transparent;
|
53
|
+
border: none;
|
54
|
+
}
|
@@ -1,61 +1,5 @@
|
|
1
|
-
|
1
|
+
@import 'login';
|
2
2
|
|
3
|
-
body.ic-Login-Body {
|
4
|
-
background-image: url("/images/images_k5/fondo.png") !important;
|
5
|
-
}
|
6
|
-
|
7
|
-
.ic-Login__title {
|
8
|
-
text-align: center;
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
.login_links {
|
13
|
-
display: grid;
|
14
|
-
float: right;
|
15
|
-
grid-template-rows: 25px 25px 25px;
|
16
|
-
grid-row-gap: 75px;
|
17
|
-
margin-right: 50px;
|
18
|
-
width: 5%;
|
19
|
-
}
|
20
|
-
|
21
|
-
.ic-Form-control--login .ic-Label {
|
22
|
-
color: var(--ic-brand-Login-Content-label-text-color) !important;
|
23
|
-
}
|
24
|
-
|
25
|
-
.ic-Login__body__error {
|
26
|
-
display: block;
|
27
|
-
position:relative;
|
28
|
-
top: auto;
|
29
|
-
#{direction(left)}: auto;
|
30
|
-
max-width: 400px;
|
31
|
-
}
|
32
|
-
|
33
|
-
.btn-img-login-espol {
|
34
|
-
float: left;
|
35
|
-
width: 6%;
|
36
|
-
margin-left: 30px;
|
37
|
-
margin-top: 10px;
|
38
|
-
background-repeat: no-repeat;
|
39
|
-
height: 120px;
|
40
|
-
background-position: center;
|
41
|
-
background-size: contain;
|
42
|
-
background-color: transparent;
|
43
|
-
border: none;
|
44
|
-
}
|
45
|
-
|
46
|
-
|
47
|
-
.btn-img-login-vinculos {
|
48
|
-
width: auto;
|
49
|
-
margin-top: 15px;
|
50
|
-
background-repeat: no-repeat;
|
51
|
-
height: 120px;
|
52
|
-
background-position: center;
|
53
|
-
background-size: contain;
|
54
|
-
background-color: transparent;
|
55
|
-
border: none;
|
56
|
-
}
|
57
|
-
|
58
|
-
</style>
|
59
3
|
<%
|
60
4
|
# Copyright (C) 2015 - present Instructure, Inc.
|
61
5
|
#
|
@@ -1,12 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
background-image: url("/images/images_k5/logoexplora.png") !important;
|
4
|
-
}
|
5
|
-
.ic-app-header, .no-print {
|
6
|
-
background-color: #f4f3f3; !important;
|
7
|
-
}
|
8
|
-
|
9
|
-
</style>
|
1
|
+
@import 'navbar';
|
2
|
+
|
10
3
|
<%
|
11
4
|
# Copyright (C) 2015 - present Instructure, Inc.
|
12
5
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: explorak5_canvas_login
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Explorak5
|
@@ -19,6 +19,8 @@ executables: []
|
|
19
19
|
extensions: []
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
|
+
- lib/explorak5_canvas_login/app/stylesheets/login.scss
|
23
|
+
- lib/explorak5_canvas_login/app/stylesheets/navbar.scss
|
22
24
|
- lib/explorak5_canvas_login/app/views/login/_login_content.html.erb
|
23
25
|
- lib/explorak5_canvas_login/app/views/navbar/_new_nav_header.html.erb
|
24
26
|
- lib/explorak5_canvas_login/version.rb
|