c80_md 0.1.0.11 → 0.1.0.12
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: bef2cca3b7706631c8272e3cb545f59a5f3b42b3
|
|
4
|
+
data.tar.gz: 878d46db5c14a3903bf294364aadd9f7027ec64c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed7798c9c1fb4241bc068073e336b2a180e7f6d1b3ed1e5723ef15cfcc400896bba7997d0328c83d657660d83569c7e847a6bb0afbedc9f29e708656ebe41729
|
|
7
|
+
data.tar.gz: 9fe40dee1d43116e7f4b620a0ac9c8fdf537581582ad7eeb6df964c58bb9032afe2ecc64a45a10106447cb95855405ac3eb101f83e5ef603643e25dc6d70f68a
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
background-color: rgba(255, 200, 127, 0.26) !important;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
width: calc(80% - 32px);
|
|
44
|
+
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
@mixin tex_input_element_inputfield($color: #444444, $bg_color: #ffffff, $border_color: #dfdfdf) {
|
|
@@ -62,15 +64,13 @@ body.index {
|
|
|
62
64
|
body.edit, body.new {
|
|
63
65
|
div#main_content {
|
|
64
66
|
|
|
65
|
-
form input[type=text]
|
|
66
|
-
form input[type=password]
|
|
67
|
-
form input[type=email]
|
|
68
|
-
form input[type=number]
|
|
69
|
-
form input[type=url]
|
|
70
|
-
form input[type=tel]
|
|
71
|
-
form input[type=date] {
|
|
72
|
-
@include tex_input_element_inputfield;
|
|
73
|
-
}
|
|
67
|
+
form input[type=text] { @include tex_input_element_inputfield; }
|
|
68
|
+
form input[type=password] { @include tex_input_element_inputfield; }
|
|
69
|
+
form input[type=email] { @include tex_input_element_inputfield; }
|
|
70
|
+
form input[type=number] { @include tex_input_element_inputfield; }
|
|
71
|
+
form input[type=url] { @include tex_input_element_inputfield; }
|
|
72
|
+
form input[type=tel] { @include tex_input_element_inputfield; }
|
|
73
|
+
form input[type=date] { @include tex_input_element_inputfield; }
|
|
74
74
|
|
|
75
75
|
form textarea {
|
|
76
76
|
@include tex_input_element_textarea;
|
|
@@ -86,10 +86,10 @@ select {
|
|
|
86
86
|
.bootstrap-select {
|
|
87
87
|
button {
|
|
88
88
|
@include tex_input_element_inputfield;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
89
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
90
|
+
span.filter-option {
|
|
91
|
+
font-weight: bold;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
}
|
|
95
95
|
}
|
|
@@ -7,7 +7,22 @@ div#main_content {
|
|
|
7
7
|
box-shadow: none !important;
|
|
8
8
|
|
|
9
9
|
> legend {
|
|
10
|
-
display: none
|
|
10
|
+
/*display: none;*/
|
|
11
|
+
|
|
12
|
+
span {
|
|
13
|
+
display: block;
|
|
14
|
+
background-color: rgba(239, 239, 239, 0.71);
|
|
15
|
+
background-image: none !important;
|
|
16
|
+
text-shadow: #fff 0 1px 0;
|
|
17
|
+
border: none;
|
|
18
|
+
box-shadow: none;
|
|
19
|
+
font-size: 1em;
|
|
20
|
+
font-weight: bold;
|
|
21
|
+
line-height: 25px;
|
|
22
|
+
margin-bottom: 0;
|
|
23
|
+
color: #5E6469;
|
|
24
|
+
padding: 5px 10px 3px 25px;
|
|
25
|
+
}
|
|
11
26
|
}
|
|
12
27
|
}
|
|
13
28
|
}
|
|
@@ -15,9 +30,15 @@ div#main_content {
|
|
|
15
30
|
|
|
16
31
|
form fieldset ol > li {
|
|
17
32
|
padding: 10px 0;
|
|
33
|
+
|
|
34
|
+
&.boolean { clear: both; }
|
|
35
|
+
&.text { clear: both; }
|
|
36
|
+
&.ckeditor { clear: both; }
|
|
37
|
+
&.select { clear: both; }
|
|
38
|
+
&.string { clear: both; }
|
|
18
39
|
}
|
|
19
40
|
|
|
20
|
-
|
|
41
|
+
label.label {
|
|
21
42
|
font-size: 14px !important;
|
|
22
43
|
}
|
|
23
44
|
|
data/lib/c80_md/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: c80_md
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- C80609A
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|