Updates and LeafInput

This commit is contained in:
2016-01-13 21:56:22 -05:00
parent 79baded8b1
commit 048327666f
500 changed files with 80975 additions and 132 deletions
@@ -0,0 +1,88 @@
/*!
* Timepicker for Bootstrap
*
* Copyright 2012 Joris de Wit, Stefan Petre, Andrew Rowls
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
.bootstrap-timepicker {
&.dropdown-menu {
top: 0;
left: 0;
padding: 4px;
margin-top: 1px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
display: none;
&.open {
display: inline-block;
}
&:before {
content: '';
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -7px;
left: 6px;
}
&:after {
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 7px;
}
}
&.modal {
top: 30%;
margin-top: 0;
width: 200px;
margin-left: -100px;
.modal-content {
padding: 0;
}
}
table {
width: 100%;
margin: 0;
}
td, th {
text-align: center;
height: 20px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
td.separator {
width: 1px;
}
td a {
border: 1px transparent solid;
display: block;
margin: 4px;
padding: 4px 0;
&:hover {
background-color: #eee;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
border-color: #ddd;
}
}
}