Skip to content

Commit

Permalink
Dropdown & code
Browse files Browse the repository at this point in the history
  • Loading branch information
overtrue committed Jun 22, 2016
1 parent 081f949 commit c304eb3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/css/slim-min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions src/scss/_code.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Inline code
code {
text-rendering: optimizeLegibility;
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
font-weight: 300;
}
7 changes: 7 additions & 0 deletions src/scss/_dropdown.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Dropdown


.dropdown-menu {
border: none;
box-shadow: $box-shadow-sm;
}
14 changes: 14 additions & 0 deletions src/scss/_utilities.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.pull-left {
@include pull-left();
}
.pull-right {
@include pull-right();
}
.pull-none {
float: none !important;
}


.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
3 changes: 2 additions & 1 deletion src/scss/slim.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
@import "breadcrumb";
@import "card";
@import "code";
@import "dropdown";
@import "modals";
@import "pagination";
@import "popover";
Expand All @@ -20,4 +21,4 @@ body {
text-rendering:optimizeLegibility;
font-smoothing:antialiased;
font-weight: 300;
}
}

0 comments on commit c304eb3

Please sign in to comment.