Clean up horizon.scss - _datepicker.scss

A major part of the css reorg is a better organization of the css
styles themselves. horizon.scss should be a global import level file.

Move datepicker styles to component scss file.

Change-Id: I65dc92a67cb2dab66497d429539068c7a680a6b5
Partially-Implements: blueprint horizon-theme-css-reorg
This commit is contained in:
Diana Whitten 2015-12-22 10:04:53 -07:00
parent 57a52c3608
commit b8fff81cdd
2 changed files with 8 additions and 10 deletions

View File

@ -0,0 +1,7 @@
.datepicker {
z-index: $zindex-popover !important;
}
.datepicker input{
@extend .form-control;
}

View File

@ -35,6 +35,7 @@
@import "components/tables";
@import "components/messages";
@import "components/table_actions";
@import "components/datepicker";
// Contrib stuff
@import "contrib";
@ -96,16 +97,6 @@ a.current_item:hover h4 {
font-size: 24px;
}
/* Forms */
.datepicker {
z-index: $zindex-popover !important;
}
.datepicker input{
@extend .form-control;
}
.modal.fullscreen .modal-dialog {
width: 90%;
margin: auto;