summaryrefslogtreecommitdiff
path: root/templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss
diff options
context:
space:
mode:
authorKapil Viren Ahuja <k.v.ahuja@gmail.com>2017-03-23 15:17:03 +0530
committerKapil Viren Ahuja <k.v.ahuja@gmail.com>2017-03-23 15:17:03 +0530
commit01ef61d8fc3e18fe159e98d36414ef0ba92ff2a7 (patch)
tree3d14b60e737ecd6c3c516798cddf5ca52db24348 /templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss
parentc9198259402c1d01ad8d943832c20069635963da (diff)
downloadminionlivesmatter-01ef61d8fc3e18fe159e98d36414ef0ba92ff2a7.tar.gz
minionlivesmatter-01ef61d8fc3e18fe159e98d36414ef0ba92ff2a7.zip
adding the new theme
Diffstat (limited to 'templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss')
-rw-r--r--templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss220
1 files changed, 0 insertions, 220 deletions
diff --git a/templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss b/templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss
deleted file mode 100644
index 75178e6..0000000
--- a/templates/assets/sass/material-kit/plugins/_plugin-datepicker.scss
+++ /dev/null
@@ -1,220 +0,0 @@
-/*!
- * Datepicker for Bootstrap
- *
- * Copyright 2012 Stefan Petre
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- */
-
-/*
- *
- * SCSS by Creative Tim
- * http://www.creative-tim.com
- *
- */
-
-.datepicker {
- top: 0;
- left: 0;
- padding: 4px;
- margin-top: 1px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-
- > div {
- display: none;
- }
-
- table {
- width: 100%;
- margin: 0;
- }
-
- td,
- th {
- text-align: center;
- width: 20px;
- height: 20px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- }
-
- td{
- text-align: center;
- p{
- font-size: $font-size-h6;
- font-weight: $font-weight-default;
- border-radius: 50%;
- height: 29px;
- line-height: 29px;
- margin: 3px 0 8px;
- width: 29px;
- }
- :hover{
- cursor: pointer;
- }
- }
-
- th{
- font-weight: $font-weight-bold;
-
- &.switch-datepicker{
- font-size: $font-size-h6;
- }
- }
-
- .prev p,
- .next p{
- font-size: $font-size-h3;
- }
-
- p:hover{
- background: #eeeeee;
- }
-
- .day.disabled {
- color: #eeeeee;
- }
-
- td.old,
- td.new {
- color: #999999;
- border-top: 0;
- }
-
- td.active p,
- td.active:hover p{
- @include shadow-4dp();
- color: #ffffff;
- background-color: $brand-primary;
- }
-
- td.primary p,
- td.primary:hover p{
- background-color: $brand-primary;
- }
- td.info p,
- td.info:hover p{
- background-color: $brand-info;
- }
- td.success p,
- td.success:hover p{
- background-color: $brand-success;
- }
- td.warning p,
- td.warning:hover p{
- background-color: $brand-warning;
- }
- td.danger p,
- td.danger:hover p{
- background-color: $brand-danger;
- }
-
- span {
- display: block;
- width: 55px;
- height: 54px;
- line-height: 54px;
- float: left;
- margin: 2px;
- cursor: pointer;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-
- &.old {
- color: #999999;
- }
- }
- span{
- &.active{
- &,
- &:focus,
- &:hover,
- &:active{
- background-color: $brand-primary;
- @include shadow-4dp();
- }
- }
-
- &.active{
- color: $white-color;
- }
- }
-
- span:hover {
- background-color: #EEEEEE;
- }
- span.primary,
- span.primary:hover{
- background-color: $brand-primary;
- }
- span.info,
- span.info:hover{
- background-color: $brand-info;
- }
- span.success,
- span.success:hover{
- background-color: $brand-success;
- }
- span.warning,
- span.warning:hover{
- background-color: $brand-warning;
- }
- span.danger,
- span.danger:hover{
- background-color: $brand-danger;
- }
- th.switch-datepicker {
- width: 145px;
- }
- th.next,
- th.prev {
- font-size: 21px;
- }
- thead tr:first-child th {
- cursor: pointer;
- }
- thead tr:first-child th:hover {
- background: #eeeeee;
- }
-
- &.dropdown-menu{
- border-radius: $border-radius-base;
- @include shadow-big();
- @include transition($fast-transition-time, $transition-linear);
- margin-top: -20px;
- opacity: 0;
- visibility: hidden;
- }
-
- &.dropdown-menu.open{
- opacity: 1;
- visibility: visible;
- margin-top: 1px;
- }
-
- .table-condensed > tbody > tr > td{
- padding: 2px;
- }
-
- .table-condensed > thead > tr > th{
- padding: 0;
- }
-}
-
-.input-append.date .add-on i,
-.input-prepend.date .add-on i {
- display: block;
- cursor: pointer;
- width: 16px;
- height: 16px;
-}
-
-.datepicker-months thead{
- padding: 0 0 3px;
- display: block;
-}