thecore_ui_rails_admin 3.4.1 → 3.4.2
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: 2f2dbc04f7d702990f70e5e1283ae6ee123d230309a4f11e1eb4a9301ac42b3e
|
4
|
+
data.tar.gz: 389eeb46854cb9d4d1d238631690a750975f1b11868540ebbe56fc4565749d70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef1fc5f9181a819872bbcf97f9592911ef8643339371c6df063cf0b101b97f9daef5b6f52289c1f927c3b6a4bc5063c363181934cd0214ddb2c216e2002c1547
|
7
|
+
data.tar.gz: 0170a75ca864b1f7bb938128c32bdde3356f0a0625517e4431caa32dbf995e504aff2c8c146329be8a9bcdb56c9d68e03465e0372a7e8c4639d3ac10ba3ebaf6
|
@@ -6,9 +6,28 @@ body {
|
|
6
6
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
7
7
|
}
|
8
8
|
|
9
|
-
form.new_user
|
9
|
+
form.new_user,
|
10
|
+
form.button_to {
|
10
11
|
display: flex;
|
11
12
|
flex-direction: column;
|
13
|
+
align-items: center;
|
14
|
+
justify-content: center;
|
15
|
+
}
|
16
|
+
|
17
|
+
// The buttons with type submit inside a form with class button_to
|
18
|
+
form.button_to button[type=submit] {
|
19
|
+
// Make it like the input[type=submit]
|
20
|
+
background-color: $primary;
|
21
|
+
color: white;
|
22
|
+
border: 0;
|
23
|
+
border-radius: 2em;
|
24
|
+
padding: 0.5em 1em;
|
25
|
+
font-size: 1em;
|
26
|
+
font-weight: 600;
|
27
|
+
cursor: pointer;
|
28
|
+
box-shadow: 0 0 0.5em rgba($primary, 0.5);
|
29
|
+
transition: background-color 0.3s, box-shadow 0.3s;
|
30
|
+
width: 70%;
|
12
31
|
}
|
13
32
|
|
14
33
|
label {
|
@@ -30,6 +49,10 @@ label {
|
|
30
49
|
background-color: white !important;
|
31
50
|
max-width: 1136px;
|
32
51
|
|
52
|
+
div.logos, div.login-methods {
|
53
|
+
width: 50%;
|
54
|
+
}
|
55
|
+
|
33
56
|
.field,
|
34
57
|
.actions {
|
35
58
|
width: 70%;
|
@@ -62,7 +85,7 @@ label {
|
|
62
85
|
flex-direction: column;
|
63
86
|
align-items: center;
|
64
87
|
justify-content: center;
|
65
|
-
flex-basis: 50%;
|
88
|
+
// flex-basis: 50%;
|
66
89
|
flex-grow: 0;
|
67
90
|
}
|
68
91
|
}
|