-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1d1195
commit aec4ef7
Showing
7 changed files
with
188 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,99 @@ | ||
/** | ||
* All of the CSS for your admin-specific functionality should be | ||
* included in this file. | ||
*/ | ||
.wp-admin.post-type-post .ui-datepicker { | ||
background-color: white; | ||
} | ||
|
||
.wp-admin.post-type-post .ui-datepicker .ui-datepicker-header a { | ||
margin-right: 15px; | ||
margin-bottom: 15px; | ||
} | ||
.wp-admin.post-type-post .ui-datepicker .ui-datepicker-header .ui-datepicker-title { | ||
margin: 15px 0; | ||
text-align: center; | ||
font-weight: 700; | ||
} | ||
|
||
.wp-admin.post-type-post .event-date { | ||
width: 98px; | ||
} | ||
|
||
.wp-admin.post-type-post .event-hour { | ||
width: 98px; | ||
} | ||
|
||
|
||
.ui-timepicker-container { | ||
position: absolute; | ||
overflow: hidden; | ||
box-sizing: border-box; | ||
} | ||
|
||
.ui-timepicker { | ||
box-sizing: content-box; | ||
display: block; | ||
height: 205px; | ||
list-style: none outside none; | ||
margin: 0; | ||
padding: 0 1px; | ||
text-align: center; | ||
} | ||
|
||
.ui-timepicker-viewport { | ||
box-sizing: content-box; | ||
display: block; | ||
height: 205px; | ||
margin: 0; | ||
padding: 0; | ||
overflow: auto; | ||
overflow-x: hidden; /* IE */ | ||
} | ||
|
||
.ui-timepicker-standard { | ||
/* overwrites .ui-widget */ | ||
font-family: Verdana,Arial,sans-serif; | ||
font-size: 1.1em; | ||
/* overwrites .ui-widget-content */ | ||
background-color: #FFF; | ||
border: 1px solid #AAA; | ||
color: #222; | ||
/* overwrites .ui-menu */ | ||
margin: 0; | ||
padding: 2px; | ||
} | ||
.ui-timepicker-standard a { | ||
border: 1px solid transparent; | ||
color: #222; | ||
display: block; | ||
padding: 0.2em 0.4em; | ||
text-decoration: none; | ||
} | ||
.ui-timepicker-standard .ui-state-hover { | ||
/* overwrites .ui-state-hover */ | ||
background-color: #DADADA; | ||
border: 1px solid #999; | ||
font-weight: normal; | ||
color: #212121; | ||
} | ||
.ui-timepicker-standard .ui-menu-item { | ||
/* overwrites .ui-menu and .ui-menu-item */ | ||
/*clear: left; | ||
float: left;*/ | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.ui-timepicker-corners, | ||
.ui-timepicker-corners .ui-corner-all { | ||
-moz-border-radius: 4px; | ||
-webkit-border-radius: 4px; | ||
border-radius: 4px; | ||
} | ||
|
||
.ui-timepicker-hidden { | ||
/* overwrites .ui-helper-hidden */ | ||
display: none; | ||
} | ||
|
||
.ui-timepicker-no-scrollbar .ui-timepicker { | ||
border: none; | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.