summaryrefslogtreecommitdiffstats
path: root/webapp/sass/layout/_sidebar-menu.scss
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-14 08:50:46 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-16 18:02:55 -0400
commit12896bd23eeba79884245c1c29fdc568cf21a7fa (patch)
tree4e7f83d3e2564b9b89d669e9f7905ff11768b11a /webapp/sass/layout/_sidebar-menu.scss
parent29fe6a3d13c9c7aa490fffebbe5d1b5fdf1e3090 (diff)
downloadchat-12896bd23eeba79884245c1c29fdc568cf21a7fa.tar.gz
chat-12896bd23eeba79884245c1c29fdc568cf21a7fa.tar.bz2
chat-12896bd23eeba79884245c1c29fdc568cf21a7fa.zip
Converting to Webpack. Stage 1.
Diffstat (limited to 'webapp/sass/layout/_sidebar-menu.scss')
-rw-r--r--webapp/sass/layout/_sidebar-menu.scss71
1 files changed, 71 insertions, 0 deletions
diff --git a/webapp/sass/layout/_sidebar-menu.scss b/webapp/sass/layout/_sidebar-menu.scss
new file mode 100644
index 000000000..9438491f9
--- /dev/null
+++ b/webapp/sass/layout/_sidebar-menu.scss
@@ -0,0 +1,71 @@
+@charset 'UTF-8';
+
+.sidebar--menu {
+ position: absolute;
+ width: 220px;
+ right: 0;
+ height: 100%;
+ border-right: $border-gray;
+ padding: 0 0 2em 0;
+ background: #fafafa;
+ display: none;
+ .nav-pills__container {
+ padding-top: 5px;
+ }
+ .team__header {
+ display: none;
+ padding: 0 15px;
+ @include legacy-pie-clearfix;
+ a {
+ color: #fff;
+ }
+ .navbar-right {
+ font-size: .85em;
+ margin: 16px -5px 0;
+ .dropdown-toggle {
+ padding: 0 10px;
+ }
+ .dropdown-menu {
+ li a {
+ padding: 3 20px;
+ color: #555;
+ }
+ }
+ .dropdown__icon {
+ width: 4px;
+ height: 16px;
+ @include background-size(100% 100%);
+ display: inline-block;
+ }
+ }
+ .team__name {
+ float: left;
+ line-height: 50px;
+ font-weight: 600;
+ font-size: 1.2em;
+ max-width: 80%;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ text-decoration: none;
+ }
+ }
+ .nav {
+ > li {
+ > a {
+ font-size: 15px;
+ background: none !important;
+ color: inherit;
+ line-height: 40px;
+ padding: 0 15px;
+ .fa,
+ .glyphicon {
+ width: 25px;
+ text-align: center;
+ left: -5px;
+ position: relative;
+ }
+ }
+ }
+ }
+}