diff --git a/apps/st2-actions/style.less b/apps/st2-actions/style.less index fa38a5c25..f34295bd0 100644 --- a/apps/st2-actions/style.less +++ b/apps/st2-actions/style.less @@ -58,7 +58,50 @@ position: relative; flex: 1; - + + .panel-default { + border: none; + border-radius: 0; + } + + .panel-heading { + background: #666; + border-bottom: 1px solid #999; + h2 { + color: white; + font-size: 15px; + text-transform: uppercase; + font-weight: 200; + font-family: Oswald; + } + } + + .panel-body { + padding: 0; + } + + .panel, .panel-heading, .panel-body, .table { + border: none; + border-radius: 0; + box-shadow: none; + margin: 0; + + th { + border-bottom: none; + } + .odd { + background-color: #E9E9EC; + } + .even { + background-color: transparent; + } + .table-hover > tbody > tr:hover > td, + .table-hover > tbody > tr:hover > th { + background-color: #428bca; + color: white; + } + } + &__list { margin: 0; padding: 0; diff --git a/apps/st2-actions/template.html b/apps/st2-actions/template.html index b7b9d6ae9..4d070099e 100644 --- a/apps/st2-actions/template.html +++ b/apps/st2-actions/template.html @@ -1,13 +1,40 @@
-
+
+
+

Category One

+
+ +
+ + + + + + + + + + + + + + + + + + +
Machine NameHuman-friendly NameDescriptionStatus
{{ action.name }}{{ action.runner_type }}{{ action.description }}{{ action.enabled }}
+
+
diff --git a/index.html b/index.html index 729e1f72a..9b0238878 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ + diff --git a/less/style.less b/less/style.less index 2b8951b1d..b18704eca 100644 --- a/less/style.less +++ b/less/style.less @@ -1,8 +1,13 @@ @import (inline) "../components/normalize-css/normalize.css"; +@import (reference) '/components/bootstrap/less/variables.less'; +@import (reference) '/components/bootstrap/less/mixins.less'; + @import "fonts"; @import "layout"; @import "colors"; +@import "/components/bootstrap/less/tables.less"; +@import "/components/bootstrap/less/panels.less"; html, body { height: 100%;