robeaux 0.3.0 → 0.4.0
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 +4 -4
- data/README.markdown +41 -61
- data/css/application.css +2 -0
- data/css/application.css.map +7 -0
- data/index.html +5 -39
- data/js/script.js +7 -0
- data/robeaux.gemspec +16 -8
- metadata +11 -104
- data/.gitignore +0 -1
- data/Gruntfile.js +0 -43
- data/Makefile +0 -22
- data/css/fonts.css +0 -59
- data/css/main.css +0 -1
- data/css/normalize.css +0 -425
- data/css/style.css +0 -558
- data/css/themes/artoo.css +0 -3
- data/css/themes/blackboard.css +0 -1
- data/css/themes/cylon.css +0 -3
- data/css/themes/dark.css +0 -1
- data/css/themes/gobot.css +0 -3
- data/css/themes/gray.css +0 -1
- data/css/themes/whiteboard.css +0 -1
- data/js/app.js +0 -1
- data/js/controllers/device_commands_ctrl.js +0 -81
- data/js/controllers/device_events_ctrl.js +0 -31
- data/js/controllers/index_ctrl.js +0 -9
- data/js/controllers/nav_ctrl.js +0 -5
- data/js/controllers/robot_commands_ctrl.js +0 -33
- data/js/controllers/robot_ctrl.js +0 -25
- data/js/controllers/themes_ctrl.js +0 -36
- data/js/controllers/widget_editor_ctrl.js +0 -44
- data/js/controllers/widgets_ctrl.js +0 -40
- data/js/directives/widget.js +0 -50
- data/js/router.js +0 -27
- data/js/services/themes.js +0 -90
- data/js/services/widgets.js +0 -86
- data/js/vendor/angular-route.min.js +0 -13
- data/js/vendor/angular.min.js +0 -212
- data/js/widgets/attitude.html +0 -32
- data/js/widgets/attitude.js +0 -27
- data/js/widgets/mindwave.html +0 -51
- data/js/widgets/mindwave.js +0 -23
- data/less/app.less +0 -21
- data/less/objects/buttons.less +0 -32
- data/less/objects/connections.less +0 -28
- data/less/objects/device.less +0 -30
- data/less/objects/forms.less +0 -29
- data/less/objects/list.less +0 -27
- data/less/objects/nav.less +0 -33
- data/less/objects/robot.less +0 -43
- data/less/objects/themes.less +0 -18
- data/less/objects/widgets.less +0 -85
- data/less/support/buttons.less +0 -39
- data/less/support/container.less +0 -9
- data/less/support/forms.less +0 -18
- data/less/support/mixins.less +0 -3
- data/less/themes/blackboard.less +0 -158
- data/less/themes/dark.less +0 -148
- data/less/themes/default.less +0 -52
- data/less/themes/gray.less +0 -121
- data/less/themes/whiteboard.less +0 -152
- data/less/vendor/elements.less +0 -156
- data/less/vendor/normalize.less +0 -425
- data/less/vendor/semantic-grid.less +0 -67
- data/less/views/devices.less +0 -47
- data/less/views/robots.less +0 -132
- data/less/views/themes.less +0 -31
- data/less/views/widgets.less +0 -50
- data/package.json +0 -21
- data/partials/device.html +0 -76
- data/partials/index.html +0 -17
- data/partials/robot.html +0 -127
- data/partials/themes.html +0 -42
- data/partials/widget_editor.html +0 -68
- data/test/controllers/device_commands_ctrl.js +0 -129
- data/test/controllers/device_events_ctrl.js +0 -82
- data/test/controllers/index_ctrl.js +0 -48
- data/test/controllers/nav_ctrl.js +0 -40
- data/test/controllers/robot_commands_ctrl.js +0 -127
- data/test/controllers/robot_ctrl.js +0 -62
- data/test/controllers/themes_ctrl.js +0 -96
- data/test/controllers/widget_editor_ctrl.js +0 -111
- data/test/controllers/widgets_ctrl.js +0 -74
- data/test/functions/functions.js +0 -30
- data/test/karma.conf.js +0 -76
- data/test/karma_test_all.conf.js +0 -23
- data/test/karma_test_controllers.conf.js +0 -19
- data/test/karma_test_functions.conf.js +0 -14
- data/test/karma_test_services.conf.js +0 -17
- data/test/services/themes.js +0 -122
- data/test/services/widgets.js +0 -104
- data/test/support/myDevice.json +0 -15
- data/test/support/myRobot.json +0 -31
- data/test/support/robots.json +0 -33
- data/test/support/themes.json +0 -9
- data/test/support/widgets.json +0 -18
- data/test/vendor/angular-mocks.js +0 -2163
- data/test/vendor/jasmine-jquery.js +0 -704
- data/test/vendor/jquery.js +0 -8755
data/less/app.less
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
@import 'vendor/elements';
|
2
|
-
@import 'vendor/semantic-grid';
|
3
|
-
@import 'themes/default';
|
4
|
-
@import 'support/mixins';
|
5
|
-
|
6
|
-
/* Objects */
|
7
|
-
@import 'objects/buttons';
|
8
|
-
@import 'objects/connections';
|
9
|
-
@import 'objects/device';
|
10
|
-
@import 'objects/forms';
|
11
|
-
@import 'objects/list';
|
12
|
-
@import 'objects/nav';
|
13
|
-
@import 'objects/robot';
|
14
|
-
@import 'objects/themes';
|
15
|
-
@import 'objects/widgets';
|
16
|
-
|
17
|
-
/* Views */
|
18
|
-
@import 'views/devices';
|
19
|
-
@import 'views/robots';
|
20
|
-
@import 'views/themes';
|
21
|
-
@import 'views/widgets';
|
data/less/objects/buttons.less
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
.btn {
|
2
|
-
.button-size(10px; 15px; 15px; 20px; 5px);
|
3
|
-
display: inline-block;
|
4
|
-
border: 0;
|
5
|
-
&:hover {
|
6
|
-
cursor: pointer;
|
7
|
-
}
|
8
|
-
}
|
9
|
-
|
10
|
-
.btn-big {
|
11
|
-
.button-size(15px; 30px; 15px; 15px; 5px);
|
12
|
-
}
|
13
|
-
|
14
|
-
.btn-robot {
|
15
|
-
.button-variant(@btn-robot-color; @btn-robot-background; @btn-robot-color);
|
16
|
-
text-transform: uppercase;
|
17
|
-
}
|
18
|
-
|
19
|
-
.btn-run, .btn-reset {
|
20
|
-
.button-variant(@btn-run-color; @btn-run-background; @btn-run-color);
|
21
|
-
text-transform: uppercase;
|
22
|
-
}
|
23
|
-
|
24
|
-
.btn-device, .btn-save {
|
25
|
-
.button-variant(@btn-device-color; @btn-device-background; @btn-device-color);
|
26
|
-
text-transform: uppercase;
|
27
|
-
}
|
28
|
-
|
29
|
-
.btn-connect {
|
30
|
-
.button-variant(@btn-connect-color; @btn-connect-background; @btn-connect-color);
|
31
|
-
text-transform: uppercase;
|
32
|
-
}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
.connections {
|
2
|
-
.robot-devices {
|
3
|
-
.name {
|
4
|
-
display: inline-block;
|
5
|
-
margin-left: 20px;
|
6
|
-
font-weight: bold;
|
7
|
-
}
|
8
|
-
|
9
|
-
.details {
|
10
|
-
display: inline-block;
|
11
|
-
margin-left: 20px;
|
12
|
-
color: @color04;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
.robot-connections {
|
17
|
-
.name {
|
18
|
-
display: inline-block;
|
19
|
-
margin-left: 20px;
|
20
|
-
color: @color04;
|
21
|
-
}
|
22
|
-
|
23
|
-
.details {
|
24
|
-
display: inline-block;
|
25
|
-
margin-left: 20px;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
}
|
data/less/objects/device.less
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
.device-detail {
|
2
|
-
h2 {
|
3
|
-
text-align: center;
|
4
|
-
}
|
5
|
-
|
6
|
-
table {
|
7
|
-
margin-top: 15px;
|
8
|
-
|
9
|
-
th {
|
10
|
-
border-bottom: 1px solid #ccc;
|
11
|
-
line-height: 34px;
|
12
|
-
}
|
13
|
-
|
14
|
-
td {
|
15
|
-
font-family: @code-font-family;
|
16
|
-
padding: 3px;
|
17
|
-
}
|
18
|
-
}
|
19
|
-
|
20
|
-
.listeners {
|
21
|
-
margin-top: 0;
|
22
|
-
}
|
23
|
-
|
24
|
-
.remove {
|
25
|
-
color: #f00;
|
26
|
-
&:hover {
|
27
|
-
cursor: pointer;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
data/less/objects/forms.less
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
input[type="text"], select, textarea {
|
2
|
-
display: inline-block;
|
3
|
-
line-height: @line-height-base;
|
4
|
-
font-size: @body-font-size;
|
5
|
-
color: @body-text-color;
|
6
|
-
.form-control();
|
7
|
-
.form-control-focus(@input-border-color-focus);
|
8
|
-
box-sizing: border-box;
|
9
|
-
}
|
10
|
-
|
11
|
-
button {
|
12
|
-
outline: none;
|
13
|
-
}
|
14
|
-
|
15
|
-
button::-moz-focus-inner,
|
16
|
-
input[type="reset"]::-moz-focus-inner,
|
17
|
-
input[type="button"]::-moz-focus-inner,
|
18
|
-
input[type="submit"]::-moz-focus-inner,
|
19
|
-
input[type="file"] > input[type="button"]::-moz-focus-inner {
|
20
|
-
outline: none;
|
21
|
-
}
|
22
|
-
|
23
|
-
button:focus::-moz-focus-inner,
|
24
|
-
input[type="reset"]:focus::-moz-focus-inner,
|
25
|
-
input[type="button"]:focus::-moz-focus-inner,
|
26
|
-
input[type="submit"]:focus::-moz-focus-inner,
|
27
|
-
input[type="file"] > input[type="button"]:focus::-moz-focus-inner {
|
28
|
-
outline: none;
|
29
|
-
}
|
data/less/objects/list.less
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
.list {
|
2
|
-
margin-top: 20px;
|
3
|
-
|
4
|
-
.close {
|
5
|
-
float: right;
|
6
|
-
color: #ccc;
|
7
|
-
&:hover {
|
8
|
-
color: #f00;
|
9
|
-
cursor: pointer;
|
10
|
-
}
|
11
|
-
}
|
12
|
-
|
13
|
-
.theme, .widget {
|
14
|
-
display: block;
|
15
|
-
clear: both;
|
16
|
-
padding: 5px;
|
17
|
-
border-bottom: 1px dotted #ccc;
|
18
|
-
|
19
|
-
&:hover {
|
20
|
-
cursor: pointer;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
|
24
|
-
.selected {
|
25
|
-
background: #eee;
|
26
|
-
}
|
27
|
-
}
|
data/less/objects/nav.less
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
|
2
|
-
nav {
|
3
|
-
background: @nav-background-color;
|
4
|
-
height: 70px;
|
5
|
-
margin-bottom: 20px;
|
6
|
-
|
7
|
-
.logo {
|
8
|
-
display: inline-block;
|
9
|
-
margin: 15px 15px 0 15px;
|
10
|
-
}
|
11
|
-
|
12
|
-
.links {
|
13
|
-
float: right;
|
14
|
-
margin-top: 15px;
|
15
|
-
a {
|
16
|
-
color: @nav-link-color;
|
17
|
-
text-decoration: none;
|
18
|
-
display: inline-block;
|
19
|
-
.button-size(10px; 15px; 15px; 20px; 2px);
|
20
|
-
&:hover {
|
21
|
-
color: @nav-link-color-hover;
|
22
|
-
text-decoration: none;
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
.active {
|
27
|
-
background: @nav-link-background-hover;
|
28
|
-
&:hover {
|
29
|
-
color: @nav-link-color;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
data/less/objects/robot.less
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
.robot {
|
2
|
-
.container();
|
3
|
-
|
4
|
-
.details {
|
5
|
-
float: right;
|
6
|
-
line-height: 43px;
|
7
|
-
span {
|
8
|
-
color: @connection-digits-color;
|
9
|
-
margin-left: 50px;
|
10
|
-
}
|
11
|
-
|
12
|
-
strong {
|
13
|
-
color: @body-text-color;
|
14
|
-
margin-right: 20px;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
|
18
|
-
.name {
|
19
|
-
margin-left: 20px;
|
20
|
-
}
|
21
|
-
|
22
|
-
.commands {
|
23
|
-
.clearfix();
|
24
|
-
|
25
|
-
button {
|
26
|
-
display: block;
|
27
|
-
font-weight: bold;
|
28
|
-
margin-top: 15px;
|
29
|
-
}
|
30
|
-
|
31
|
-
table {
|
32
|
-
th {
|
33
|
-
border-bottom: 1px solid #ccc;
|
34
|
-
line-height: 34px;
|
35
|
-
}
|
36
|
-
|
37
|
-
td {
|
38
|
-
font-family: @code-font-family;
|
39
|
-
padding: 3px;
|
40
|
-
}
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
data/less/objects/themes.less
DELETED
data/less/objects/widgets.less
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
.widgets {
|
2
|
-
.new-widget, .new-attr {
|
3
|
-
input {
|
4
|
-
padding: 8px 12px;
|
5
|
-
}
|
6
|
-
}
|
7
|
-
|
8
|
-
.new-attr {
|
9
|
-
padding-top: 15px;
|
10
|
-
}
|
11
|
-
|
12
|
-
.attrs {
|
13
|
-
padding-bottom: 20px;
|
14
|
-
}
|
15
|
-
|
16
|
-
.footer {
|
17
|
-
text-align: right;
|
18
|
-
|
19
|
-
.btn-reset {
|
20
|
-
margin-right: 10px;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
|
24
|
-
.new-widget-instance {
|
25
|
-
position: fixed;
|
26
|
-
top: 0;
|
27
|
-
left: 0;
|
28
|
-
background-color: rgba(0,0,0,0.5);
|
29
|
-
z-index: 99;
|
30
|
-
overflow: hidden;
|
31
|
-
}
|
32
|
-
|
33
|
-
.panel {
|
34
|
-
background: @modal-bg-color;
|
35
|
-
padding: 6px;
|
36
|
-
.rounded(4px);
|
37
|
-
position: relative;
|
38
|
-
.drop-shadow(0, 0, 5px, 0.3);
|
39
|
-
overflow: hidden;
|
40
|
-
|
41
|
-
.panel-header, .panel-body, .panel-footer {
|
42
|
-
.clearfix();
|
43
|
-
}
|
44
|
-
|
45
|
-
.panel-header {
|
46
|
-
border-bottom: 1px solid #eaeaea;
|
47
|
-
}
|
48
|
-
|
49
|
-
.panel-footer {
|
50
|
-
border-top: 1px solid #eaeaea;
|
51
|
-
padding-top: 6px;
|
52
|
-
margin-top: 12px;
|
53
|
-
text-align: right;
|
54
|
-
}
|
55
|
-
|
56
|
-
.close {
|
57
|
-
position: absolute;
|
58
|
-
top: 4px;
|
59
|
-
right: 10px;
|
60
|
-
color: #ccc;
|
61
|
-
&:hover {
|
62
|
-
cursor: pointer;
|
63
|
-
color: #f00;
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
h2 {
|
68
|
-
margin: 0 0 15px 0;
|
69
|
-
text-align: center;
|
70
|
-
}
|
71
|
-
|
72
|
-
h3, label {
|
73
|
-
font-size: 14px;
|
74
|
-
}
|
75
|
-
|
76
|
-
select {
|
77
|
-
display: block;
|
78
|
-
}
|
79
|
-
|
80
|
-
.attr-element {
|
81
|
-
.clearfix();
|
82
|
-
margin-bottom: 10px;
|
83
|
-
}
|
84
|
-
}
|
85
|
-
}
|
data/less/support/buttons.less
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
.button-variant(@color; @background; @border) {
|
2
|
-
color: @color;
|
3
|
-
background-color: @background;
|
4
|
-
border-color: @border;
|
5
|
-
|
6
|
-
&:hover,
|
7
|
-
&:focus,
|
8
|
-
&:active,
|
9
|
-
&.active {
|
10
|
-
color: @color;
|
11
|
-
background-color: darken(@background, 10%);
|
12
|
-
border-color: darken(@border, 12%);
|
13
|
-
}
|
14
|
-
|
15
|
-
&:active,
|
16
|
-
&.active {
|
17
|
-
background-image: none;
|
18
|
-
}
|
19
|
-
|
20
|
-
&.disabled,
|
21
|
-
&[disabled],
|
22
|
-
fieldset[disabled] & {
|
23
|
-
&,
|
24
|
-
&:hover,
|
25
|
-
&:focus,
|
26
|
-
&:active,
|
27
|
-
&.active {
|
28
|
-
background-color: @background;
|
29
|
-
border-color: @border;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
33
|
-
|
34
|
-
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
35
|
-
padding: @padding-vertical @padding-horizontal;
|
36
|
-
font-size: @font-size;
|
37
|
-
line-height: @line-height;
|
38
|
-
border-radius: @border-radius;
|
39
|
-
}
|
data/less/support/container.less
DELETED
data/less/support/forms.less
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
.form-control() {
|
2
|
-
padding: 6px 12px;
|
3
|
-
background-color: #fff;
|
4
|
-
background-image: none;
|
5
|
-
border: 1px solid #ccc;
|
6
|
-
.rounded(4px);
|
7
|
-
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
8
|
-
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
9
|
-
}
|
10
|
-
|
11
|
-
.form-control-focus(@color) {
|
12
|
-
@color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
|
13
|
-
&:focus {
|
14
|
-
border-color: @color;
|
15
|
-
outline: 0;
|
16
|
-
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
|
17
|
-
}
|
18
|
-
}
|
data/less/support/mixins.less
DELETED
data/less/themes/blackboard.less
DELETED
@@ -1,158 +0,0 @@
|
|
1
|
-
/* Color Palette */
|
2
|
-
@color01: #343434;
|
3
|
-
@color02: #2C2C2C;
|
4
|
-
@color03: #fff;
|
5
|
-
@color04: #1cbcd8;
|
6
|
-
@color05: #fff;
|
7
|
-
@color06: #fff;
|
8
|
-
|
9
|
-
/* Body Variables */
|
10
|
-
@body-background-color: @color01;
|
11
|
-
@body-text-color : @color03;
|
12
|
-
@body-font-family : "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
13
|
-
@body-font-size : 15px;
|
14
|
-
@line-height-base : 1.428571429; // 20/14
|
15
|
-
@line-height-computed : floor((@body-font-size * @line-height-base)); // ~20px
|
16
|
-
|
17
|
-
/* Row */
|
18
|
-
@row-background-color : @color01;
|
19
|
-
|
20
|
-
/* Code Font */
|
21
|
-
@code-font-family : Inconsolata, monospace;
|
22
|
-
|
23
|
-
/* Nav Variables */
|
24
|
-
@nav-background-color : @color02;
|
25
|
-
@nav-link-color : #fff;
|
26
|
-
@nav-link-color-hover : @color04;
|
27
|
-
@nav-link-background : @color03;
|
28
|
-
@nav-link-background-hover : @color04;
|
29
|
-
|
30
|
-
/* Buttons */
|
31
|
-
@btn-robot-color : @color01;
|
32
|
-
@btn-robot-background : @color04;
|
33
|
-
@btn-run-color : @color01;
|
34
|
-
@btn-run-background : #CA5252;
|
35
|
-
@btn-device-color : @color01;
|
36
|
-
@btn-device-background : #56d884;
|
37
|
-
@btn-connect-color : @color01;
|
38
|
-
@btn-connect-background : #d8ca69;
|
39
|
-
|
40
|
-
/* Forms */
|
41
|
-
@input-border-color: #999;
|
42
|
-
@input-border-color-focus: #fff;
|
43
|
-
|
44
|
-
/* Connection Digits */
|
45
|
-
@connection-digits-color: #fff;
|
46
|
-
|
47
|
-
/* Widgets */
|
48
|
-
@modal-bg-color: #4D4D4D;
|
49
|
-
|
50
|
-
@import '../vendor/elements';
|
51
|
-
@import '../support/mixins';
|
52
|
-
|
53
|
-
body {
|
54
|
-
background-color: @body-background-color;
|
55
|
-
color: @body-text-color;
|
56
|
-
}
|
57
|
-
|
58
|
-
nav {
|
59
|
-
background: @nav-background-color;
|
60
|
-
|
61
|
-
.links a {
|
62
|
-
background: none;
|
63
|
-
padding: 8px 13px;
|
64
|
-
&.active {
|
65
|
-
background: none;
|
66
|
-
color: #fff;
|
67
|
-
border: 2px solid @color04;
|
68
|
-
}
|
69
|
-
|
70
|
-
&:hover {
|
71
|
-
color: @color04 !important;
|
72
|
-
}
|
73
|
-
}
|
74
|
-
}
|
75
|
-
|
76
|
-
.row {
|
77
|
-
border-top: 1px solid @color04;
|
78
|
-
padding-top: 25px;
|
79
|
-
padding-bottom: 25px;
|
80
|
-
width: 960px;
|
81
|
-
.container-block();
|
82
|
-
|
83
|
-
&:last-child {
|
84
|
-
border-bottom: 1px solid @color04;
|
85
|
-
}
|
86
|
-
}
|
87
|
-
|
88
|
-
.row-device {
|
89
|
-
border-top: none;
|
90
|
-
border-bottom: none !important;
|
91
|
-
}
|
92
|
-
|
93
|
-
.robot {
|
94
|
-
.details {
|
95
|
-
span {
|
96
|
-
color: @connection-digits-color;
|
97
|
-
}
|
98
|
-
|
99
|
-
strong {
|
100
|
-
color: @color04;
|
101
|
-
}
|
102
|
-
}
|
103
|
-
}
|
104
|
-
|
105
|
-
.row {
|
106
|
-
background-color: @row-background-color;
|
107
|
-
}
|
108
|
-
|
109
|
-
.bullet-connections {
|
110
|
-
padding-left: 32px;
|
111
|
-
background: transparent url(../../images/bullet-connections.png) no-repeat left center;
|
112
|
-
}
|
113
|
-
|
114
|
-
.bullet-devices {
|
115
|
-
padding-left: 32px;
|
116
|
-
background: transparent url(../../images/bullet-devices.png) no-repeat left center;
|
117
|
-
}
|
118
|
-
|
119
|
-
.robot-devices {
|
120
|
-
background: transparent url(../../images/devices-image.png) no-repeat 21px center;
|
121
|
-
padding-left: 84px;
|
122
|
-
}
|
123
|
-
|
124
|
-
.btn-robot {
|
125
|
-
.button-variant(@btn-robot-color; @btn-robot-background; @btn-robot-color);
|
126
|
-
}
|
127
|
-
|
128
|
-
.btn-device, .btn-save {
|
129
|
-
.button-variant(@btn-device-color; @btn-device-background; @btn-device-color);
|
130
|
-
}
|
131
|
-
|
132
|
-
.btn-connect {
|
133
|
-
.button-variant(@btn-connect-color; @btn-connect-background; @btn-connect-color);
|
134
|
-
}
|
135
|
-
|
136
|
-
.btn-run, .btn-reset {
|
137
|
-
.button-variant(@btn-run-color; @btn-run-background; @btn-run-color);
|
138
|
-
}
|
139
|
-
|
140
|
-
input[type="text"], select, textarea {
|
141
|
-
color: @body-text-color;
|
142
|
-
background: @color01;
|
143
|
-
.form-control-focus(@input-border-color-focus);
|
144
|
-
}
|
145
|
-
|
146
|
-
.widgets {
|
147
|
-
.panel {
|
148
|
-
background: @modal-bg-color;
|
149
|
-
|
150
|
-
.panel-header {
|
151
|
-
border-bottom: 1px solid #666;
|
152
|
-
}
|
153
|
-
|
154
|
-
.panel-footer {
|
155
|
-
border-top: 1px solid #666;
|
156
|
-
}
|
157
|
-
}
|
158
|
-
}
|