summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_command-box.scss
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-22 19:19:27 -0800
committerCorey Hulen <corey@hulen.com>2015-07-22 19:19:27 -0800
commitdc79707787b521ea5fc0d9088ccd9069780c8e0c (patch)
tree2f37a2aa6aa897fac5c5045d513eb1a69c818f6e /web/sass-files/sass/partials/_command-box.scss
parent37c8193dceb37dc6bd2d38b50fdbe0b4647bff2f (diff)
parent8476062d214230e2370af87a9495457c7a5a2a6d (diff)
downloadchat-dc79707787b521ea5fc0d9088ccd9069780c8e0c.tar.gz
chat-dc79707787b521ea5fc0d9088ccd9069780c8e0c.tar.bz2
chat-dc79707787b521ea5fc0d9088ccd9069780c8e0c.zip
Merge pull request #194 from ralder/fix-command-box-css
[webui] fix command-list css
Diffstat (limited to 'web/sass-files/sass/partials/_command-box.scss')
-rw-r--r--web/sass-files/sass/partials/_command-box.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_command-box.scss b/web/sass-files/sass/partials/_command-box.scss
new file mode 100644
index 000000000..44eb9b8df
--- /dev/null
+++ b/web/sass-files/sass/partials/_command-box.scss
@@ -0,0 +1,25 @@
+.command-box {
+ position: absolute;
+ background-color: #fff;
+ width: 100%;
+ border: $border-gray;
+ bottom: 38px;
+ @extend %popover-box-shadow;
+}
+
+.command-name {
+ position: relative;
+ width: 100%;
+ background-color: #fff;
+ height: 37px;
+ line-height: 37px;
+ padding: 2px 10px 2px 5px;
+ z-index: 101;
+ &:hover {
+ background-color: #e8eaed;
+ }
+}
+
+.command-desc {
+ color: #a7a8ab;
+} \ No newline at end of file