123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- .button {
- @extend %button;
- @include button-color(lighten($secondary-accent-bg, 10%));
- &.dropdown-toggle {
- border-left: 1px solid lighten($secondary-accent-bg, 5%);
- }
- &.secondary {
- @include button-color(shade($secondary-accent-bg, 20%));
- &.dropdown-toggle {
- border-left: 1px solid lighten(shade($secondary-accent-bg, 20%), 5%);
- }
- }
- }
- .button-group {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- // real button
- > .button:first-child:not(:last-child):not(.dropdown-toggle) {
- border-top-right-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- }
- > .button:first-child {
- margin-left: 0 !important;
- }
- > .button {
- position: relative;
- float: left;
- }
- // toggle caret
- > .button + .dropdown-toggle {
- text-align: center;
- padding-right: 8px;
- padding-left: 8px;
- i {
- margin: 0;
- }
- }
- > .button:last-child:not(:first-child), > .dropdown-toggle:not(:first-child) {
- border-top-left-radius: 0 !important;
- border-bottom-left-radius: 0 !important;
- }
- .button + .button, .button + .button-group, .button-group + .button, .button-group + .button-group {
- margin-left: -1px;
- }
- .dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- right: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 5px 0;
- margin: 2px 0 0;
- font-size: 14px;
- text-align: left;
- list-style: none;
- background-color: lighten($secondary-accent-bg, 10%);
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 1px solid lighten($secondary-accent-bg, 5%);
- border: 1px solid rgba(0, 0, 0, .15);
- border-radius: 4px;
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-
- &.language-switcher {
- min-width: auto;
- }
- &.lang-switcher {
- min-width: 150px;
- left: inherit;
- button {
- width: 100%;
- }
- }
- .divider {
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: $secondary-accent-bg;
- }
- li > a {
- display: block;
- padding: 3px 20px;
- clear: both;
- font-weight: 400;
- line-height: 1.42857143;
- color: $white;
- white-space: nowrap;
- &:focus, &:hover {
- color: $white;
- text-decoration: none;
- background-color: $secondary-accent-bg;
- }
- }
- &.language-switcher {
- a.active {
- background-color: #349886
- }
- }
- }
- }
- .open > .dropdown-menu {
- display: block;
- }
- .dropdown-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 990;
- }
|