c80_md 0.1.0.10 → 0.1.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9b8ddfa6c75ac43051945a118eba87987bea357
4
- data.tar.gz: ed3be29aef15e4ccb329438dfdb95f08a67432be
3
+ metadata.gz: 65541faf074e24f5bda11b94125646e9fb90a9be
4
+ data.tar.gz: d6594b5155f6aff4eb0e2e7259755a7acc64dd00
5
5
  SHA512:
6
- metadata.gz: c240dd8475d4185cc333844fa7e3c635667c50d48f7669b6cb69c429b5c5864c565c91f482d1a9596e6330b4b2dada81667ce059269266b3b27e5d5e187b9d98
7
- data.tar.gz: dcf5b9be8f9843b88f0299eb4afde077b0f89faade0cccfe2c4486c3865f90e3dad992c860998f0e0a013c60b812a76aaa3b7428740d69382e8ac2fdb79cfafe
6
+ metadata.gz: 34ae93ead557aa11b11ff5cb6b4478736488b952772c25d6e5ec1dc5fe9192cf036bb1f2928e4534fb5761a33046a5a5ef1a92c5b4d5afc048f7b94ccef21365
7
+ data.tar.gz: 0b7b4bf09cb15c8e9730bd6c97a34c4870734b09a0bbd550a2250b2d8522ae66d3e4b5ed937db50f7bd12b9038939553ce793e4001a6790cc992e6cf6455d908
@@ -13,7 +13,13 @@
13
13
  z-index: 900;
14
14
 
15
15
  ul.header-item.tabs {
16
+
16
17
  > li {
18
+
19
+ ul {
20
+ border-radius: 0 !important;
21
+ }
22
+
17
23
  > a {
18
24
  font-weight: bold !important;
19
25
  color: #ffffff !important;
@@ -1,24 +1,24 @@
1
- @mixin inputfield($color: #444444, $bg_color: #ffffff, $border_color: #dfdfdf) {
1
+ @mixin tex_input_element($color: #444444, $bg_color: #ffffff, $border_color: #dfdfdf) {
2
+
3
+ color: $color;
4
+ background: $bg_color !important;
5
+ border: 1px solid $border_color;
2
6
 
3
7
  display: inline-block;
4
8
  position: relative;
5
9
 
6
10
  text-decoration: none;
7
11
  text-shadow: none !important;
8
- color: $color;
9
12
 
10
- border: 1px solid $border_color;
11
13
  border-radius: 3px !important;
12
14
 
13
15
  font-weight: bold;
14
16
 
15
17
  font-size: 1.4rem !important;
16
- height: 4.4rem !important;
17
18
  padding: 1rem 1.4rem !important;
18
19
 
19
20
  margin: 0;
20
21
 
21
- background: $bg_color !important;
22
22
  box-shadow: none !important;
23
23
 
24
24
  transition: all 0.2s ease-in-out;
@@ -39,38 +39,53 @@
39
39
  &.highl {
40
40
  background-color: rgba(255, 200, 127, 0.26) !important;
41
41
  }
42
+
43
+ }
44
+
45
+ @mixin tex_input_element_inputfield($color: #444444, $bg_color: #ffffff, $border_color: #dfdfdf) {
46
+ @include tex_input_element($color, $bg_color, $border_color);
47
+ height: 4.4rem !important;
48
+ }
49
+
50
+ @mixin tex_input_element_textarea($color: #444444, $bg_color: #ffffff, $border_color: #dfdfdf) {
51
+ @include tex_input_element($color, $bg_color, $border_color);
42
52
  }
43
53
 
44
54
  body.index {
45
55
  div#sidebar {
46
56
  input[type="text"] {
47
- @include inputfield;
57
+ @include tex_input_element_inputfield;
48
58
  }
49
59
  }
50
60
  }
51
61
 
52
62
  body.edit, body.new {
53
63
  div#main_content {
64
+
54
65
  form input[type=text],
55
66
  form input[type=password],
56
67
  form input[type=email],
57
68
  form input[type=number],
58
69
  form input[type=url],
59
70
  form input[type=tel],
60
- form input[type=date],
71
+ form input[type=date] {
72
+ @include tex_input_element_inputfield;
73
+ }
74
+
61
75
  form textarea {
62
- @include inputfield;
76
+ @include tex_input_element_textarea;
63
77
  }
78
+
64
79
  }
65
80
  }
66
81
 
67
82
  select {
68
- @include inputfield;
83
+ @include tex_input_element_inputfield;
69
84
  }
70
85
 
71
86
  .bootstrap-select {
72
87
  button {
73
- @include inputfield;
88
+ @include tex_input_element_inputfield;
74
89
  }
75
90
  }
76
91
 
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{nope}
13
13
  spec.description = %q{too much}
14
- spec.homepage = "http://kyrandia.com"
14
+ spec.homepage = "https://github.com/c80609a/c80_md"
15
15
  spec.license = "MIT"
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
@@ -1,3 +1,3 @@
1
1
  module C80Md
2
- VERSION = "0.1.0.10"
2
+ VERSION = "0.1.0.11"
3
3
  end
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.10
4
+ version: 0.1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - C80609A
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-05 00:00:00.000000000 Z
11
+ date: 2016-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -85,7 +85,7 @@ files:
85
85
  - c80_md.gemspec
86
86
  - lib/c80_md.rb
87
87
  - lib/c80_md/version.rb
88
- homepage: http://kyrandia.com
88
+ homepage: https://github.com/c80609a/c80_md
89
89
  licenses:
90
90
  - MIT
91
91
  metadata: