From 01ef61d8fc3e18fe159e98d36414ef0ba92ff2a7 Mon Sep 17 00:00:00 2001 From: Kapil Viren Ahuja Date: Thu, 23 Mar 2017 15:17:03 +0530 Subject: adding the new theme --- templates/assets/sass/material-kit/_dropdown.scss | 58 ----------------------- 1 file changed, 58 deletions(-) delete mode 100644 templates/assets/sass/material-kit/_dropdown.scss (limited to 'templates/assets/sass/material-kit/_dropdown.scss') diff --git a/templates/assets/sass/material-kit/_dropdown.scss b/templates/assets/sass/material-kit/_dropdown.scss deleted file mode 100644 index 19e1a9b..0000000 --- a/templates/assets/sass/material-kit/_dropdown.scss +++ /dev/null @@ -1,58 +0,0 @@ -.dropdown-menu { - border: 0; - box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); - - .divider { - background-color: rgba(0, 0, 0, .12); - } - - - li > a{ - font-size: $mdb-dropdown-font-size; - padding: 10px 20px; - margin: 0 5px; - border-radius: $border-radius-small; - @include transition($fast-transition-time, $transition-linear); - - &:hover, - &:focus { - @include shadow-8dp(); - - } - } - - li { - position: relative; - a:hover, - a:focus, - a:active { - background-color: $brand-primary; - color: #FFFFFF; - } - } - - .divider{ - margin: 5px 0; - } -} - -@media (min-width: $screen-md-min){ - .dropdown{ - .dropdown-menu{ - @include transition($fast-transition-time, $transition-linear); - margin-top: -20px; - opacity: 0; - visibility: hidden; - display: block; - } - - &.open{ - .dropdown-menu{ - opacity: 1; - visibility: visible; - margin-top: 1px; - } - } - } - -} -- cgit v1.3.1