-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/dnn92_datepicker'
- Loading branch information
Showing
10 changed files
with
171 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
OpenContent/js/lib/eonasdan-bootstrap-datetimepicker/LICENSE
This file was deleted.
Oops, something went wrong.
98 changes: 98 additions & 0 deletions
98
...s/lib/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker-standalone.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
@font-face { | ||
font-family: 'Glyphicons Halflings'; | ||
src: url('../fonts/glyphicons-halflings-regular.eot'); | ||
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); | ||
} | ||
|
||
.glyphicon { | ||
position: relative; | ||
top: 1px; | ||
display: inline-block; | ||
font-family: 'Glyphicons Halflings'; | ||
font-style: normal; | ||
font-weight: normal; | ||
line-height: 1; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
.glyphicon-time:before { | ||
content: "\e023"; | ||
} | ||
|
||
.glyphicon-chevron-left:before { | ||
content: "\e079"; | ||
} | ||
|
||
.glyphicon-chevron-right:before { | ||
content: "\e080"; | ||
} | ||
|
||
.glyphicon-chevron-up:before { | ||
content: "\e113"; | ||
} | ||
|
||
.glyphicon-chevron-down:before { | ||
content: "\e114"; | ||
} | ||
|
||
.glyphicon-calendar:before { | ||
content: "\e109"; | ||
} | ||
|
||
.btn { | ||
display: inline-block; | ||
padding: 6px 12px; | ||
margin-bottom: 0; | ||
font-size: 14px; | ||
font-weight: normal; | ||
line-height: 1.42857143; | ||
text-align: center; | ||
white-space: nowrap; | ||
vertical-align: middle; | ||
-ms-touch-action: manipulation; | ||
touch-action: manipulation; | ||
cursor: pointer; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
background-image: none; | ||
border: 1px solid transparent; | ||
border-radius: 4px; | ||
} | ||
|
||
.collapse { | ||
display: none; | ||
} | ||
|
||
.collapse.in { | ||
display: block; | ||
} | ||
|
||
.dropdown-menu { | ||
position: absolute; | ||
left: 0; | ||
z-index: 1000; | ||
display: none; | ||
float: left; | ||
min-width: 160px; | ||
padding: 5px 0; | ||
margin: 2px 0 0; | ||
font-size: 14px; | ||
text-align: left; | ||
list-style: none; | ||
background-color: #fff; | ||
-webkit-background-clip: padding-box; | ||
background-clip: padding-box; | ||
border: 1px solid #ccc; | ||
border: 1px solid rgba(0, 0, 0, .15); | ||
border-radius: 4px; | ||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); | ||
box-shadow: 0 6px 12px rgba(0, 0, 0, .175); | ||
} | ||
|
||
.list-unstyled { | ||
padding-left: 0; | ||
list-style: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.