Skip to content

Commit

Permalink
update version 2.0.3
Browse files Browse the repository at this point in the history
fixed  #434
  • Loading branch information
easylogic committed Nov 28, 2016
1 parent b2853fe commit 871d22d
Show file tree
Hide file tree
Showing 18 changed files with 160 additions and 475 deletions.
1 change: 0 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ module.exports = function(grunt) {
"js/tab.js",
"js/tree.js",
"js/window.js",
"js/filedrop.js",
"js/property.js",
"js/select.js",
"js/splitter.js"
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jui",
"version": "2.0.2",
"version": "2.0.3",
"main": [
"dist/ui.min.js",
"dist/ui.min.css",
Expand Down
8 changes: 6 additions & 2 deletions dist/ui-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@
background: #181818;
}
.jui .datepicker > .head > .prev,
.jui .datepicker > .head .next {
.jui .datepicker > .head .next,
.jui .datepicker > .head .prev-year,
.jui .datepicker > .head .next-year {
color: #DCDCDC;
}
.jui .datepicker > .head > .title {
Expand Down Expand Up @@ -229,7 +231,9 @@
border-bottom-color: #595959;
}
.jui .calendar > .head > .prev,
.jui .calendar > .head .next {
.jui .calendar > .head .next,
.jui .calendar > .head .prev-year,
.jui .calendar > .head .next-year {
color: #DCDCDC;
}
.jui .calendar > .head > .title {
Expand Down
2 changes: 1 addition & 1 deletion dist/ui-dark.min.css

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions dist/ui-jennifer.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@
background: #fff;
}
.jui .datepicker > .head > .prev,
.jui .datepicker > .head .next {
.jui .datepicker > .head .next,
.jui .datepicker > .head .prev-year,
.jui .datepicker > .head .next-year {
color: #dcdcdc;
}
.jui .datepicker > .head > .title {
Expand Down Expand Up @@ -229,7 +231,9 @@
border-bottom-color: #ebebeb;
}
.jui .calendar > .head > .prev,
.jui .calendar > .head .next {
.jui .calendar > .head .next,
.jui .calendar > .head .prev-year,
.jui .calendar > .head .next-year {
color: #dcdcdc;
}
.jui .calendar > .head > .title {
Expand Down
2 changes: 1 addition & 1 deletion dist/ui-jennifer.min.css

Large diffs are not rendered by default.

41 changes: 40 additions & 1 deletion dist/ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -3194,12 +3194,38 @@
font-size: 9px;
cursor: pointer;
}
.jui .datepicker > .head > .prev-year,
.jui .datepicker > .head .next-year {
display: none;
position: absolute;
top: 7px;
font-size: 9px;
cursor: pointer;
}
.jui .datepicker > .head > .prev {
left: 5px;
}
.jui .datepicker > .head > .next {
right: 5px;
}
.jui .datepicker > .head.move-year > .prev-year,
.jui .datepicker > .head.move-year .next-year {
display: block;
font-size: 13px;
vertical-align: middle;
}
.jui .datepicker > .head.move-year > .prev-year {
left: 5px;
}
.jui .datepicker > .head.move-year > .next-year {
right: 5px;
}
.jui .datepicker > .head.move-year > .prev {
left: 30px;
}
.jui .datepicker > .head.move-year > .next {
right: 30px;
}
.jui .datepicker > table.body {
width: 100%;
height: 100%;
Expand Down Expand Up @@ -3294,16 +3320,29 @@
font-size: 20px;
}
.jui .calendar > .head > .prev,
.jui .calendar > .head .next {
.jui .calendar > .head .next,
.jui .calendar > .head .prev-year,
.jui .calendar > .head .next-year {
font-size: 14px;
cursor: pointer;
}
.jui .calendar > .head > .prev-year,
.jui .calendar > .head > .next-year {
display: none;
font-size: 16px;
vertical-align: middle;
margin-top: -5px;
}
.jui .calendar > .head > .prev {
margin-right: 12px;
}
.jui .calendar > .head > .next {
margin-left: 12px;
}
.jui .calendar > .head.move-year .prev-year,
.jui .calendar > .head.move-year .next-year {
display: inline-block;
}
.jui .calendar > table.body {
width: 100%;
height: 100%;
Expand Down
Loading

0 comments on commit 871d22d

Please sign in to comment.