aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--css/angular-scenario.css62
-rw-r--r--css/angular.css172
-rw-r--r--css/images/arrow_ascend.pngbin0 -> 3093 bytes
-rw-r--r--css/images/arrow_descend.pngbin0 -> 3076 bytes
-rw-r--r--css/images/arrow_left.gifbin0 -> 102 bytes
-rw-r--r--css/images/arrow_right.gifbin0 -> 102 bytes
-rw-r--r--css/images/loader-bar.gifbin0 -> 10819 bytes
7 files changed, 234 insertions, 0 deletions
diff --git a/css/angular-scenario.css b/css/angular-scenario.css
new file mode 100644
index 00000000..ad263d21
--- /dev/null
+++ b/css/angular-scenario.css
@@ -0,0 +1,62 @@
+@charset "UTF-8";
+/* CSS Document */
+
+#runner {
+ position: absolute;
+ top:5px;
+ left:10px;
+ right:10px;
+ height: 200px;
+}
+
+#testView {
+ position: absolute;
+ bottom:10px;
+ top:210px;
+ left:10px;
+ right:10px;
+}
+
+#testView iframe {
+ width: 100%;
+ height: 100%;
+}
+
+.console {
+ display: block;
+ overflow: scroll;
+ height: 200px;
+ border: 1px solid black;
+}
+
+.collapsed .log {
+ display: none;
+}
+
+.run, .info, .error {
+ display: block;
+ padding: 0 1em;
+ font-family: monospace;
+ white-space: pre;
+}
+
+.run {
+ background-color: lightgrey;
+ padding: 0 .2em;
+}
+
+.run.pass {
+ background-color: lightgreen;
+}
+
+.run.fail {
+ background-color: lightred;
+}
+
+.name, .time, .state {
+ padding-right: 2em;
+}
+
+error {
+ color: red;
+} \ No newline at end of file
diff --git a/css/angular.css b/css/angular.css
new file mode 100644
index 00000000..08065295
--- /dev/null
+++ b/css/angular.css
@@ -0,0 +1,172 @@
+@charset "UTF-8";
+/* CSS Document */
+
+#ng-console {
+ border: thin solid black;
+ font-family: 'courier';
+ font-size: x-small;
+}
+
+#ng-console .ng-console-error {
+ color: red;
+}
+
+#ng-console .ng-console-info {
+ color: blue;
+}
+
+.ng-upload-widget object {
+ align:center;
+}
+
+.ng-upload-widget a {
+ margin-right: .3em;
+}
+
+.ng-upload-widget span {
+ color: #999999;
+ font-size: smaller;
+}
+
+.ng-format-negative {
+ color: red;
+}
+
+.ng-exception {
+ border: 2px solid #FF0000;
+ font-family: "Courier New", Courier, monospace;
+ font-size: smaller;
+}
+
+.ng-validation-error {
+ border: 2px solid #FF0000;
+}
+
+.ng-hidden {
+ display:none;
+}
+
+/*****************
+ * DatePicker
+ *****************/
+
+div.ui-widget {
+ font-size: 11px;
+ }
+
+/*****************
+ * OrderBy
+ *****************/
+.ng-ascend,
+.ng-descend {
+ padding-right: 20px;
+ background-repeat: no-repeat;
+ background-position: right;
+}
+.ng-ascend { background-image: url(images/arrow_ascend.png); }
+.ng-descend { background-image: url(images/arrow_descend.png); }
+
+/*****************
+ * TIP
+ *****************/
+#ng-callout {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ outline: 0;
+ font-size: 13px;
+ font-weight: normal;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ vertical-align: baseline;
+ background: transparent;
+ text-decoration: none;
+}
+
+#ng-callout .ng-arrow-left{
+ background-image: url(images/arrow_left.gif);
+ background-repeat: no-repeat;
+ background-position: left top;
+ position: absolute;
+ z-index:101;
+ left:-12px;
+ height:23px;
+ width:10px;
+ top:-3px;
+}
+
+#ng-callout .ng-arrow-right{
+ background-image: url(images/arrow_right.gif);
+ background-repeat: no-repeat;
+ background-position: left top;
+ position: absolute;
+ z-index:101;
+ height:23px;
+ width:11px;
+ top:-2px;
+}
+
+#ng-callout {
+ position: absolute;
+ z-index:100;
+ border: 2px solid #CCCCCC;
+ background-color: #fff;
+}
+
+#ng-callout .ng-content{
+ padding:10px 10px 10px 10px;
+ color:#333333;
+}
+
+
+#ng-callout .ng-title{
+ background-color: #CCCCCC;
+ text-align: left;
+ padding-left: 8px;
+ padding-bottom: 5px;
+ padding-top: 2px;
+ font-weight:bold;
+}
+
+
+#ng-spacer {
+ height: 1.2em;
+}
+
+#ng-loading {
+ position: fixed;
+ bottom: 0;
+ height: 1.2em;
+ width: 100%;
+ text-align: center;
+}
+
+/*****************
+ * Login
+ *****************/
+
+#ng-login {
+ z-index: 2000;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding-top: 100px;
+}
+
+#ng-login .ng-login-container {
+ width: 500px;
+ height: 380px;
+ margin: auto;
+ border-top: 5px solid #FFF;
+ border-left: 5px solid #DDD;
+ border-right: 5px solid #777;
+ border-bottom: 5px solid #555;
+ padding: 0 3px 3px 0;
+}
+
+#ng-login .ng-login-container iframe {
+ width: 100%;
+ height: 100%;
+ border: 2px solid black;
+}
diff --git a/css/images/arrow_ascend.png b/css/images/arrow_ascend.png
new file mode 100644
index 00000000..dd27b92b
--- /dev/null
+++ b/css/images/arrow_ascend.png
Binary files differ
diff --git a/css/images/arrow_descend.png b/css/images/arrow_descend.png
new file mode 100644
index 00000000..ec1cb5df
--- /dev/null
+++ b/css/images/arrow_descend.png
Binary files differ
diff --git a/css/images/arrow_left.gif b/css/images/arrow_left.gif
new file mode 100644
index 00000000..4c9e5c66
--- /dev/null
+++ b/css/images/arrow_left.gif
Binary files differ
diff --git a/css/images/arrow_right.gif b/css/images/arrow_right.gif
new file mode 100644
index 00000000..3252c359
--- /dev/null
+++ b/css/images/arrow_right.gif
Binary files differ
diff --git a/css/images/loader-bar.gif b/css/images/loader-bar.gif
new file mode 100644
index 00000000..47adbf03
--- /dev/null
+++ b/css/images/loader-bar.gif
Binary files differ