administrate-bootstrap-theme 0.1.0 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +25 -11
- data/Rakefile +10 -14
- data/app/assets/config/administrate-bootstrap-theme_manifest.js +1 -0
- data/app/assets/javascripts/administrate-bootstrap-theme/theme.js +2 -0
- data/app/assets/stylesheets/administrate-bootstrap-theme/_base.scss +17 -1
- data/app/assets/stylesheets/administrate-bootstrap-theme/components/_content_body.scss +17 -3
- data/app/assets/stylesheets/administrate-bootstrap-theme/components/_form.scss +52 -16
- data/app/assets/stylesheets/administrate-bootstrap-theme/theme.scss +12 -0
- data/lib/administrate-bootstrap-theme/engine.rb +2 -0
- data/lib/administrate-bootstrap-theme/version.rb +1 -1
- data/node_modules/bootstrap/js/src/alert.js +141 -0
- data/node_modules/bootstrap/js/src/base-component.js +46 -0
- data/node_modules/bootstrap/js/src/button.js +95 -0
- data/node_modules/bootstrap/js/src/carousel.js +624 -0
- data/node_modules/bootstrap/js/src/collapse.js +410 -0
- data/node_modules/bootstrap/js/src/dom/data.js +57 -0
- data/node_modules/bootstrap/js/src/dom/event-handler.js +331 -0
- data/node_modules/bootstrap/js/src/dom/manipulator.js +80 -0
- data/node_modules/bootstrap/js/src/dom/selector-engine.js +75 -0
- data/node_modules/bootstrap/js/src/dropdown.js +543 -0
- data/node_modules/bootstrap/js/src/modal.js +582 -0
- data/node_modules/bootstrap/js/src/offcanvas.js +279 -0
- data/node_modules/bootstrap/js/src/popover.js +171 -0
- data/node_modules/bootstrap/js/src/scrollspy.js +319 -0
- data/node_modules/bootstrap/js/src/tab.js +220 -0
- data/node_modules/bootstrap/js/src/toast.js +219 -0
- data/node_modules/bootstrap/js/src/tooltip.js +802 -0
- data/node_modules/bootstrap/js/src/util/index.js +253 -0
- data/node_modules/bootstrap/js/src/util/sanitizer.js +127 -0
- data/node_modules/bootstrap/js/src/util/scrollbar.js +70 -0
- data/node_modules/bootstrap/scss/_accordion.scss +116 -0
- data/node_modules/bootstrap/scss/_alert.scss +57 -0
- data/node_modules/bootstrap/scss/_badge.scss +29 -0
- data/node_modules/bootstrap/scss/_breadcrumb.scss +28 -0
- data/node_modules/bootstrap/scss/_button-group.scss +139 -0
- data/node_modules/bootstrap/scss/_buttons.scss +111 -0
- data/node_modules/bootstrap/scss/_card.scss +215 -0
- data/node_modules/bootstrap/scss/_carousel.scss +229 -0
- data/node_modules/bootstrap/scss/_close.scss +40 -0
- data/node_modules/bootstrap/scss/_containers.scss +41 -0
- data/node_modules/bootstrap/scss/_dropdown.scss +246 -0
- data/node_modules/bootstrap/scss/_forms.scss +9 -0
- data/node_modules/bootstrap/scss/_functions.scss +205 -0
- data/node_modules/bootstrap/scss/_grid.scss +22 -0
- data/node_modules/bootstrap/scss/_helpers.scss +7 -0
- data/node_modules/bootstrap/scss/_images.scss +42 -0
- data/node_modules/bootstrap/scss/_list-group.scss +174 -0
- data/node_modules/bootstrap/scss/_mixins.scss +41 -0
- data/node_modules/bootstrap/scss/_modal.scss +237 -0
- data/node_modules/bootstrap/scss/_nav.scss +139 -0
- data/node_modules/bootstrap/scss/_navbar.scss +306 -0
- data/node_modules/bootstrap/scss/_offcanvas.scss +77 -0
- data/node_modules/bootstrap/scss/_pagination.scss +64 -0
- data/node_modules/bootstrap/scss/_popover.scss +158 -0
- data/node_modules/bootstrap/scss/_progress.scss +48 -0
- data/node_modules/bootstrap/scss/_reboot.scss +621 -0
- data/node_modules/bootstrap/scss/_root.scss +16 -0
- data/node_modules/bootstrap/scss/_spinners.scss +69 -0
- data/node_modules/bootstrap/scss/_tables.scss +150 -0
- data/node_modules/bootstrap/scss/_toasts.scss +51 -0
- data/node_modules/bootstrap/scss/_tooltip.scss +115 -0
- data/node_modules/bootstrap/scss/_transitions.scss +21 -0
- data/node_modules/bootstrap/scss/_type.scss +104 -0
- data/node_modules/bootstrap/scss/_utilities.scss +594 -0
- data/node_modules/bootstrap/scss/_variables.scss +1464 -0
- data/node_modules/bootstrap/scss/bootstrap-grid.scss +65 -0
- data/node_modules/bootstrap/scss/bootstrap-reboot.scss +15 -0
- data/node_modules/bootstrap/scss/bootstrap-utilities.scss +18 -0
- data/node_modules/bootstrap/scss/bootstrap.scss +52 -0
- data/node_modules/bootstrap/scss/forms/_floating-labels.scss +61 -0
- data/node_modules/bootstrap/scss/forms/_form-check.scss +152 -0
- data/node_modules/bootstrap/scss/forms/_form-control.scss +219 -0
- data/node_modules/bootstrap/scss/forms/_form-range.scss +91 -0
- data/node_modules/bootstrap/scss/forms/_form-select.scss +67 -0
- data/node_modules/bootstrap/scss/forms/_form-text.scss +11 -0
- data/node_modules/bootstrap/scss/forms/_input-group.scss +121 -0
- data/node_modules/bootstrap/scss/forms/_labels.scss +36 -0
- data/node_modules/bootstrap/scss/forms/_validation.scss +12 -0
- data/node_modules/bootstrap/scss/helpers/_clearfix.scss +3 -0
- data/node_modules/bootstrap/scss/helpers/_colored-links.scss +12 -0
- data/node_modules/bootstrap/scss/helpers/_position.scss +30 -0
- data/node_modules/bootstrap/scss/helpers/_ratio.scss +26 -0
- data/node_modules/bootstrap/scss/helpers/_stretched-link.scss +15 -0
- data/node_modules/bootstrap/scss/helpers/_text-truncation.scss +7 -0
- data/node_modules/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
- data/node_modules/bootstrap/scss/mixins/_alert.scss +11 -0
- data/node_modules/bootstrap/scss/mixins/_border-radius.scss +78 -0
- data/node_modules/bootstrap/scss/mixins/_box-shadow.scss +18 -0
- data/node_modules/bootstrap/scss/mixins/_breakpoints.scss +127 -0
- data/node_modules/bootstrap/scss/mixins/_buttons.scss +133 -0
- data/node_modules/bootstrap/scss/mixins/_caret.scss +64 -0
- data/node_modules/bootstrap/scss/mixins/_clearfix.scss +9 -0
- data/node_modules/bootstrap/scss/mixins/_container.scss +9 -0
- data/node_modules/bootstrap/scss/mixins/_deprecate.scss +10 -0
- data/node_modules/bootstrap/scss/mixins/_forms.scss +134 -0
- data/node_modules/bootstrap/scss/mixins/_gradients.scss +47 -0
- data/node_modules/bootstrap/scss/mixins/_grid.scss +120 -0
- data/node_modules/bootstrap/scss/mixins/_image.scss +16 -0
- data/node_modules/bootstrap/scss/mixins/_list-group.scss +24 -0
- data/node_modules/bootstrap/scss/mixins/_lists.scss +7 -0
- data/node_modules/bootstrap/scss/mixins/_pagination.scss +31 -0
- data/node_modules/bootstrap/scss/mixins/_reset-text.scss +17 -0
- data/node_modules/bootstrap/scss/mixins/_resize.scss +6 -0
- data/node_modules/bootstrap/scss/mixins/_table-variants.scss +21 -0
- data/node_modules/bootstrap/scss/mixins/_text-truncate.scss +8 -0
- data/node_modules/bootstrap/scss/mixins/_transition.scss +26 -0
- data/node_modules/bootstrap/scss/mixins/_utilities.scss +68 -0
- data/node_modules/bootstrap/scss/mixins/_visually-hidden.scss +29 -0
- data/node_modules/bootstrap/scss/utilities/_api.scss +47 -0
- data/node_modules/bootstrap/scss/vendor/_rfs.scss +312 -0
- metadata +106 -19
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: administrate-bootstrap-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattia Roccoberton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-04-
|
11
|
+
date: 2021-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: administrate
|
@@ -16,28 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.14'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rubocop
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0.90'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0.90'
|
26
|
+
version: '0.14'
|
41
27
|
description: A Bootstrap theme for Administrate
|
42
28
|
email:
|
43
29
|
- mat@blocknot.es
|
@@ -49,6 +35,7 @@ files:
|
|
49
35
|
- README.md
|
50
36
|
- Rakefile
|
51
37
|
- app/assets/config/administrate-bootstrap-theme_manifest.js
|
38
|
+
- app/assets/javascripts/administrate-bootstrap-theme/theme.js
|
52
39
|
- app/assets/stylesheets/administrate-bootstrap-theme/_base.scss
|
53
40
|
- app/assets/stylesheets/administrate-bootstrap-theme/_variables.scss
|
54
41
|
- app/assets/stylesheets/administrate-bootstrap-theme/components/_content_body.scss
|
@@ -60,6 +47,106 @@ files:
|
|
60
47
|
- lib/administrate-bootstrap-theme.rb
|
61
48
|
- lib/administrate-bootstrap-theme/engine.rb
|
62
49
|
- lib/administrate-bootstrap-theme/version.rb
|
50
|
+
- node_modules/bootstrap/js/src/alert.js
|
51
|
+
- node_modules/bootstrap/js/src/base-component.js
|
52
|
+
- node_modules/bootstrap/js/src/button.js
|
53
|
+
- node_modules/bootstrap/js/src/carousel.js
|
54
|
+
- node_modules/bootstrap/js/src/collapse.js
|
55
|
+
- node_modules/bootstrap/js/src/dom/data.js
|
56
|
+
- node_modules/bootstrap/js/src/dom/event-handler.js
|
57
|
+
- node_modules/bootstrap/js/src/dom/manipulator.js
|
58
|
+
- node_modules/bootstrap/js/src/dom/selector-engine.js
|
59
|
+
- node_modules/bootstrap/js/src/dropdown.js
|
60
|
+
- node_modules/bootstrap/js/src/modal.js
|
61
|
+
- node_modules/bootstrap/js/src/offcanvas.js
|
62
|
+
- node_modules/bootstrap/js/src/popover.js
|
63
|
+
- node_modules/bootstrap/js/src/scrollspy.js
|
64
|
+
- node_modules/bootstrap/js/src/tab.js
|
65
|
+
- node_modules/bootstrap/js/src/toast.js
|
66
|
+
- node_modules/bootstrap/js/src/tooltip.js
|
67
|
+
- node_modules/bootstrap/js/src/util/index.js
|
68
|
+
- node_modules/bootstrap/js/src/util/sanitizer.js
|
69
|
+
- node_modules/bootstrap/js/src/util/scrollbar.js
|
70
|
+
- node_modules/bootstrap/scss/_accordion.scss
|
71
|
+
- node_modules/bootstrap/scss/_alert.scss
|
72
|
+
- node_modules/bootstrap/scss/_badge.scss
|
73
|
+
- node_modules/bootstrap/scss/_breadcrumb.scss
|
74
|
+
- node_modules/bootstrap/scss/_button-group.scss
|
75
|
+
- node_modules/bootstrap/scss/_buttons.scss
|
76
|
+
- node_modules/bootstrap/scss/_card.scss
|
77
|
+
- node_modules/bootstrap/scss/_carousel.scss
|
78
|
+
- node_modules/bootstrap/scss/_close.scss
|
79
|
+
- node_modules/bootstrap/scss/_containers.scss
|
80
|
+
- node_modules/bootstrap/scss/_dropdown.scss
|
81
|
+
- node_modules/bootstrap/scss/_forms.scss
|
82
|
+
- node_modules/bootstrap/scss/_functions.scss
|
83
|
+
- node_modules/bootstrap/scss/_grid.scss
|
84
|
+
- node_modules/bootstrap/scss/_helpers.scss
|
85
|
+
- node_modules/bootstrap/scss/_images.scss
|
86
|
+
- node_modules/bootstrap/scss/_list-group.scss
|
87
|
+
- node_modules/bootstrap/scss/_mixins.scss
|
88
|
+
- node_modules/bootstrap/scss/_modal.scss
|
89
|
+
- node_modules/bootstrap/scss/_nav.scss
|
90
|
+
- node_modules/bootstrap/scss/_navbar.scss
|
91
|
+
- node_modules/bootstrap/scss/_offcanvas.scss
|
92
|
+
- node_modules/bootstrap/scss/_pagination.scss
|
93
|
+
- node_modules/bootstrap/scss/_popover.scss
|
94
|
+
- node_modules/bootstrap/scss/_progress.scss
|
95
|
+
- node_modules/bootstrap/scss/_reboot.scss
|
96
|
+
- node_modules/bootstrap/scss/_root.scss
|
97
|
+
- node_modules/bootstrap/scss/_spinners.scss
|
98
|
+
- node_modules/bootstrap/scss/_tables.scss
|
99
|
+
- node_modules/bootstrap/scss/_toasts.scss
|
100
|
+
- node_modules/bootstrap/scss/_tooltip.scss
|
101
|
+
- node_modules/bootstrap/scss/_transitions.scss
|
102
|
+
- node_modules/bootstrap/scss/_type.scss
|
103
|
+
- node_modules/bootstrap/scss/_utilities.scss
|
104
|
+
- node_modules/bootstrap/scss/_variables.scss
|
105
|
+
- node_modules/bootstrap/scss/bootstrap-grid.scss
|
106
|
+
- node_modules/bootstrap/scss/bootstrap-reboot.scss
|
107
|
+
- node_modules/bootstrap/scss/bootstrap-utilities.scss
|
108
|
+
- node_modules/bootstrap/scss/bootstrap.scss
|
109
|
+
- node_modules/bootstrap/scss/forms/_floating-labels.scss
|
110
|
+
- node_modules/bootstrap/scss/forms/_form-check.scss
|
111
|
+
- node_modules/bootstrap/scss/forms/_form-control.scss
|
112
|
+
- node_modules/bootstrap/scss/forms/_form-range.scss
|
113
|
+
- node_modules/bootstrap/scss/forms/_form-select.scss
|
114
|
+
- node_modules/bootstrap/scss/forms/_form-text.scss
|
115
|
+
- node_modules/bootstrap/scss/forms/_input-group.scss
|
116
|
+
- node_modules/bootstrap/scss/forms/_labels.scss
|
117
|
+
- node_modules/bootstrap/scss/forms/_validation.scss
|
118
|
+
- node_modules/bootstrap/scss/helpers/_clearfix.scss
|
119
|
+
- node_modules/bootstrap/scss/helpers/_colored-links.scss
|
120
|
+
- node_modules/bootstrap/scss/helpers/_position.scss
|
121
|
+
- node_modules/bootstrap/scss/helpers/_ratio.scss
|
122
|
+
- node_modules/bootstrap/scss/helpers/_stretched-link.scss
|
123
|
+
- node_modules/bootstrap/scss/helpers/_text-truncation.scss
|
124
|
+
- node_modules/bootstrap/scss/helpers/_visually-hidden.scss
|
125
|
+
- node_modules/bootstrap/scss/mixins/_alert.scss
|
126
|
+
- node_modules/bootstrap/scss/mixins/_border-radius.scss
|
127
|
+
- node_modules/bootstrap/scss/mixins/_box-shadow.scss
|
128
|
+
- node_modules/bootstrap/scss/mixins/_breakpoints.scss
|
129
|
+
- node_modules/bootstrap/scss/mixins/_buttons.scss
|
130
|
+
- node_modules/bootstrap/scss/mixins/_caret.scss
|
131
|
+
- node_modules/bootstrap/scss/mixins/_clearfix.scss
|
132
|
+
- node_modules/bootstrap/scss/mixins/_container.scss
|
133
|
+
- node_modules/bootstrap/scss/mixins/_deprecate.scss
|
134
|
+
- node_modules/bootstrap/scss/mixins/_forms.scss
|
135
|
+
- node_modules/bootstrap/scss/mixins/_gradients.scss
|
136
|
+
- node_modules/bootstrap/scss/mixins/_grid.scss
|
137
|
+
- node_modules/bootstrap/scss/mixins/_image.scss
|
138
|
+
- node_modules/bootstrap/scss/mixins/_list-group.scss
|
139
|
+
- node_modules/bootstrap/scss/mixins/_lists.scss
|
140
|
+
- node_modules/bootstrap/scss/mixins/_pagination.scss
|
141
|
+
- node_modules/bootstrap/scss/mixins/_reset-text.scss
|
142
|
+
- node_modules/bootstrap/scss/mixins/_resize.scss
|
143
|
+
- node_modules/bootstrap/scss/mixins/_table-variants.scss
|
144
|
+
- node_modules/bootstrap/scss/mixins/_text-truncate.scss
|
145
|
+
- node_modules/bootstrap/scss/mixins/_transition.scss
|
146
|
+
- node_modules/bootstrap/scss/mixins/_utilities.scss
|
147
|
+
- node_modules/bootstrap/scss/mixins/_visually-hidden.scss
|
148
|
+
- node_modules/bootstrap/scss/utilities/_api.scss
|
149
|
+
- node_modules/bootstrap/scss/vendor/_rfs.scss
|
63
150
|
homepage: https://github.com/blocknotes/administrate-bootstrap-theme
|
64
151
|
licenses:
|
65
152
|
- MIT
|
@@ -81,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
168
|
- !ruby/object:Gem::Version
|
82
169
|
version: '0'
|
83
170
|
requirements: []
|
84
|
-
rubygems_version: 3.
|
171
|
+
rubygems_version: 3.0.3
|
85
172
|
signing_key:
|
86
173
|
specification_version: 4
|
87
174
|
summary: Bootstrap Administrate Theme
|