Skip to content

Commit

Permalink
[fix] daterangepicker styles
Browse files Browse the repository at this point in the history
  • Loading branch information
schwarz9791 committed Oct 28, 2019
1 parent 1f0ba8c commit 9ada97a
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 6 deletions.
17 changes: 17 additions & 0 deletions build/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4717,6 +4717,23 @@ ul.notifications {

/** /Dropzone.js **/

.daterangepicker.dropdown-menu {
border: 0;
z-index: auto;
}

.daterangepicker.dropdown-menu .calendar {
margin: 0;
}

.daterangepicker.dropdown-menu .calendar .calendar-table {
border: 0;
}

.daterangepicker.dropdown-menu .calendar .calendar-table table {
border-collapse: separate;
}

.daterangepicker .ranges li {
color: #73879C;
}
Expand Down
2 changes: 1 addition & 1 deletion build/css/custom.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/css/maps/custom.min.css.map

Large diffs are not rendered by default.

21 changes: 17 additions & 4 deletions src/scss/daterangepicker.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
.daterangepicker {
&.dropdown-menu {
border: 0;
z-index: auto;
.calendar {
margin: 0;
.calendar-table {
border: 0;
table {
border-collapse: separate;
}
}
}
}
.ranges {
li {
color: #73879C;

&.active, &:hover {
background: #536A7F;
border: 1px solid #536A7F;
color: #fff;
color: #fff;
}
}
}
Expand Down Expand Up @@ -53,7 +66,7 @@
&.active, &.active:hover {
background-color: #536A7F;
color: #fff;
}
}
}

th.available:hover {
Expand Down Expand Up @@ -184,4 +197,4 @@
.calendar-table {
padding: 0 0 4px 0;
}
}
}

0 comments on commit 9ada97a

Please sign in to comment.