duke 0.1.5 → 0.1.6
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.
- data/VERSION +1 -1
- data/duke.gemspec +2 -2
- data/templates/public/stylesheets/button.css +59 -6
- data/templates/public/stylesheets/custom.css +2 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.6
|
data/duke.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{duke}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.6"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Justin Marney"]
|
12
|
-
s.date = %q{2010-11-
|
12
|
+
s.date = %q{2010-11-17}
|
13
13
|
s.default_executable = %q{duke}
|
14
14
|
s.description = %q{Allows you to easily manage multiple CIJoes.}
|
15
15
|
s.email = %q{gotascii@gmail.com}
|
@@ -1,16 +1,27 @@
|
|
1
1
|
/* Based on http://ubuwaits.github.com/css3-buttons */
|
2
2
|
|
3
3
|
button.blue {
|
4
|
+
background: #004F59;
|
4
5
|
background: -webkit-gradient(linear, 0 0, 0 100%,
|
5
6
|
color-stop(0, #59D9EA),
|
6
7
|
color-stop(0.5, #00899A),
|
7
8
|
color-stop(0.5, #007988),
|
8
9
|
color-stop(1, #004F59));
|
10
|
+
background: -moz-linear-gradient(0% 100% 90deg,
|
11
|
+
#004F59 0%,
|
12
|
+
#007988 50%,
|
13
|
+
#00899A 50%,
|
14
|
+
#59D9EA 100%);
|
9
15
|
border: 0;
|
10
|
-
|
11
|
-
|
12
|
-
-
|
16
|
+
|
17
|
+
border-radius: 4px;
|
18
|
+
-moz-border-radius: 4px;
|
19
|
+
-webkit-border-radius: 4px;
|
20
|
+
|
21
|
+
box-shadow: inset 0px 0px 0px 1px rgba(36, 51, 53, 0.4), 0 1px 3px #333;
|
22
|
+
-moz-box-shadow: inset 0px 0px 0px 1px rgba(36, 51, 53, 0.4), 0 1px 3px #333;
|
13
23
|
-webkit-box-shadow: inset 0px 0px 0px 1px rgba(36, 51, 53, 0.4), 0 1px 3px #333;
|
24
|
+
|
14
25
|
color: #fff;
|
15
26
|
font-size: 197%;
|
16
27
|
float: right;
|
@@ -21,33 +32,59 @@ button.blue {
|
|
21
32
|
}
|
22
33
|
|
23
34
|
button.blue:hover {
|
35
|
+
background: #148D9C;
|
24
36
|
background: -webkit-gradient(linear, 0 0, 0 100%,
|
25
37
|
color-stop(0, #77F7FF),
|
26
38
|
color-stop(0.5, #1EA7B8),
|
27
39
|
color-stop(0.5, #148D9C),
|
28
40
|
color-stop(1, #14636D));
|
41
|
+
background: -moz-linear-gradient(0% 100% 90deg,
|
42
|
+
#14636D 0%,
|
43
|
+
#148D9C 50%,
|
44
|
+
#1EA7B8 50%,
|
45
|
+
#77F7FF 100%);
|
29
46
|
}
|
30
47
|
|
31
48
|
button.blue:active {
|
49
|
+
background: #77F7FF;
|
32
50
|
background: -webkit-gradient(linear, 0 0, 0 100%,
|
33
51
|
color-stop(0, #45C5D6),
|
34
52
|
color-stop(0.5, #007586),
|
35
53
|
color-stop(0.5, #006574),
|
36
54
|
color-stop(1, #003B45));
|
55
|
+
background: -moz-linear-gradient(0% 100% 90deg,
|
56
|
+
#003B45 0%,
|
57
|
+
#006574 50%,
|
58
|
+
#007586 50%,
|
59
|
+
#45C5D6 100%);
|
60
|
+
|
61
|
+
box-shadow: inset 0px 0px 0px 1px rgba(36, 51, 53, 0.4);
|
62
|
+
-moz-box-shadow: inset 0px 0px 0px 1px rgba(36, 51, 53, 0.4);
|
37
63
|
-webkit-box-shadow: inset 0px 0px 0px 1px rgba(36, 51, 53, 0.4);
|
38
64
|
}
|
39
65
|
|
40
66
|
button.black {
|
67
|
+
background: #111111;
|
41
68
|
background: -webkit-gradient(linear, 0 0, 0 100%,
|
42
69
|
color-stop(0, #434343),
|
43
70
|
color-stop(0.5, #2F2F2F),
|
44
71
|
color-stop(0.5, #252525),
|
45
72
|
color-stop(1, #111111));
|
73
|
+
background: -moz-linear-gradient(0% 100% 90deg,
|
74
|
+
#111111 0%,
|
75
|
+
#252525 50%,
|
76
|
+
#2F2F2F 50%,
|
77
|
+
#434343 100%);
|
46
78
|
border: 0;
|
47
|
-
|
48
|
-
|
49
|
-
-
|
79
|
+
|
80
|
+
border-radius: 4px;
|
81
|
+
-moz-border-radius: 4px;
|
82
|
+
-webkit-border-radius: 4px;
|
83
|
+
|
84
|
+
box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0 1px 3px #333;
|
85
|
+
-moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0 1px 3px #333;
|
50
86
|
-webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0 1px 3px #333;
|
87
|
+
|
51
88
|
color: #fff;
|
52
89
|
font-size: 197%;
|
53
90
|
text-align: center;
|
@@ -57,18 +94,34 @@ button.black {
|
|
57
94
|
}
|
58
95
|
|
59
96
|
button.black:hover {
|
97
|
+
background: #393939;
|
60
98
|
background: -webkit-gradient(linear, 0 0, 0 100%,
|
61
99
|
color-stop(0, #575757),
|
62
100
|
color-stop(0.5, #434343),
|
63
101
|
color-stop(0.5, #393939),
|
64
102
|
color-stop(1, #252525));
|
103
|
+
background: -moz-linear-gradient(0% 100% 90deg,
|
104
|
+
#252525 0%,
|
105
|
+
#393939 50%,
|
106
|
+
#434343 50%,
|
107
|
+
#575757 100%);
|
65
108
|
}
|
66
109
|
|
67
110
|
button.black:active {
|
111
|
+
background: #575757;
|
68
112
|
background: -webkit-gradient(linear, 0 0, 0 100%,
|
69
113
|
color-stop(0, #2F2F2F),
|
70
114
|
color-stop(0.5, #252525),
|
71
115
|
color-stop(0.5, #1B1B1B),
|
72
116
|
color-stop(1, #111111));
|
117
|
+
|
118
|
+
background: -moz-linear-gradient(0% 100% 90deg,
|
119
|
+
#111111 0%,
|
120
|
+
#1B1B1B 50%,
|
121
|
+
#252525 50%,
|
122
|
+
#2F2F2F 100%);
|
123
|
+
|
124
|
+
box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
|
125
|
+
-moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
|
73
126
|
-webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
|
74
127
|
}
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 6
|
9
|
+
version: 0.1.6
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Justin Marney
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-11-
|
17
|
+
date: 2010-11-17 00:00:00 -05:00
|
18
18
|
default_executable: duke
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|