ecm_core 0.0.3 → 0.0.4
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05d383cb32f673f5d898128593de5307e12d6122
|
|
4
|
+
data.tar.gz: 7b345867e07ede11a98dba6fe230f740849b30de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8027929a57cfa06819184884acdcb068e9a8f04f0e466623e9be3416de196f6bc870cd7c421c854599d659f01fa21748c1afc70beca586c200a00db6be10305c
|
|
7
|
+
data.tar.gz: 9f58d935e6ab26191d58a3030d2941f37d7e35891d4a89cdc2fd901f409b2ab47ba3f566f5e35b0f627f7c0bd7708e302ce3c03d0f9aafa4d82813b09776d267
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.row.flex-row {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
}
|
|
5
|
+
.row.flex-row > [class*='col-'] {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/*
|
|
11
|
+
* And with max cross-browser enabled.
|
|
12
|
+
* Nobody should ever write this by hand.
|
|
13
|
+
* Use a preprocesser with autoprefixing.
|
|
14
|
+
*/
|
|
15
|
+
.row.flex-row {
|
|
16
|
+
display: -webkit-box;
|
|
17
|
+
display: -webkit-flex;
|
|
18
|
+
display: -ms-flexbox;
|
|
19
|
+
display: flex;
|
|
20
|
+
-webkit-flex-wrap: wrap;
|
|
21
|
+
-ms-flex-wrap: wrap;
|
|
22
|
+
flex-wrap: wrap;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.row.flex-row > [class*='col-'] {
|
|
26
|
+
display: -webkit-box;
|
|
27
|
+
display: -webkit-flex;
|
|
28
|
+
display: -ms-flexbox;
|
|
29
|
+
display: flex;
|
|
30
|
+
-webkit-box-orient: vertical;
|
|
31
|
+
-webkit-box-direction: normal;
|
|
32
|
+
-webkit-flex-direction: column;
|
|
33
|
+
-ms-flex-direction: column;
|
|
34
|
+
flex-direction: column;
|
|
35
|
+
}
|
data/lib/ecm/core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ecm_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roberto Vasquez Angel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -280,6 +280,7 @@ files:
|
|
|
280
280
|
- app/assets/javascripts/ecm_core.js
|
|
281
281
|
- app/assets/javascripts/ecm_core_backend.js
|
|
282
282
|
- app/assets/stylesheets/ecm/core/application.css
|
|
283
|
+
- app/assets/stylesheets/ecm/core/application/bootstrap-flex-row.css
|
|
283
284
|
- app/assets/stylesheets/ecm/core/application/bottom-margin.css
|
|
284
285
|
- app/assets/stylesheets/ecm/core/backend/application.css
|
|
285
286
|
- app/assets/stylesheets/ecm/core/backend/application/horizontal_separator.css
|