aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/bower_components/bootstrap-timepicker/css/timepicker.less
diff options
context:
space:
mode:
authorMarvin Borner2018-07-13 19:06:45 +0200
committerMarvin Borner2018-07-13 19:06:45 +0200
commit6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 (patch)
treedbc87ef16fa01d5d99116de283592b8fe5e02944 /public/bower_components/bootstrap-timepicker/css/timepicker.less
parentdfd839f27146df0ad0494e11734fc7d310c70ebf (diff)
Fixed many permissions and began admin interface
Diffstat (limited to 'public/bower_components/bootstrap-timepicker/css/timepicker.less')
-rw-r--r--public/bower_components/bootstrap-timepicker/css/timepicker.less172
1 files changed, 172 insertions, 0 deletions
diff --git a/public/bower_components/bootstrap-timepicker/css/timepicker.less b/public/bower_components/bootstrap-timepicker/css/timepicker.less
new file mode 100644
index 0000000..a2e813f
--- /dev/null
+++ b/public/bower_components/bootstrap-timepicker/css/timepicker.less
@@ -0,0 +1,172 @@
+/*!
+ * Timepicker Component for Twitter Bootstrap
+ *
+ * Copyright 2013 Joris de Wit
+ *
+ * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+.bootstrap-timepicker {
+ position: relative;
+
+ &.pull-right {
+ .bootstrap-timepicker-widget {
+ &.dropdown-menu {
+ left: auto;
+ right: 0;
+
+ &:before {
+ left: auto;
+ right: 12px;
+ }
+ &:after {
+ left: auto;
+ right: 13px;
+ }
+ }
+ }
+ }
+
+ .input-group-addon {
+ cursor: pointer;
+ i {
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ }
+ }
+}
+.bootstrap-timepicker-widget {
+ &.dropdown-menu {
+ padding: 4px;
+ &.open {
+ display: inline-block;
+ }
+ &:before {
+ border-bottom: 7px solid rgba(0, 0, 0, 0.2);
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ content: "";
+ display: inline-block;
+ position: absolute;
+ }
+ &:after {
+ border-bottom: 6px solid #FFFFFF;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ content: "";
+ display: inline-block;
+ position: absolute;
+ }
+ }
+ &.timepicker-orient-left {
+ &:before {
+ left: 6px;
+ }
+ &:after {
+ left: 7px;
+ }
+ }
+ &.timepicker-orient-right {
+ &:before {
+ right: 6px;
+ }
+ &:after {
+ right: 7px;
+ }
+ }
+ &.timepicker-orient-top {
+ &:before {
+ top: -7px;
+ }
+ &:after {
+ top: -6px;
+ }
+ }
+ &.timepicker-orient-bottom {
+ &:before {
+ bottom: -7px;
+ border-bottom: 0;
+ border-top: 7px solid #999;
+ }
+ &:after {
+ bottom: -6px;
+ border-bottom: 0;
+ border-top: 6px solid #ffffff;
+ }
+ }
+ a.btn, input {
+ border-radius: 4px;
+ }
+
+ table {
+ width: 100%;
+ margin: 0;
+
+ td {
+ text-align: center;
+ height: 30px;
+ margin: 0;
+ padding: 2px;
+
+ &:not(.separator) {
+ min-width: 30px;
+ }
+
+ span {
+ width: 100%;
+ }
+ a {
+ border: 1px transparent solid;
+ width: 100%;
+ display: inline-block;
+ margin: 0;
+ padding: 8px 0;
+ outline: 0;
+ color: #333;
+
+ &:hover {
+ text-decoration: none;
+ background-color: #eee;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ border-color: #ddd;
+ }
+
+ i {
+ margin-top: 2px;
+ font-size: 18px;
+ }
+ }
+ input {
+ width: 25px;
+ margin: 0;
+ text-align: center;
+ }
+ }
+ }
+}
+
+.bootstrap-timepicker-widget .modal-content {
+ padding: 4px;
+}
+
+@media (min-width: 767px) {
+ .bootstrap-timepicker-widget.modal {
+ width: 200px;
+ margin-left: -100px;
+ }
+}
+
+@media (max-width: 767px) {
+ .bootstrap-timepicker {
+ width: 100%;
+
+ .dropdown-menu {
+ width: 100%;
+ }
+ }
+}