active_admin_with_bootstrap_4 0.1.0 → 0.1.1
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/active_admin_with_bootstrap_4/version.rb +1 -1
- data/vendor/assets/javascripts/active_admin_with_bootstrap_4.js +3 -0
- data/vendor/assets/javascripts/bootstrap.js +4435 -0
- data/vendor/assets/javascripts/jquery.js +10253 -0
- data/vendor/assets/javascripts/popper.js +2589 -0
- data/vendor/assets/stylesheets/active_admin_with_bootstrap_4.scss +3 -0
- data/vendor/assets/stylesheets/bootstrap.css +10038 -0
- data/vendor/assets/stylesheets/components/header.scss +24 -0
- data/vendor/assets/stylesheets/components/login.scss +33 -0
- metadata +10 -2
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#header {
|
|
2
|
+
height: 50px;
|
|
3
|
+
background-color: #d81414 !important;
|
|
4
|
+
text-shadow: none;
|
|
5
|
+
font-size: 18px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
#header h1 {
|
|
9
|
+
display: table-cell;
|
|
10
|
+
vertical-align: middle;
|
|
11
|
+
white-space: nowrap;
|
|
12
|
+
color: #fff;
|
|
13
|
+
font-weight: bold;
|
|
14
|
+
margin-right: 20px;
|
|
15
|
+
margin-bottom: 0px;
|
|
16
|
+
padding: 3px 30px 0 30px;
|
|
17
|
+
font-size: 1.3em;
|
|
18
|
+
line-height: 1.2;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#header a, #header a:link {
|
|
22
|
+
color: #fff;
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
body.logged_out h2 {
|
|
2
|
+
height: 45px;
|
|
3
|
+
text-align: center;
|
|
4
|
+
vertical-align: middle;
|
|
5
|
+
font-size: 20px;
|
|
6
|
+
padding-top: 23px;
|
|
7
|
+
background-color: #1867ab;
|
|
8
|
+
background-image: linear-gradient(180deg, #1867ab, #1867ab);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
form input[type=submit]:not(.disabled):active, form input[type=button]:not(.disabled):active, form button:not(.disabled):active {
|
|
12
|
+
height: 45px;
|
|
13
|
+
width: 100px;
|
|
14
|
+
border-radius: 5px;
|
|
15
|
+
font-size: 17px;
|
|
16
|
+
background-color: #1868ab;
|
|
17
|
+
background-image: linear-gradient(180deg, #1868ab, #1868ab);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
body.logged_out #login a {
|
|
21
|
+
float: right;
|
|
22
|
+
margin-top: -42px;
|
|
23
|
+
font-size: 15px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
form fieldset > ol > li.boolean label {
|
|
27
|
+
width: 80%;
|
|
28
|
+
padding-left: 20%;
|
|
29
|
+
padding-right: 10px;
|
|
30
|
+
text-transform: none !important;
|
|
31
|
+
font-weight: bold;
|
|
32
|
+
font-size: 12px;
|
|
33
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_admin_with_bootstrap_4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ravi Singh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-06-
|
|
11
|
+
date: 2019-06-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -114,6 +114,14 @@ files:
|
|
|
114
114
|
- bin/setup
|
|
115
115
|
- lib/active_admin_with_bootstrap_4.rb
|
|
116
116
|
- lib/active_admin_with_bootstrap_4/version.rb
|
|
117
|
+
- vendor/assets/javascripts/active_admin_with_bootstrap_4.js
|
|
118
|
+
- vendor/assets/javascripts/bootstrap.js
|
|
119
|
+
- vendor/assets/javascripts/jquery.js
|
|
120
|
+
- vendor/assets/javascripts/popper.js
|
|
121
|
+
- vendor/assets/stylesheets/active_admin_with_bootstrap_4.scss
|
|
122
|
+
- vendor/assets/stylesheets/bootstrap.css
|
|
123
|
+
- vendor/assets/stylesheets/components/header.scss
|
|
124
|
+
- vendor/assets/stylesheets/components/login.scss
|
|
117
125
|
homepage: https://rubygems.org/gems/active_admin_with_bootstrap_4
|
|
118
126
|
licenses:
|
|
119
127
|
- MIT
|