robeaux 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.keep +0 -0
- data/README.md +53 -0
- data/fonts/FontAwesome.otf +0 -0
- data/fonts/fontawesome-webfont.eot +0 -0
- data/fonts/fontawesome-webfont.svg +414 -0
- data/fonts/fontawesome-webfont.ttf +0 -0
- data/fonts/fontawesome-webfont.woff +0 -0
- data/images/delete.png +0 -0
- data/index.html +39 -0
- data/javascripts/app.js +98 -0
- data/javascripts/vendor/angular-route.min.js +14 -0
- data/javascripts/vendor/angular.min.js +203 -0
- data/javascripts/vendor/bootstrap.min.js +7 -0
- data/javascripts/vendor/jquery.min.js +6 -0
- data/package.json +19 -0
- data/partials/robot-detail.html +139 -0
- data/partials/robot-device-detail.html +0 -0
- data/partials/robot-index.html +27 -0
- data/robeaux.gemspec +17 -0
- data/stylesheets/bootstrap.css +7118 -0
- data/stylesheets/font-awesome.css +1338 -0
- data/stylesheets/style.css +143 -0
- metadata +71 -0
@@ -0,0 +1,143 @@
|
|
1
|
+
.navbar {
|
2
|
+
background-color: #444;
|
3
|
+
border: none;
|
4
|
+
border-radius: 0px;
|
5
|
+
}
|
6
|
+
|
7
|
+
.navbar-default .navbar-brand {
|
8
|
+
color: #efefef;
|
9
|
+
}
|
10
|
+
|
11
|
+
.navbar-default .navbar-brand:hover {
|
12
|
+
color: #ccc;
|
13
|
+
}
|
14
|
+
|
15
|
+
.navbar-default .navbar-nav > li > a {
|
16
|
+
color: #ccc;
|
17
|
+
}
|
18
|
+
|
19
|
+
.navbar-default .navbar-nav > li > a:hover {
|
20
|
+
color: #ccc;
|
21
|
+
}
|
22
|
+
|
23
|
+
.navbar-default .navbar-nav > li > a:hover,
|
24
|
+
.navbar-default .navbar-nav > li > a:focus {
|
25
|
+
color: #eee;
|
26
|
+
}
|
27
|
+
|
28
|
+
.robot, .device {
|
29
|
+
border: 3px solid #ababab;
|
30
|
+
border-radius: 5px;
|
31
|
+
margin-bottom: 20px;
|
32
|
+
padding: 15px 5px;
|
33
|
+
}
|
34
|
+
|
35
|
+
.robot .robot-type, .device .device-type {
|
36
|
+
background: #ababab;
|
37
|
+
padding: 10px;
|
38
|
+
text-align: center;
|
39
|
+
font-size: 16px;
|
40
|
+
font-weight: bold;
|
41
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
42
|
+
color: white;
|
43
|
+
}
|
44
|
+
|
45
|
+
.robot b, .device b {
|
46
|
+
font-weight: bold;
|
47
|
+
line-height: 40px;
|
48
|
+
}
|
49
|
+
|
50
|
+
.robot .controls, .device .controls {
|
51
|
+
float: right;
|
52
|
+
}
|
53
|
+
|
54
|
+
.robot dl {
|
55
|
+
margin-bottom: 0;
|
56
|
+
}
|
57
|
+
|
58
|
+
.device {
|
59
|
+
min-height: 75px;
|
60
|
+
}
|
61
|
+
|
62
|
+
.robot dt, .robot dd, .device dt, .device dd {
|
63
|
+
display: inline-block;
|
64
|
+
}
|
65
|
+
|
66
|
+
.robot dd {
|
67
|
+
margin-right: 10px;
|
68
|
+
}
|
69
|
+
|
70
|
+
.robot dt i.fa {
|
71
|
+
color: #aaa;
|
72
|
+
}
|
73
|
+
|
74
|
+
.details .console code {
|
75
|
+
display: block;
|
76
|
+
height: 150px;
|
77
|
+
width: 98%;
|
78
|
+
margin: 0 auto;
|
79
|
+
overflow: scroll;
|
80
|
+
white-space: pre;
|
81
|
+
border: 1px solid #ababab;
|
82
|
+
background: #fbfbfb;
|
83
|
+
margin-bottom: 8px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.device.details {
|
87
|
+
padding: 15px;
|
88
|
+
}
|
89
|
+
|
90
|
+
.device-command {
|
91
|
+
display: block;
|
92
|
+
clear: both;
|
93
|
+
margin: 10px 0;
|
94
|
+
padding: 0 15px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.device-command select {
|
98
|
+
width: auto;
|
99
|
+
min-width: 150px;
|
100
|
+
display: inline;
|
101
|
+
}
|
102
|
+
|
103
|
+
.device-command .param-input {
|
104
|
+
font-size: 14px;
|
105
|
+
margin: 10px 0;
|
106
|
+
}
|
107
|
+
|
108
|
+
.device-command input[type='text'] {
|
109
|
+
border: none;
|
110
|
+
box-shadow: none;
|
111
|
+
border-bottom: 1px solid #bbb;
|
112
|
+
line-height: 18px;
|
113
|
+
padding: 5px;
|
114
|
+
margin-right: 10px;
|
115
|
+
width: 30%;
|
116
|
+
}
|
117
|
+
|
118
|
+
.device-command input[type='text']:focus {
|
119
|
+
outline: none;
|
120
|
+
}
|
121
|
+
|
122
|
+
.device-command select {
|
123
|
+
width: 20%;
|
124
|
+
}
|
125
|
+
|
126
|
+
.device-command .command-inputs button {
|
127
|
+
width: 63%;
|
128
|
+
margin-bottom: 30px;
|
129
|
+
}
|
130
|
+
|
131
|
+
.device-command select {
|
132
|
+
background: white;
|
133
|
+
}
|
134
|
+
|
135
|
+
.device-command .param-remove {
|
136
|
+
width: 18px;
|
137
|
+
height: 18px;
|
138
|
+
background-image: url(/images/delete.png);
|
139
|
+
display: inline-block;
|
140
|
+
cursor: pointer;
|
141
|
+
margin-top: 6px;
|
142
|
+
margin-right: 5px;
|
143
|
+
}
|
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: robeaux
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ron Evans
|
8
|
+
- Adrian Zankich
|
9
|
+
- Ari Lerner
|
10
|
+
- Mario Ricalde
|
11
|
+
- Daniel Fischer
|
12
|
+
- Andrew Stewart
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
date: 2014-01-26 00:00:00.000000000 Z
|
17
|
+
dependencies: []
|
18
|
+
description: Angular-based front end for universal robot API
|
19
|
+
email:
|
20
|
+
- artoo@hybridgroup.com
|
21
|
+
executables: []
|
22
|
+
extensions: []
|
23
|
+
extra_rdoc_files: []
|
24
|
+
files:
|
25
|
+
- .keep
|
26
|
+
- README.md
|
27
|
+
- fonts/FontAwesome.otf
|
28
|
+
- fonts/fontawesome-webfont.eot
|
29
|
+
- fonts/fontawesome-webfont.svg
|
30
|
+
- fonts/fontawesome-webfont.ttf
|
31
|
+
- fonts/fontawesome-webfont.woff
|
32
|
+
- images/delete.png
|
33
|
+
- index.html
|
34
|
+
- javascripts/app.js
|
35
|
+
- javascripts/vendor/angular-route.min.js
|
36
|
+
- javascripts/vendor/angular.min.js
|
37
|
+
- javascripts/vendor/bootstrap.min.js
|
38
|
+
- javascripts/vendor/jquery.min.js
|
39
|
+
- package.json
|
40
|
+
- partials/robot-detail.html
|
41
|
+
- partials/robot-device-detail.html
|
42
|
+
- partials/robot-index.html
|
43
|
+
- robeaux.gemspec
|
44
|
+
- stylesheets/bootstrap.css
|
45
|
+
- stylesheets/font-awesome.css
|
46
|
+
- stylesheets/style.css
|
47
|
+
homepage: https://github.com/hybridgroup/robeaux
|
48
|
+
licenses:
|
49
|
+
- Apache 2.0
|
50
|
+
metadata: {}
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubyforge_project: robeaux
|
67
|
+
rubygems_version: 2.2.1
|
68
|
+
signing_key:
|
69
|
+
specification_version: 4
|
70
|
+
summary: Angular-based front end for universal robot API
|
71
|
+
test_files: []
|