Skip to content
Snippets Groups Projects
Commit 8651137a authored by Phil Hughes's avatar Phil Hughes
Browse files

Dropdown variables

parent c6f51662
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -187,13 +187,13 @@
position: absolute;
top: -1px;
padding: 0;
color: #BFBFBF;
color: $dropdown-title-btn-color;
font-size: 14px;
border: 0;
background: none;
 
&:hover {
color: darken(#BFBFBF, 15%);
color: darken($dropdown-title-btn-color, 15%);
}
}
 
Loading
Loading
@@ -222,7 +222,7 @@
.dropdown-input-field {
width: 100%;
padding: 0 7px;
color: #C7C7C7;
color: $dropdown-input-color;
line-height: 30px;
border: 1px solid $dropdown-divider-color;
border-radius: 2px;
Loading
Loading
@@ -230,8 +230,8 @@
 
&:focus {
color: $dropdown-link-color;
border-color: rgb(58, 171, 240);
box-shadow: 0 0 4px rgba(#000, .2);
border-color: $dropdown-input-focus-border;
box-shadow: 0 0 4px $dropdown-input-focus-shadow;
 
+ .fa {
color: $dropdown-link-color;
Loading
Loading
@@ -265,7 +265,7 @@
left: 0;
display: none;
z-index: 9;
background-color: rgba(#fff, .6);
background-color: $dropdown-loading-bg;
font-size: 28px;
 
.fa {
Loading
Loading
Loading
Loading
@@ -138,3 +138,8 @@ $dropdown-shadow-color: rgba(#000, .1);
$dropdown-divider-color: rgba(#000, .1);
$dropdown-header-color: #959494;
$dropdown-caret-color: #54565B;
$dropdown-title-btn-color: #BFBFBF;
$dropdown-input-color: #C7C7C7;
$dropdown-input-focus-border: rgb(58, 171, 240);
$dropdown-input-focus-shadow: rgba(#000, .2);
$dropdown-loading-bg: rgba(#fff, .6);
Loading
Loading
@@ -353,7 +353,7 @@
 
.example
%div
.dropdown.inline.open
.dropdown.inline
%button.dropdown-toggle.btn{type: 'button', data: {toggle: 'dropdown'}}
Dropdown page 2
%b.caret
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment