clark_kent 0.1.2 → 0.1.3

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: a526b26148688f5b37b9b177c35007e56b1fc7cb
4
- data.tar.gz: 8050c133d89e5bf851fe1f75ae44df9593a5c007
3
+ metadata.gz: c713233632c5883a0b9301ababaa0c191c04783e
4
+ data.tar.gz: 757aa589bcd14cf2d463017abdb630684e4f9aea
5
5
  SHA512:
6
- metadata.gz: f306164a0d069c36375f5eb65306ac7566a3e322b1c0c721dadf5bba767e496411e34846c2a58017f3412005b8a776b8f48f1fba53b6ac2459f453b9a6303175
7
- data.tar.gz: 5af1621187228e1e5611b90f0bb1feb965fa27f60816726cd2fbc2f12d6cfc10b3e684b71d636ceb168bec378a3fd2c01c528de68463120ff3abc18a1e6d2473
6
+ metadata.gz: f9f654364134d628e8dc3af8ffa8ca7f107ab0005fcc5054816e00d07d3b73aca5926080a7988c16aa50103a441ba6a321d16a3e1b3dc3de28696b2054b61e7a
7
+ data.tar.gz: 79c47a7f585dc0d5d1e505ba8dfa6f4ebd3badf205fce71c1e71c67ec4d56a802197d6e0d7d21cad42d9dc899d5cc8076ce5977d26dbcb22833871cb465c473b
@@ -1,2 +1 @@
1
- @import 'reports';
2
1
  @import 'reports_print'
@@ -1,3 +1,3 @@
1
1
  module ClarkKent
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clark_kent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Draut
@@ -133,7 +133,6 @@ files:
133
133
  - README.rdoc
134
134
  - Rakefile
135
135
  - app/assets/javascripts/clark_kent/application.js
136
- - app/assets/stylesheets/clark_kent/_reports.scss
137
136
  - app/assets/stylesheets/clark_kent/_reports_print.scss
138
137
  - app/assets/stylesheets/clark_kent/reports.scss
139
138
  - app/assets/stylesheets/scaffold.css
@@ -1,90 +0,0 @@
1
- // COLORS
2
-
3
- // Shades (Lightest to darkest)
4
- $white: white;
5
- $off-white: #F5F5F5;
6
- $light-grey: #d4d4d4;
7
- $grey: #A1A1A1;
8
- $slate: #3b4142;
9
- $asphalt: #767777;
10
- $coal: #626565;
11
- $black: #000;
12
- $charlcoal: #636564;
13
-
14
- // Rainbow
15
- $orange: #EB831C;
16
- $sea-foam: #749996;
17
- $hunter-green: #398052;
18
- $light-blue: #e1f1f8;
19
- $sky-blue: #5b91c8;
20
- $cade: #738d8a;
21
-
22
- $baseline: 18px;
23
-
24
- table.report {
25
- border-collapse:collapse;
26
- }
27
- table.report, table.report th, table.report td {
28
- border: 1px solid $light-grey;
29
- }
30
- table.report th, table.report td {
31
- padding: 3px 6px;
32
- }
33
- table.report .left{
34
- text-align: left;
35
- }
36
-
37
- .tape-view {
38
- td {
39
- padding: 0;
40
- margin: 0;
41
- }
42
- .report-name-column {
43
- padding: 12px;
44
- }
45
- }
46
-
47
- .tape-view-intersect-top {
48
- width: 49px !important;
49
- height:31px !important;
50
- margin-bottom: 6px;
51
- }
52
-
53
- .tape-view-intersect-bottom {
54
- width: 49px !important;
55
- height:31px !important;
56
- margin-left: 6px;
57
- margin-top: 6px;
58
- }
59
-
60
- .tape-view-available-box,
61
- .tape-view-reserved-box,
62
- .tape-view-owner-box,
63
- .tape-view-maintenance-box,
64
- .tape-view-owner-guest-box {
65
- width: 55px;
66
- height: 34px;
67
- }
68
-
69
- .tape-view-reserved-box {
70
- background: #b0cf59;
71
- }
72
-
73
- .tape-view-owner-box {
74
- background: #73b5e2;
75
- }
76
-
77
- .tape-view-owner-guest-box {
78
- background: #F3A626;
79
- }
80
-
81
- .tape-view-maintenance-box {
82
- background: #e48e8e;
83
- }
84
- .report-name-column {
85
- min-width: 175px;
86
- }
87
-
88
- .amount_mismatch {
89
- color: red !important;
90
- }