right_chimp 2.1.3 → 2.1.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: f41cb65ce4533dae5d5b19e5d155fccd5895eccf
4
- data.tar.gz: e0642777eaf1e660cd8452948b834037722a2957
3
+ metadata.gz: 27e7cd00a84999f433d40a2f249cb8560268a727
4
+ data.tar.gz: ceb90ee2bcf68088cffc0fb5654efa2feeb8468d
5
5
  SHA512:
6
- metadata.gz: fcf1116b6acd390b1a2dd3841d6a8b7019bb3cadfe1dc40eecfc7aca10d27abd01f20dfd20f93938a7341396a981425e3e22f897729d219e4d8758d9a8c638d1
7
- data.tar.gz: 2a7d5d73b9b2c3f8120458d20bc7117279931a7919e5d93b18781bba3890530cbaf032b56a6ada4c98cc1f240b1321e7879f6b05b614f60ae6ce415a9fa86fce
6
+ metadata.gz: d9fa7d8e28ecc00b32076872a7d95981a024c152bd491271026c81eca7ae80adb07e913e60705620bd8b12a997377e98348bb78784f75daf1a6b18664c2878ba
7
+ data.tar.gz: 92e47140d1c2633eb7007d8a8964c100fefe4fca8b5fb0ed496b706c8bf34c1f3683b5f74c70ba971bff5f17b104cc31246361ae5e58f4578b4fc0a73c9bfadf
data/CHANGES CHANGED
@@ -146,3 +146,7 @@ Version 2.1
146
146
  Version 2.1.3
147
147
  -------------
148
148
  * Feature: chimpd-wait-until now dsiplays the group name it is waiting on every 120secs
149
+
150
+ Vearsion 2.1.4
151
+ -------------
152
+ * Bugfix: Fixed UI issues casued by long job names
@@ -33,15 +33,14 @@ div#stats {
33
33
  color: black;
34
34
  float: left;
35
35
  border-right: solid 2px black;
36
- position: fixed;
37
36
  height: 100%;
38
37
  padding: 5px;
39
38
  padding-right: 15px;
39
+ overflow-x: auto;
40
40
  }
41
41
 
42
42
  div#jobs {
43
- position: absolute;
44
- left: 375px;
43
+ float: left;
45
44
  top: 10px;
46
45
  width: 500px;
47
46
  padding-left: 20px;
@@ -53,6 +52,7 @@ div#groups {
53
52
  background-color: white;
54
53
  border: solid 1px;
55
54
  overflow-y: auto;
55
+ overflow-x: auto;
56
56
  height: 150px;
57
57
  }
58
58
 
@@ -34,15 +34,14 @@ div#stats {
34
34
  color: #088A29;
35
35
  float: left;
36
36
  border-right: solid 2px #088A29;
37
- position: fixed;
38
37
  height: 100%;
39
38
  padding: 5px;
40
39
  padding-right: 15px;
40
+ overflow-x: auto;
41
41
  }
42
42
 
43
43
  div#jobs {
44
- position: absolute;
45
- left: 375px;
44
+ float: left;
46
45
  top: 10px;
47
46
  width: 500px;
48
47
  padding-left: 20px;
@@ -54,6 +53,7 @@ div#groups {
54
53
  background-color: black;
55
54
  border: solid 1px #088A29;
56
55
  overflow-y: auto;
56
+ overflow-x: auto;
57
57
  height: 150px;
58
58
  }
59
59
 
@@ -34,15 +34,14 @@ div#stats {
34
34
  color: yellow;
35
35
  float: left;
36
36
  border-right: solid 2px yellow;
37
- position: fixed;
38
37
  height: 100%;
39
38
  padding: 5px;
40
39
  padding-right: 15px;
40
+ overflow-x: auto;
41
41
  }
42
42
 
43
43
  div#jobs {
44
- position: absolute;
45
- left: 375px;
44
+ float: left;
46
45
  top: 10px;
47
46
  width: 500px;
48
47
  padding-left: 20px;
@@ -54,6 +53,7 @@ div#groups {
54
53
  background-color: red;
55
54
  border: solid 1px yellow;
56
55
  overflow-y: auto;
56
+ overflow-x: auto;
57
57
  height: 150px;
58
58
  }
59
59
 
@@ -34,15 +34,14 @@ div#stats {
34
34
  color: red;
35
35
  float: left;
36
36
  border-right: solid 2px red;
37
- position: fixed;
38
37
  height: 100%;
39
38
  padding: 5px;
40
39
  padding-right: 15px;
40
+ overflow-x: auto;
41
41
  }
42
42
 
43
43
  div#jobs {
44
- position: absolute;
45
- left: 375px;
44
+ float: left;
46
45
  top: 10px;
47
46
  width: 500px;
48
47
  padding-left: 20px;
@@ -54,6 +53,7 @@ div#groups {
54
53
  background-color: yellow;
55
54
  border: solid 1px red;
56
55
  overflow-y: auto;
56
+ overflow-x: auto;
57
57
  height: 150px;
58
58
  }
59
59
 
@@ -1,3 +1,3 @@
1
1
  module Chimp
2
- VERSION = "2.1.3"
2
+ VERSION = "2.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: right_chimp
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - RightScale Operations
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-02 00:00:00.000000000 Z
11
+ date: 2015-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake