Prvi commit
This commit is contained in:
11
EveryThing/wwwroot/vendor/libs/timepicker/_mixins.scss
vendored
Normal file
11
EveryThing/wwwroot/vendor/libs/timepicker/_mixins.scss
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
@import "../../css/_appwork/functions";
|
||||
|
||||
@mixin timepicker-theme($background, $color: null) {
|
||||
$color: if($color, $color, yiq($background));
|
||||
|
||||
li.ui-timepicker-selected,
|
||||
.ui-timepicker-list .ui-timepicker-selected:hover {
|
||||
background: $background !important;
|
||||
color: $color !important;
|
||||
}
|
||||
}
|
||||
74
EveryThing/wwwroot/vendor/libs/timepicker/timepicker.css
vendored
Normal file
74
EveryThing/wwwroot/vendor/libs/timepicker/timepicker.css
vendored
Normal file
File diff suppressed because one or more lines are too long
12
EveryThing/wwwroot/vendor/libs/timepicker/timepicker.js
vendored
Normal file
12
EveryThing/wwwroot/vendor/libs/timepicker/timepicker.js
vendored
Normal file
File diff suppressed because one or more lines are too long
105
EveryThing/wwwroot/vendor/libs/timepicker/timepicker.scss
vendored
Normal file
105
EveryThing/wwwroot/vendor/libs/timepicker/timepicker.scss
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
.ui-timepicker-wrapper {
|
||||
overflow-y: auto;
|
||||
margin: .125rem 0;
|
||||
max-height: 10rem;
|
||||
outline: none;
|
||||
background: #fff;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.ui-timepicker-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.ui-timepicker-duration {
|
||||
margin-left: .25rem;
|
||||
|
||||
[dir=rtl] & {
|
||||
margin-right: .25rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-timepicker-list li {
|
||||
margin: 0;
|
||||
padding: .25rem .75rem;
|
||||
list-style: none;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
|
||||
&.ui-timepicker-disabled,
|
||||
&.ui-timepicker-selected.ui-timepicker-disabled {
|
||||
background: #fff !important;
|
||||
cursor: default !important;
|
||||
}
|
||||
}
|
||||
|
||||
.default-style {
|
||||
@import "../../css/_appwork/include";
|
||||
|
||||
.ui-timepicker-wrapper {
|
||||
z-index: $zindex-popover;
|
||||
padding: $dropdown-padding-y 0;
|
||||
border: $dropdown-border-width solid $dropdown-border-color;
|
||||
box-shadow: $dropdown-box-shadow;
|
||||
|
||||
@include border-radius($border-radius);
|
||||
}
|
||||
|
||||
.ui-timepicker-duration {
|
||||
color: $text-muted;
|
||||
|
||||
.ui-timepicker-list:hover & {
|
||||
color: $text-muted;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-timepicker-list li {
|
||||
color: $dropdown-link-color;
|
||||
|
||||
&:hover {
|
||||
background: $dropdown-link-hover-bg;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-timepicker-list li.ui-timepicker-disabled,
|
||||
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
|
||||
color: $dropdown-link-disabled-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
.material-style {
|
||||
@import "../../css/_appwork/include-material";
|
||||
|
||||
.ui-timepicker-wrapper {
|
||||
z-index: $zindex-popover;
|
||||
padding: $dropdown-padding-y 0;
|
||||
border: $dropdown-border-width solid $dropdown-border-color;
|
||||
box-shadow: $dropdown-box-shadow;
|
||||
|
||||
@include border-radius($border-radius);
|
||||
}
|
||||
|
||||
.ui-timepicker-duration {
|
||||
color: $text-muted;
|
||||
|
||||
.ui-timepicker-list:hover & {
|
||||
color: $text-muted;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-timepicker-list li {
|
||||
color: $dropdown-link-color;
|
||||
|
||||
&:hover {
|
||||
background: $dropdown-link-hover-bg;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-timepicker-list li.ui-timepicker-disabled,
|
||||
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
|
||||
color: $dropdown-link-disabled-color !important;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user